SQL> sp_dropserver 'oldservername';
SQL> sp_addserver 'newservername';
don’t run in same batch.
the two statements must be executed separately.
via sp_addserver Transact-SQL.
SQL> sp_dropserver 'oldservername';
SQL> sp_addserver 'newservername';
don’t run in same batch.
the two statements must be executed separately.
via sp_addserver Transact-SQL.
Type the following command for just this listing,
$ ls --color=none
Or remove the alias with the unalias command:
$ unalias ls
via How to turn on or off colors in bash.
Moving a database to a new oracle home, owned by a different user and running a newer version.
NOTE : This is how is worked in my environment. It might not work the same in your environment. This is meant as a guide only.
Continue reading Moving an Oracle database to a newer Oracle home
SQL> select value from v$nls_parameters where parameter='NLS_CHARACTERSET';
SQL> shutdown immediate;
SQL> startup mount;
SQL> alter system enable restricted session;
SQL> show parameter job_queue_processes;
SQL> alter system set job_queue_processes=0;
SQL> alter database open;
SQL> alter database character set WE8MSWIN1252;
SQL> shutdown immediate; SQL> startup;
SQL> show parameter job_queue_processes;
SQL> select value from v$nls_parameters where parameter='NLS_CHARACTERSET';
SQL> alter system set job_queue_processes=10;
SQL> shutdown immediate; SQL> startup;
Some files that you get from Oracle download come in cpio format.
Here’s what to do with them.
First unzip the files:
gunzip lnx_920_disk1.cpio.gz gunzip lnx_920_disk2.cpio.gz gunzip lnx_920_disk3.cpio.gz
Next unpack the contents of the files:
cpio -idmv < lnx_920_disk1.cpio cpio -idmv < lnx_920_disk2.cpio cpio -idmv < lnx_920_disk3.cpio
Try running it as root.
If this works then check the permisions on /var/run/picld_door
The permisions should be set to 444
ie:
ls -l /var/run/picld_door Dr--r--r-- 1 root root 0 Aug 27 07:40 /var/run/picld_door
This is the fix:
shell> chmod 444 /var/run/picld_door