Total Pageviews

Oracle Database Control file

Control files has the status of the physical structure of a database.  A control file should be backup whenever a change is made to the database.The controlfile contains the following sections:
  • ARCHIVED LOG (reusable)
  • BACKUP SET (reusable)
  • BACKUP DATAFILE (reusable)
  • BACKUP CORRUPTION (reusable)
  • BACKUP PIECE (reusable)
  • BACKUP REDOLOG (reusable)
  • BACKUP SET (reusable)
  • BACKUP SPFILE
  • CKPT PROGRESS
  • COPY CORRUPTION (reusable)
  • DATABASE
  • DATAFILE
  • DATAFILE COPY (reusable)
  • DATAFILE HISTORY
  • DATABASE INCARNATION
  • DELETED OBJECT (reusable)
  • FILENAME
  • FLASHBACK LOG
  • INSTANCE SPACE RESERVATION
  • LOG HISTORY (reusable)
  • MTTR
  • OFFLINE RANGE (reusable)
  • RECOVERY DESTINATION
  • REMOVABLE RECOVERY FILES
  • RMAN STATUS
  • RMAN CONFIGURATION
  • REDO THREAD
  • PROXY COPY 
  • TABLESPACE
  • TEMPORARY FILENAME
  • THREAD INSTANCE NAME MAPPING
To view control file status
SQL> show parameter control_files

To backup control file before any operation:
SQL> alter database backup controlfile to 'c:\ora\control01.ctl'

Multiplexing of control files:
Can be done by giving the following line in pfile: control_files='E:\app\oradata\revolt\control01.ctl','E:\app\oradata\revolt\control02.ctl'

Recovery of database without controlfile and redolog
alter database backup controlfile to trace resetlogs 



Importance of Parameter File or PFILE:

    During an oracle instance startup, the characteristic features of the instance are configured by the parameters written in a PFILE or Initialization parameter file or Static Parameter file. The PFILE is commonly known as init.ora file among the DBA community. The naming convention for PFILE is initSID.ora and placed in the $ORACLE_HOME/dbs folder in default. PFILE is a txt file and can be edited using an operating system editor like notepad. PFILE is opened only during instance startup. There is an other similar file in oracle server named as SPFILE or Persistent parameter file. SPFILE is a binary file which cannot be opened manually. SPFILE concept is available only from oracle 9i and above versions. For detailed information regarding the parameter files please visit initSID.ora

Example of a PFILE:

      # Initialization Parameter File : inituser.ora
      db_name = user
      instance_name= user
      control_files = (home/user/ORADATA/u01/controluser.ctl)
      db_block_size = 4096
      db_cache_size=4M
      shared_pool_size = 50000000
      java_pool_size =50000000
      max_dump_file_size = 10240
      background_dump_dest = /home/user/ADMIN/BDUMP
      user_dump_dest = /home/user/ADMIN/UDUMP
      core_dump_dest = /home/user/ADMIN/CDUMP
      undo_management = AUTO
      undo_tablespace = UNDOTBS
  

ORACLE ARCHITECTURE

Oracle database server architecture
Oracle Utilities
RMAN
SQL Loader
Export
Import

Linux Commands

       Linux commands can be  used configure and interact with Linux OS. The linux commands can be used at the shell prompt, or command prompt (Terminal). If you are using  linux in a GUI, try with the shell programming icon. If you do not have GUI then  you should be working with the shell prompt, and if you are signing through remote then you will be at the prompt. The two types of commands are shell commands and linux commands.

Linux Commands:

The Linux commands are not  shell commands. Each linux command is a individual executable program, thats written in  C-programming language. These executable programmes are stored in various physical directories such as /bin.The $PATH variable defines  the location of the directories. These linux commands differ from the linux distrubutions, and remains similar in any shell they are being used.

 Shell Commands:

The shell program consists of the shell commands. There are different kind of shells likely  bash shell, C shell, bourne shell etc. Each shells have variance in them. The commands structure vary between shells, but each shell is same among different linux platforms.

 The Command Prompt:

The prompts look is depend on the shell you use, and the settings you have for that shell.
The bash shell have the prompt set up like the following

[adm@cric home]#

Here the user logged is adm, and the computer name is  cric where the folder is home. The password file(pwd) is to be used to get full path.


Your prompt is bound to look different, so for the purpose of this section I will just use the > to represent the prompt.
>

Linux Commands:

