database administration - How to find out the IP address who performed DML operations on a certain table in Oracle? -
is there way find out ip address performed dml operations on table in oracle?
if ip not possible, how find sid?
thanks.
i not sure need however.
if want know sid select sys_context('userenv', 'sid') dual;
however if want know made dml operations on tables, check streams, replication of dml
a capture process or application creates 1 or more logical change records (lcrs) , enqueues them queue. lcr message specific format describes database change. capture process reformats changes captured redo log lcrs, , applications can construct lcrs. if change data manipulation language (dml) operation, each lcr encapsulates row change resulting dml operation shared table @ source database. if change data definition language (ddl) operation, lcr encapsulates ddl change made shared database object @ source database.
Comments
Post a Comment