cancel
Showing results for 
Search instead for 
Did you mean: 

See the detalis of DDL commands executing on oracle 10g

Former Member
0 Kudos

Hi,

how can i see the detail of DDL command executed on oracle 10g on ECC 6.0

ECC 6.0

HPUX

Regards,

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

>> how can i see the detail of DDL command executed on oracle 10g on ECC 6.0

select dbms_metadata.get_ddl('<OBJECTTYPE>','<TABLENAME>','<OWNER>') from dual;

Best regards,

Orkun Gedik

Former Member
0 Kudos

want to display all or user wise DDL commands.

Former Member
0 Kudos

>> want to display all or user wise DDL commands.

SQL> set long 5000

SQL> select dbms_metadata.get_ddl('<OBJECTTYPE>','<TABLENAME>','<OWNER>') from dual;

Best regards,

Orkun Gedik

Former Member
0 Kudos

if i reset the password via alter command.

then how can i see ???

Former Member
0 Kudos

Did you activated the auditing mechanish on the Oracle? If it is active, you can query the audit table;

select * from sys.aud$;

Another way is using Oracle Log Miner. You can find the related information, on the link below;

http://docs.oracle.com/cd/B10501_01/server.920/a96521/logminer.htm

Best regards,

Orkun Gedik

Former Member
0 Kudos

thanks to all