Some linux commands are very simple and need nothing more than the command itself.
For example the command ls (list) will simply list the names of the directories and files in the current directory...
>ls
files/
images/
index.txt
>
In this instance ls shows there are two directories, called files and images, and a text file called index.
However you can often add options or parameters, which are usually added to the command after a '-'.
Adding the option -l will give you a long listing which includes the permissions, ownership, size, date/time, and name of the files and directories...
>ls -l
drwx------ 2 bob bob 4096 Aug 22 10:31 files/
drwx------ 3 bob bob 4096 Mar 19 11:17 images/
-rwx------ 1 bob bob 284 Mar 18 10:23 index.txt
>
Another example would be adding -a (ls -a) to list ALL the files in the current directory, including hidden files.
>ls -a
.hiddenfile
files/
images/
index.txt
>
This shows there is a hidden file (hidden files have a '.' before the filename) called '.hiddenfile', as well as the two directories and index file.
You can use more that one option at a time...
>ls -la would produce a long listing format of ALL (including hidden) directories and files in the current working directory.
There are many options for some linux commands, and the best place to find out about then all is the 'man' pages. These man pages show you how to format the command, and what options and parameters there are to use with each command.

 Few Basic commands

#free  -shows free RAM space
#date -current date
#time -shows system time
#cp
-to copy a file or directory#mkdir dir1   -to create directory
#rmdir dir1    -to remove a directory


Locate command is works only on linux kernel. It displays the absolute path for the search term.locate reads from the database created by the updatedb command. Locate does not check the existance of the file. Here is the usage for the locate command.

$ locate -h
Usage: locate [OPTION]... [PATTERN]...
Search for entries in a mlocate database.

  -b, --basename         match only the base name of path names
  -c, --count            only print number of found entries
  -d, --database DBPATH  use DBPATH instead of default database (which is
                         /var/lib/mlocate/mlocate.db)
  -e, --existing         only print entries for currently existing files
  -L, --follow           follow trailing symbolic links when checking file
                         existence (default)
  -h, --help             print this help
  -i, --ignore-case      ignore case distinctions when matching patterns
  -l, --limit, -n LIMIT  limit output (or counting) to LIMIT entries
  -m, --mmap             ignored, for backward compatibility
  -P, --nofollow, -H     don't follow trailing symbolic links when checking file
                         existence
  -0, --null             separate entries with NUL on output
  -S, --statistics       don't search for entries, print statistics about each
                         used database
  -q, --quiet            report no error messages about reading databases
  -r, --regexp REGEXP    search for basic regexp REGEXP instead of patterns
      --regex            patterns are extended regexps
  -s, --stdio            ignored, for backward compatibility
  -V, --version          print version information
  -w, --wholename        match whole path name (default)

updatedb - can be run only as root. This updates or creates a database for locate utility.

