czwartek, 8 maja 2014

Assigning a sequence value to a variable in procedure for one or more tables

I discovered today that in Oracle 10g (and I presume in earlier versions also) it is not possible to directly assign a sequence value in to a PLSQL variable, hence neither of the 2 following examples will compile in 10g:

1: Try
PROCEDURE set_up_test_data(no_of_days NUMBER)
IS
  -- Doesn't compile
  nice_unique_number NUMBER := mysequence.nextval;
BEGIN
  -- do stuff here...
END set_up_test_data;
2: Try
PROCEDURE set_up_test_data(no_of_days NUMBER)
IS
  nice_unique_number NUMBER;
BEGIN
  -- Doesn't compile.
  
nice_unique_number := mysequence.nextval;
  -- do stuff here...
END set_up_test_data;

A bit of googling suggests that a common workaround to this is to be do a SELECT INTO using the dual table, as below: 

PROCEDURE set_up_test_data(no_of_days NUMBER)
IS
  nice_unique_number NUMBER;
BEGIN
  --Works nicely
  
SELECT mysequence.nextval INTO nice_unique_number FROM dual;
  -- do stuff here...
  e.g. INSERT INTO TABLE_1 (COLUMN1, COLUMN2, COLUMN3) VALUES (nice_unique_number, value.table_1.column1, value_2.table_1.column2);
END set_up_test_data;
 

Note: This no appears to be an issue as of Oracle 11g (search for Straight Sequences).

source: http://www.eddgrant.com/blog/EdD/entry/assigning_a_sequence_value_to

wtorek, 14 stycznia 2014

How to migrate Wordpress from server 1 to 2 and change URL

First create WP on server 1
root/cat1/wp/

Configurate there whole website.

Then I need to switch to another location

server 2 where there was a domain.com

So what to do?

Go to server 1

  • make perma links as default
  • First make copy of all files from server 1 
  • Secend make a copy of DB via phpadmin and check drop table option 


Go to server 2

  • create folder where you want install wp 
  • make redarection from domain.com to this folder
  • copy intallation files of wp 
  • go to install wp
  • remove wp-content folder (server 2)
  • copy wp-content from the server 1
  • remove whole DB (server 2)
  • import DB from server 1 - 1:1 do not change anything
  • log in to admin panel - you will need to use server path if you will be redirected to old admin panel (server 1) go to DB (server 2) and paste path from server 2 to siteurl and home - now you should be able to log into 
eg http://server_name/catalog1/wp_installation_folder
  • change website url to domain.com
  • install http://wordpress.org/extend/plugins/velvet-blues-update-urls/ and swap paths. From server 1 to server 2
  • change siteurl and home url to domain.com 
  • change permalink settings