COLUMN DESCRIPTION FORMAT A30 COLUMN VALUE FORMAT A30 SET LINESIZE 120 SQL> select value,isdefault,isses_modifiable, issys_modifiable,isbasic,description from v$parameter where name='enable_ddl_logging'; VALUE ISDEFAULT ISSES ISSYS_MOD ISBAS DESCRIPTION ------ --------- ----- --------- ----- ------------------- FALSE TRUE TRUE IMMEDIATE FALSE enable ddl logging SQL> alter system set ENABLE_DDL_LOGGING=true ; System altered. SQL> conn hudson/c402d92 Connected SQL> create table t_hudson as select * from user_tables; Table created. SQL> grant select on t_hudson to public; Grant succeeded. SQL> alter table t_hudson read only; Table altered. SQL> drop table t_hudson ; Table dropped.Após a alteração do parâmetro vamos verificar se foi gerado o log no alert.log:
[oracle@rjhud trace]$ tail -f alert_centro.log
Mon Nov 21 15:58:43 2011
SMCO started with pid=31, OS id=5981
Mon Nov 21 16:08:37 2011
ALTER SYSTEM SET enable_ddl_logging=TRUE SCOPE=SPFILE;
ALTER SYSTEM SET enable_ddl_logging=TRUE SCOPE=BOTH;
Mon Nov 21 16:09:41 2011
create table t_hudson as select * from user_tables
Mon Nov 21 16:10:09 2011
alter table t_hudson read only
drop table t_hudson
Para maiores informações sobre o parâmetro é só consultar o link:
http://download.oracle.com/docs/cd/E14072_01/server.112/e10820/initparams078.htm
Nenhum comentário:
Postar um comentário