# updatedb -h
Usage: updatedb [OPTION]...
Update a mlocate database.

  -f, --add-prunefs FS           omit also FS
  -e, --add-prunepaths PATHS     omit also PATHS
  -U, --database-root PATH       the subtree to store in database (default "/")
  -h, --help                     print this help
  -o, --output FILE              database to update (default
                                 `/var/lib/mlocate/mlocate.db')
      --prunefs FS               filesystems to omit from database
      --prunepaths PATHS         paths to omit from database
  -l, --require-visibility FLAG  check visibility before reporting files
                                 (default "true")
  -v, --verbose                  print paths of files as they are found
  -V, --version                  print version information

The lists of paths and filesystems to omit default to values read from
`/etc/updatedb.conf'.

The Oracle 11g Database Administrator

           The Oracle Database 11g is designed for administrators to provide an effective curriculum syllabus. You people learn and get knowledge to configure, install and maintenance of the database. When you learn the essentials of administrating the oracle database, you can develop knowledge in any of the following key focus areas of oracle database. They are

  1. Performance Management
  2. Manageability
  3. Linux Administration
  4. Security management
  5. High Availability
  6. Data Warehousing
  7. Grid maintenance
  8. Storage Server maintenance
The Oracle University curriculum is framed in the way to meet the DBA's challenges faced today.

Oracle indexes tuning

Indexes in Oracle database.

The indexes are

  • B-Tree indexes or balanced tree indexes;
  • bitmap indexes
  • partitioned indexes
  • domain indexes
  • function-based indexes

The B-Tree Indexes
  
          B-Tree Indexes are the most convenient thing when querying for a small amount of data from a large table. Indexes help out the most in reducing the i/o in this case.The bigger the table and lower the number of rows that you want to get them, then the more effective way is the index.
         
          Even if you see a book it has an index, this shows the importance of index. Even a book needs a index then think of the case of a terabyte oracle database. The reasons are a lot. When searching an article it would take huge time to find the particular area of interest but without using the index then it would to read the whole book. It's similar when you're querying against a database. so by working on the index, the database would have to read more data.
         
          The indexes improves read and update operations using sub-queries. However when updates are performed often in a table with index then every time the index has to get updated regarding the change in the oracle database. Sincethe amount of i/o is drastically increased causing burden to the DB server. So having indexes for read only table is recommended by oracle.The oracle dba should ensure the usage of the index. Otherwise its going to be a performance degrading for the oracle database.

Oracle Interview FAQ's.

  1. Explain about Oracle Catalog and  Archive log? 
           The Oracle  catalog contains tables and views which allows the oracle user to obtain the information about  database, such as what other tables and views are available, data dictionary views their attributes, constraints, etc. Oracle has hundreds of  system catalog relations, only some of which are available to the limited user.
  

     2. Give some of the  views in RMAN catalog which contains the catalog information?

           RC_DATABASE_INCARNATION
           RC_BACKUP-DATAFILE_SUMMARY
           RC_BACKUP_CORRUPTION 
           RC_BACKUP_COPY_DETAILS


3. How to find alert log file location?
   
SQL> show parameter background

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
background_core_dump                 string      partial
background_dump_dest                 string      c:\app\user\diag\rdbms\rev\rev\trace








Oracle RMAN

RMAN is a recovery management utility of oracle database. RMAN is recommended by oracle for backup and recovery. It makes the job easier for a DBA and gives flexibility to work on the database. RMAN optimizes the performance and space occupied while backup with file multiplexing and backup set compression.




Syntax for RMAN Command-line
RMAN 
[ TARGET connectStringSpec 
| { CATALOG connectStringSpec } 
| LOG ['] filename ['] [ APPEND ]
.
. 
]..
1.First create a tablespace for RMAN
 
CREATE TABLESPACE "RMAN" DATAFILE 'E:\app\solomon\oradata\revolt\rman.dbf' SIZE 100M REUSE AUTOEXTEND ON NEXT 2M MAXSIZE UNLIMITED EXTENT MANAGEMENT LOCALSEGMENT SPACE MANAGEMENT AUTO;
 
2.Create a user for rman CREATE USER rman IDENTIFIED BY rmanDEFAULT TABLESPACE rman QUOTA UNLIMITED ON rman;3. Grant privileges for the user GRANT connect, resource, recovery_catalog_owner TO rman;
4. Assign catalog
C:\>rman catalog=rman/rman

RMAN> create catalog tablespace "RMAN";
RMAN> register database;

Oracle Version Releases

Oracle Database released till now

  • Oracle 5 Database
  • Oracle 6 Database
  • Oracle 7: 7.0.16—7.3.4 Database
  • Oracle 8 Database: 8.0.3—8.0.6
  • Oracle 8i Database Release 1: 8.1.5.0—8.1.5.1
  • Oracle 8i Database Release 2: 8.1.6.0—8.1.6.3Oracle8i Database Release 3: 8.1.7.0—8.1.7.4
  • Oracle 9i Database Release 1: 9.0.1.0—9.0.1.5 (patchset as of December 2003[update])
  • Oracle 9i Database Release 2: 9.2.0.1—9.2.0.8 (patchset as of April 2007[update])
  • Oracle Database 10g Release 1: 10.1.0.2—10.1.0.5 (patchset as of February 2006[update])
  • Oracle Database 10g Release 2: 10.2.0.1—10.2.0.4 (patchset as of April 2008[update])
  • Oracle Database 11g Release 1: 11.1.0.6—11.1.0.7 (patchset as of September 2008[update])
  • Oracle Database 11g Release 2: 11.2.0.1 (released 2009-09-01)
  • Oracle Database 11g Release 2: 11.2.0.3 (by 2011)
The Latest release of Oracle is 12c the cloud control for DB console(Enterprise Manager)

Oracle 11g Overview

oracle 11g
   Oracle 11g Database is highly flexible database. The 11g is upgraded from the previous versions, by configuring the hardwares and softwares related to provide good efficiency, and employ high security in the system. The automation of the backup and recovery process, provides transparent failover capability.The auditing and performance tuning  circulates your enterprise databases with Oracle Net.

  Here are some of the features of Oracle 11g discussed here.
  • To Plan and deploy the permanent, temporary, and huge tablespaces.
  • Optimizing the disk allocation, Memory usage, and SQL queries.
  • Able to develop a powerful database management system.
  • Oracle Flashback prevents against human errors.
  • Oracle Automatic Undo Management.
  • Oracle Automatic Workload Repository and SQL Tuning are used to Diagnose and tune system performance.
  • Implementing robust security by using authorization, authentication, fine-grained auditing, and  access control
  • Maintaining high availability by using Oracle(RAC) Real Application Clusters and Oracle Active Data Guard.
  • Responding more efficiently to failure circumstances by using the Oracle Automatic Diagnostic Repository and the Oracle Repair Advisor.
  • Back up and restoring tables, tablespaces, and databases with Oracle (RMAN)Recovery Manager  and Oracle Data Pump Utilities Export and Import
  • Working with network databases, data warehouses, and VLDBs

System issues towards Oracle Database

System Issues that are responsible for a crash or downfall of a Oracle DB. Here we are going to discuss how to overcome the system issues and make the database up and running at every time.

  • Periodic backups should be taken based on the working environment.
  • Check the alert logs, startup logs , shutdown logs are proper.
  • Ensure the disk spaces for the backups and alert logs are enough.
  • Go with operation tuning and limit OS level issues regarding Oracle database.
  • Do updates for system software for system issues as it may happen often.

What should one inherit to become an Oracle DBA?

" Are you sure of working about four hours continuously?" this is the case happens if a database crashes. The time for recovery makes tremendous. The Oracle DBA's are concerned only when there is emergency, so being a responsible person is proud and also a curse. You will surely feel the need for you as a Oracle DBA in the company. Its one of the high profile jobs in the software industry. You may get phone calls at mid night because some databases require to be 24/7.  All the need is time constraint to work for longer hours. Its really a challenging role. So enjoy being a Oracle DBA and serve your clients.

Oracle 9i Architecture

oracle dba

Oracle 9i - My Experience

Oracle 9i Database is the most powerful edition of oracle corporation. It has been used for OLTP environment as well as in Warehousing. Data security is very high when compared to other Databases. Now the war has been over with MySQL, because owned Sun micro systems. The i in oracle 9i denotes "internet". When oracle combines with linux it gives more reliability and security to the database system. RMAN is a tool in oracle which is very much useful for data backup and recovery.The DDL event security secures the database from structural or Data Definition Language changes made.

Does SEO make a site/blog popular?

SEO is a vast field thats growing nowadays. The SEO is mainly focussed to promote the sites in offline and online. This is a kind of Technical marketting . Inorder to do you have to perceive the industry knowledge in which industry you are going to promote your site. SEO is based on lots of constrains like backlinks, referals and daily average visits. All these things are done to get indexed in google search list. But Google often changes its criterias and no one can expect their rank or predict googles algorithm. But by being loyal and making genuine post its possible to achieve unique visitors to your site or blog.

Oracle Jobs In Chennai

There are lots of openings rushing up for IT professionals as well this year is concerned. So I would like to share   my views with you guys to get a DBA job. The areas where you have to concentrate more  are RMAN, Oracle utilities like import/export, backup and restore. The DBA profile is so interesting and challenging one for a person with desire towards DB. There are lots of databases like DB2, sybase, MySQL. Everything needs a DBA to manage it.

Oracle DBA cert exam details

Oracle  9i OCA  DBA certification is for  IT professionals who have a foundation of knowledge that will allow them to act as a  team member working with database administrators and application developers. The Oracle 9i OCA was introduced in late 2001 and will likely stay very popular until the arrival of the Oracle 10g certification. There is no specific prerequisite for this certification; however, having some hands on experience with  SQL and  Oracle or other competitor database would definitely help.

This certification is well suited to IT personnel, with titles such as database administrator, database analyst, and database developer. The Oracle 9i OCA designation is achieved by passing two exams. If you choose the newer version of one of the exams, you must take itonline.

Although Oracle certification paths eventually retire, you may continue to use a retired designation as it denotes the version of Oracle it is associated with. Also, Oracle normally provides a one exam upgrade to a newer version of a particular certification.
Helpful: Compare Oracle9i DBA OCA with other certifications
Search: Find Articles for Oracle9i DBA OCA

Restricting and Sorting Data


WHERE Clause –



Comparison Operators;
Logical Operator;
Using the Logical Operator, AND;
Using the logical Operator, OR;
Using the Logical Operator, NOT;
Nesting Logical Operators;
Other Comparison Keywords;
Using the Keyword, LIKE;
Using the Keywords, BETWEEN...AND;
Using the Keyword, IN;
Using the Keyword, IS NULL


ORDER BY Clause - Using the ORDER BY Clause

Logical Operators

There are six logical operators in SQL, and after introducing them, we'll see how they're used:

=
Equal
<> or != (see manual)
Not Equal
<

Less Than
>
Greater Than
<=

Less Than or Equal To
>=
Greater Than or Equal To


The WHERE clause is used to specify that only certain rows of the table are displayed, based on the criteria described in that WHERE clause. It is most easily understood by looking at a couple of examples.

If you wanted to see the EMPLOYEEIDNO's of those making at or over $50,000, use the following:

SELECT EMPLOYEEIDNO
FROM EMPLOYEESTATISTICSTABLE
WHERE SALARY >= 50000;

Notice that the >= (greater than or equal to) sign is used, as we wanted to see those who made greater than $50,000, or equal to $50,000, listed together. This displays:

EMPLOYEEIDNO
------------
010
105
152
215
244

The WHERE description, SALARY >= 50000, is known as a condition. The same can be done for text columns:

SELECT EMPLOYEEIDNO
FROM EMPLOYEESTATISTICSTABLE
WHERE POSITION = 'Manager';

This displays the ID Numbers of all Managers. Generally, with text columns, stick to equal to or not equal to conditions, and make sure that any text the appears in the statement is surrounded by single quotes (').

More Complex Conditions: Compound Conditions

The AND operator joins two or more conditions, and displays a row only if that row's data satisfies ALL conditions listed (i.e. all conditions hold true). For example, to display all staff making over $40,000, use:

SELECT EMPLOYEEIDNO
FROM EMPLOYEESTATISTICSTABLE
WHERE SALARY > 40000 AND POSITION = 'Staff';

The OR operator joins two or more conditions, but returns a row if ANY of the conditions listed hold true. To see all those who make less than $40,000 or have less than $10,000 in benefits, listed together, use the following query:

SELECT EMPLOYEEIDNO
FROM EMPLOYEESTATISTICSTABLE
WHERE SALARY <>

AND & OR can be combined, for example:

SELECT EMPLOYEEIDNO
FROM EMPLOYEESTATISTICSTABLE
WHERE POSITION = 'Manager' AND SALARY > 60000 OR BENEFITS > 12000;

First, SQL finds the rows where the salary is greater than $60,000 or the benefits is greaterthan $12,000, then taking this new list of rows, SQL then sees if any of these rows satisfies the condition that the Position column if equal to 'Manager'. Subsequently, SQL only displays this second new list of rows, as the AND operator forces SQL to only display such rows satisfying the Position column condition. Also note that the OR operation is done first.

To generalize this process, SQL performs the OR operation(s) to determine the rows where the OR operation(s) hold true (remember: any one of the conditions is true), then these results are used to compare with the AND conditions, and only display those remaining rows where the conditions joined by the AND operator hold true.
To perform AND's before OR's, like if you wanted to see a list of managers or anyone making a large salary (>$50,000) and a large benefit package (>$10,000), whether he or she is or is not a manager, use parentheses:

SELECT EMPLOYEEIDNO
FROM EMPLOYEESTATISTICSTABLE
WHERE POSITION = 'Manager' OR (SALARY > 50000 AND BENEFIT > 10000);

IN & BETWEEN

An easier method of using compound conditions uses IN or BETWEEN. For example, if you wanted to list all managers and staff:

SELECT EMPLOYEEIDNO
FROM EMPLOYEESTATISTICSTABLE
WHERE POSITION IN ('Manager', 'Staff');

or to list those making greater than or equal to $30,000, but less than or equal to $50,000, use:

SELECT EMPLOYEEIDNO
FROM EMPLOYEESTATISTICSTABLE
WHERE SALARY BETWEEN 30000 AND 50000;

To list everyone not in this range, try:

SELECT EMPLOYEEIDNO
FROM EMPLOYEESTATISTICSTABLE
WHERE SALARY NOT BETWEEN 30000 AND 50000;
Similarly, NOT IN lists all rows excluded from the IN list.

Using LIKE

Look at the EmployeeStatisticsTable, and say you wanted to see all people whose last names started with "L"; try:

SELECT EMPLOYEEIDNO
FROM EMPLOYEEADDRESSTABLE
WHERE LASTNAME LIKE 'L%';

SQL: Single Row Functions

Single Row Functions


List of Single row functions in Oracle

A)Numeric Functions
ABS
ACOS
ASIN
ATAN
ATAN2
BITAND
CEIL
COS
COSH
EXP
FLOOR
LN
LOG
MOD
NANVL
POWER
REMAINDER
ROUND (number)
SIGN
SIN
SINH
SQRT
TAN
TANH
TRUNC (number)
WIDTH_BUCKET


B)Character Functions that return Character Values
CHR
CONCAT
INITCAP
LOWER
LPAD
LTRIM
NLS_INITCAP
NLS_LOWER
NLSSORT
NLS_UPPER
REGEXP_REPLACE
REGEXP_SUBSTR
REPLACE
RPAD
RTRIM
SOUNDEX
SUBSTR
TRANSLATE
TREAT
TRIM
UPPER


