last modifications in column in table oracle 10g

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • smsintel
    New Member
    • Oct 2013
    • 1

    last modifications in column in table oracle 10g

    hi
    plzz tell me query
    last modifications in column in table oracle 10g
  • rski
    Recognized Expert Contributor
    • Dec 2006
    • 700

    #2
    There is no such column for DMLs, for DDL you have last_ddl_time.

    To have last time for DML you will need to create a column which will be updated/inserted when proper SQL query is executed, but you have to do populate that column by yourself.

    Comment

    • gaurishere
      New Member
      • Sep 2013
      • 9

      #3
      Dear user


      Code:
      desc dba_tab_modifications
      from here you can find when the last insert,update,d elete was happened on the table

      Comment

      Working...