Showing posts with label Oracle. Show all posts
Showing posts with label Oracle. Show all posts

Thursday, December 1, 2016

How to check the oracle db version?


The oracle db version that you are using can be know by using the below simple SQL query:

                                                         select * from v$version;

Sample output is as below:

Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
PL/SQL Release 11.2.0.3.0 - Production

.
.
.
.
.

Monday, February 14, 2011

Oracle Special Characters in LIKE clause

There are 3 Special Characters that should be taken care of while using LIKE clause in Oracle DB. They are % (percentage), _ (underscore) and ' (single quote).

The above link contains special characters of various db's like oracle, sql server.

-- how to escape those special chars