C)NLS Character Function that return information about character set
NLS_CHARSET_DECL_LEN
NLS_CHARSET_ID
NLS_CHARSET_NAME

D)Character Functions that return Number Value

ASCII
INSTR
LENGTH
REGEXP_INSTR

E)Datetime Functions

ADD_MONTHS
CURRENT_DATE
CURRENT_TIMESTAMP
DBTIMEZONE
EXTRACT (datetime)
FROM_TZ
LAST_DAY
LOCALTIMESTAMP
MONTHS_BETWEEN
NEW_TIME
NEXT_DAY
NUMTODSINTERVAL
NUMTOYMINTERVAL
ROUND (date)
SESSIONTIMEZONE
SYS_EXTRACT_UTC
SYSDATE
SYSTIMESTAMP
TO_CHAR (datetime)
TO_TIMESTAMP
TO_TIMESTAMP_TZ
TO_DSINTERVAL
TO_YMINTERVAL
TRUNC (date)
TZ_OFFSET

F)General Comparison Functions

GREATEST
LEAST

G)Conversion Functions

ASCIISTR
BIN_TO_NUM
CAST
CHARTOROWID
COMPOSE
CONVERT
DECOMPOSE
HEXTORAW
NUMTODSINTERVAL
NUMTOYMINTERVAL
RAWTOHEX
RAWTONHEX
ROWIDTOCHAR
ROWIDTONCHAR
SCN_TO_TIMESTAMP
TIMESTAMP_TO_SCN
TO_BINARY_DOUBLE
TO_BINARY_FLOAT
TO_CHAR (character)
TO_CHAR (datetime)
TO_CHAR (number)
TO_CLOB
TO_DATE
TO_DSINTERVAL
TO_LOB
TO_MULTI_BYTE
TO_NCHAR (character)
TO_NCHAR (datetime)
TO_NCHAR (number)
TO_NCLOB
TO_NUMBER
TO_DSINTERVAL
TO_SINGLE_BYTE
TO_TIMESTAMP
TO_TIMESTAMP_TZ
TO_YMINTERVAL
TO_YMINTERVAL
TRANSLATE ... USING
UNISTR

