exec DBMS_APPLICATION_INFO.SET_MODULE( NULL,NULL ); exec DBMS_APPLICATION_INFO.SET_MODULE('my module', 'my action'); exec DBMS_APPLICATION_INFO.SET_ACTION('my action 2'); exec DBMS_APPLICATION_INFO.SET_CLIENT_INFO('my client info'); -- exec DBMS_APPLICATION_INFO.SET_SESSION_LONGOPS(rindex, slno, -- 'Test Operation', obj, 0, sofar, totalwork, 'Contract', 'Contracts'); select sid,program,module,action,client_info from v$session where username='MH';
Tuesday, May 29, 2007
using dbms_application_info
Tuesday, May 22, 2007
Oracle/PLSQL: Oracle System Tables
Oracle/PLSQL: Oracle System Tables: "an alphabetical listing of the Oracle system tables that are commonly used."
Desc - Describe an Oracle Table, View, Synonym, package or Function
Desc - Describe an Oracle Table, View, Synonym, package or Function:
"An alternative to the DESC command is selecting directly from the data dictionary -
DESC MY_TABLE
is equivalent to
SELECT
column_name 'Name',
nullable 'Null?',
concat(concat(concat(data_type,'('),data_length),')') 'Type'
FROM user_tab_columns
WHERE table_name='TABLE_NAME_TO_DESCRIBE';"
Subscribe to:
Posts (Atom)
-
A while back I answered a question on Stack Overflow asking about the relative popularity of The Art of Computer Programming . I replied wit...
-
First, let's draw a cube: cube(10,true); Now, let's animate a 360 degree turntable view of the cube: rotate([0,0,$...
-
I learned a lot from Laurens Kuiper's blog post Testing out DuckDB's Full Text Search Extension , but unfortunately couldn't fin...