hi,
suppose i created one table after few days i did some
insert,update how can i know when will i did ddl or dml
operation is undergone on that table
Answer Posted / prashe
select OWNER,OBJECT_NAME,CREATED,LAST_DDL_TIME,from
dba_objects where OBJECT_NAME='&object_name';
for DDL command.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Where would you look for errors from the database engine?
what is a user-defined lock?
In what script is "snap$" created? In what script is the "scott/tiger" schema created?
Why would you use sql agent? : sql server DBA
What are the different types of database compression introduced in sql server 2008? : sql server DBA
How to start SQL Server in minimal configuration mode?
List out some of the requirements to setup a sql server failover cluster.? : sql server DBA
Which dictionary view(s) would you first look at to understand or get a high-level idea of a given Advanced Replication environment?
What are the different types of indexes available in sql server? : sql server DBA
What is transparent data encryption? : sql server DBA
What are the different authentication modes in sql server and how can you change authentication mode? : sql server DBA
What spfile/init.ora file parameter exists to force the CBO to make the execution path of a given statement use an index, even if the index scan may appear to be calculated as more costly?
I have kept recovery catalog on same target database and taken backup of target DB to disk. deleted the target DB & tried to restore and revoer DB using the backup on disk but it is not possible, how do we restore & recover DB
. I have my backup RMAN script called "backup_rman.sh". I am on the target database. My catalog username/password is rman/rman. My catalog db is called rman. How would you run this shell script from the o/s such that it would run as a background process?
What view(s) do you use to associate a user's SQLPLUS session with his o/s process?