Technical Blog
Pages
(Move to ...)
Home
Oracle DBA
ERP
Oracle Apps
Data Warehouse
Java
UNIX
Hadoop
JOBS4U
▼
Jul 15, 2009
REGEXP 1
›
Find the position of try, trying, tried or tries SELECT REGEXP_INSTR('We are trying to make the subject easier','tr(y(ing)?|(...
REGEXP
›
REGEXP_LIKE SELECT * FROM scott.emp WHERE REGEXP_LIKE(ENAME,'FR') ; OR SELECT * FROM scott.emp WHERE ENAME LIKE '%FR%'...
Instead of Commit
›
Usually after a DML statement to make the change permenantly in the database we should execute commit statement . Example update scott.e...
May 29, 2009
Pinning in M/R // Background Process
›
Pinning stored procedure/function to shared pool in 11G execute dbms_shared_pool.keep(owner.trigger, 'R'); ---------------------...
ESCAPE With LIKE Operator
›
ESCAPE With LIKE Operator select ename from scott.emp where ename like '%_%'; But you will be surprised to see the results: EN...
‹
›
Home
View web version