ln -s /path/physical_file symlink
For example
cd $ORACLE_HOME/lib ln -s /u01/oracle/product/oracle_client32/lib/libclntsh.so.11.1 libclntsh.so ls -altr libclntsh.so libclntsh.so -> /u01/oracle/product/oracle_client32/lib/libclntsh.so.11.1
Minimalistic Oracle contains a collection of practical examples from my encounters with Oracle technologies. When relevant, I also write about other technologies, like Linux or PostgreSQL. Many of the posts starts with "how to" since they derive directly from my own personal experience. My goal is to provide simple examples, so that they can be easily adapted to other situations.
cd $ORACLE_HOME/lib ln -s /u01/oracle/product/oracle_client32/lib/libclntsh.so.11.1 libclntsh.so ls -altr libclntsh.so libclntsh.so -> /u01/oracle/product/oracle_client32/lib/libclntsh.so.11.1
DOP = PARALLEL_THREADS_PER_CPU x CPU_COUNT
DOP = PARALLEL_THREADS_PER_CPU x CPU_COUNT x INSTANCE_COUNT
SELECT DEGREE FROM DBA_TABLES WHERE TABLE_NAME = 'EMP' AND OWNER = 'SCOTT'; DEGREE ------------------ 1
mkdir install cd install cpio -idcmv < 9205_aix5l64_release.cpio
tar cvf myfile.tar *or put it in a different directory:
tar cvf $HOME/myfile.tar *To extract myfile.tar to the current directory
tar xvf myfile.tarTo a specific directory:
tar xvf myfile.tar -C mydir
RMAN-03009: failure of backup command on c1 channel at 07/21/2015 12:13:15 ORA-17627: ORA-12577: Message 12577 not found; product=RDBMS; facility=ORA RMAN-12019: continuing other job steps, job failed will not be re-run
IBM AIX RISC System/6000 Error: 28: No space left on device
RMAN-00571: =========================================================== RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== RMAN-00571: =========================================================== RMAN-03002: failure of Duplicate Db command at 07/21/2015 10:06:15 RMAN-05501: aborting duplication of target database RMAN-03015: error occurred in stored script Memory Script RMAN-03009: failure of backup command on c1 channel at 07/21/2015 10:06:15 ORA-17629: Cannot connect to the remote database server ORA-17627: ORA-12154: TNS:could not resolve the connect identifier specified ORA-17629: Cannot connect to the remote database server
BEGIN DBMS_AUTO_TASK_ADMIN.ENABLE( client_name => 'sql tuning advisor', operation => NULL, window_name => NULL); END; / To disable automatic SQL tuning, use the DISABLE procedure in the DBMS_AUTO_TASK_ADMIN package: BEGIN DBMS_AUTO_TASK_ADMIN.DISABLE( client_name => 'sql tuning advisor', operation => NULL, window_name => NULL); END; /