H)Large Object Functions

BFILENAME
EMPTY_BLOB
EMPTY_CLOB

I)Collection Functions

CARDINALITY
COLLECT
POWERMULTISET
POWERMULTISET_BY_CARDINALITY
SET


J)Hierarchical Function
SYS_CONNECT_BY_PATH


K)Data Mining Functions
CLUSTER_ID
CLUSTER_PROBABILITY
CLUSTER_SET
FEATURE_ID
FEATURE_SET
FEATURE_VALUE
PREDICTION
PREDICTION_COST
PREDICTION_DETAILS
PREDICTION_PROBABILITY
PREDICTION_SET


L)XML Functions
APPENDCHILDXML
DELETEXML
DEPTH
EXTRACT (XML)
EXISTSNODE
EXTRACTVALUE
INSERTCHILDXML
INSERTXMLBEFORE
PATH
SYS_DBURIGEN
SYS_XMLAGG
SYS_XMLGEN
UPDATEXML
XMLAGG
XMLCDATA
XMLCOLATTVAL
XMLCOMMENT
XMLCONCAT
XMLFOREST
XMLPARSE
XMLPI
XMLQUERY
XMLROOT
XMLSEQUENCE
XMLSERIALIZE
XMLTABLE
XMLTRANSFORM

M)Encoding and Decoding Functions

DECODE
DUMP
ORA_HASH
VSIZE


N)NULL-Related Functions
COALESCE
LNNVL
NULLIF
NVL
NVL2

O)Environment and Identifier Functions

SYS_CONTEXT
SYS_GUID
SYS_TYPEID
UID
USER
USERENV


hits count
Database | Oracle PartnerNetwork Blog