Oracle
Oracle and XML In Action - A Real World Example
Catalog Views / Data Dictionary Views
SQL*Plus® User's Guide and Reference - SET Commands
Oracle TNS Configuration Trouble Shooting
Get ORACLE current version, use :
SELECT *
FROM v$version;
Get The First Day of the Year for a given date SELECT TRUNC(sysdate,'Y') FROM DUAL
Get The First Day of the month for a given date SELECT TRUNC(sysdate,'MM') FROM DUAL
Get the First Day of the quarter for a given date SELECT TRUNC(sysdate,'Q') FROM DUAL
Comments
Post a Comment