12c如何监控DDL

45次阅读
没有评论

共计 1252 个字符,预计需要花费 4 分钟才能阅读完成。

这篇文章主要介绍了 12c 如何监控 DDL,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让丸趣 TV 小编带着大家一起了解一下。

SQL show parameter ENABLE_DDL_LOGGING

NAME     TYPE VALUE
———————————— ———– ——————————
enable_ddl_logging     boolean FALSE
SQL alter system set ENABLE_DDL_LOGGING=true;

SQL create table look2 as select * from look;
Table created.
SQL drop table look2;
Table dropped.
SQL  

  txt create table look2 as select * from look
  /txt
/msg
[oracle@cloud12c ddl]$ cat log.xml 
msg time= 2017-11-21T13:33:37.964+08:00 org_id= oracle comp_id= rdbms
 msg_id= opiexe:4695:2946163730 type= UNKNOWN group= diag_adl
 level= 16 host_id= cloud12c host_addr= 10.60.17.99
 pid= 7510 version= 1
  txt alter table look modify (money visible)
  /txt
/msg
msg time= 2017-11-21T13:47:54.747+08:00 org_id= oracle comp_id= rdbms
 msg_id= opiexe:4695:2946163730 type= UNKNOWN group= diag_adl
 level= 16 host_id= cloud12c host_addr= 10.60.17.99
 pid= 7510
  txt create table look2 as select * from look
  /txt
/msg
msg time= 2017-11-21T13:50:03.002+08:00 org_id= oracle comp_id= rdbms
 msg_id= opiexe:4695:2946163730 type= UNKNOWN group= diag_adl
 level= 16 host_id= cloud12c host_addr= 10.60.17.99
 pid= 7510
  txt drop table look2
  /txt
/msg
[oracle@cloud12c ddl]$ pwd
/u01/app/oracle/diag/rdbms/orcl/cloud/log/ddl

感谢你能够认真阅读完这篇文章,希望丸趣 TV 小编分享的“12c 如何监控 DDL”这篇文章对大家有帮助,同时也希望大家多多支持丸趣 TV,关注丸趣 TV 行业资讯频道,更多相关知识等着你来学习!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-07-17发表,共计1252字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)