su - oracle
cd $ORACLE_HOME/lib
ln -s /usr/lib/libobk64.a libobk.a
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.
Wednesday, May 21, 2014
Wednesday, May 14, 2014
How to confirm that the latest PSU has been applied to your ORACLE_HOME
Use opatch lsinventory to extract the information. In my case:
hostname:PRODDB01>opatch lsinventory | egrep -i 'PSU|DATABASE PATCH SET UPDATE'
hostname:PRODDB01>opatch lsinventory | egrep -i 'PSU|DATABASE PATCH SET UPDATE'
Patch description: "Database Patch Set Update : 11.2.0.4.2 (18031668)" Sub-patch 17478514; "Database Patch Set Update : 11.2.0.4.1 (17478514)" Patch description: "Database Patch Set Update : 11.2.0.3.7 (16619892)" Sub-patch 16056266; "Database Patch Set Update : 11.2.0.3.6 (16056266)" Sub-patch 14727310; "Database Patch Set Update : 11.2.0.3.5 (14727310)" Sub-patch 14275605; "Database Patch Set Update : 11.2.0.3.4 (14275605)" Sub-patch 13923374; "Database Patch Set Update : 11.2.0.3.3 (13923374)" Sub-patch 13696216; "Database Patch Set Update : 11.2.0.3.2 (13696216)" Sub-patch 13343438; "Database Patch Set Update : 11.2.0.3.1 (13343438)"
Thursday, May 8, 2014
What is the difference between the views nls_database_parameters and nls_instance_parameters?
The NLS_DATABASE_PARAMETERS view will display what the NLS settings were when the database was created. These are fixed at the database level and cannot be changed.
The NLS_INSTANCE_PARAMETERS view reflects parameters set for your instance in the init.ora file or the server parameter file (spfile).
Source: James Koopman in Databasejournal.com
This matches my settings for a random database:
The NLS_INSTANCE_PARAMETERS view reflects parameters set for your instance in the init.ora file or the server parameter file (spfile).
Source: James Koopman in Databasejournal.com
This matches my settings for a random database:
SQL> show parameter nls_ NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ nls_comp string BINARY nls_language string AMERICAN nls_length_semantics string BYTE nls_nchar_conv_excp string FALSE nls_territory string AMERICA SQL> SELECT * FROM NLS_INSTANCE_PARAMETERS WHERE value IS NOT NULL; PARAMETER VALUE ------------------------------ ---------------------------------------- NLS_LANGUAGE AMERICAN NLS_TERRITORY AMERICA NLS_COMP BINARY NLS_LENGTH_SEMANTICS BYTE NLS_NCHAR_CONV_EXCP FALSE 5 rows selected.
What are literals?
The terms "literal" and "constant" are synonymous and refer to a fixed data value.
There are:
•Text Literals
Examples: 'JACK', 'BLUE ISLAND', '101'.
•Numeric Literals
Examples: 5001, +256
•Datetime Literals
Example: DATE '1998-12-25'.
Note that the ANSI (American National Standards Institute) date literal contains no time portion.
•Interval Literals
Examples:
INTERVAL '123-2' YEAR(3) TO MONTH
INTERVAL '4 5:12:10.222' DAY TO SECOND(3)
Source: Oracle Documentation
There are:
•Text Literals
Examples: 'JACK', 'BLUE ISLAND', '101'.
•Numeric Literals
Examples: 5001, +256
•Datetime Literals
Example: DATE '1998-12-25'.
Note that the ANSI (American National Standards Institute) date literal contains no time portion.
•Interval Literals
Examples:
INTERVAL '123-2' YEAR(3) TO MONTH
INTERVAL '4 5:12:10.222' DAY TO SECOND(3)
Source: Oracle Documentation
Wednesday, May 7, 2014
Wednesday, April 30, 2014
Using the procedure SEARCHFILES in DBMS_BACKUP_RESTORE
I found the following great article about how to list files in directory from within sqlplus here, written by David Marco. As pointed out by several oracle bloggers, there is very little documentation around for this package.
It just so happened that a user was in need of such functionality, and his code could be used straight-off.
However, my customer had already ammended a very useful functionality, by adding support for sending the directory name in as a parameter.
The code as it looks now:
The call will thus be:
It just so happened that a user was in need of such functionality, and his code could be used straight-off.
However, my customer had already ammended a very useful functionality, by adding support for sending the directory name in as a parameter.
The code as it looks now:
CREATE OR REPLACE FUNCTION LIST_FILES( p_directory IN VARCHAR2, p_file_pattern IN VARCHAR2 default null) RETURN file_array pipelined AS l_path VARCHAR2(1024); l_dummy VARCHAR2(1024); BEGIN SELECT directory_path INTO l_path FROM all_directories WHERE directory_name = p_directory; sys.DBMS_BACKUP_RESTORE.SEARCHFILES(l_path, l_dummy); FOR file_list IN (SELECT FNAME_KRBMSFT AS file_name FROM X$KRBMSFT WHERE FNAME_KRBMSFT LIKE '%'|| NVL(p_file_pattern, FNAME_KRBMSFT)||'%' ) LOOP PIPE ROW(file_list.file_name); END LOOP; END; /
The call will thus be:
SELECT * FROM TABLE(LIST_FILES('MY_DIR','%*.dmp%'));
Wednesday, March 26, 2014
What are nodeapps in an Oracle RAC environment?
Nodeapps are a standard set of Oracle application services that are automatically launched for RAC (Real Application Cluster). The following service are lunched by nodeapps:
•Virtual IP (VIP)
•Oracle Net Listener
•Global Services Daemon (GSD)
•Oracle Notification Service (ONS)
Nodeapp services that run on each node can be relocated to other nodes through the virtual IP.
•Virtual IP (VIP)
•Oracle Net Listener
•Global Services Daemon (GSD)
•Oracle Notification Service (ONS)
Nodeapp services that run on each node can be relocated to other nodes through the virtual IP.
Subscribe to:
Posts (Atom)