•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the Oracle section within the Web Development category of DaniWeb, a massive community of 392,100 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,796 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Oracle advertiser:
Views: 3432 | Replies: 4
![]() |
Hello pilpil,
Thanks for reply.
but I am not getting any records when selecting from all_tab_modifications or user_tab_modifications.
I tried connecting to both sys and system user. In system user I have created one table TEST and inserted some rows.
SQL> select * from all_tab_modifications where table_name = 'TEST';
no rows selected
Please respond soon!
Thanks,
BMantri
Thanks for reply.
but I am not getting any records when selecting from all_tab_modifications or user_tab_modifications.
I tried connecting to both sys and system user. In system user I have created one table TEST and inserted some rows.
SQL> select * from all_tab_modifications where table_name = 'TEST';
no rows selected
Please respond soon!
Thanks,
BMantri
•
•
Join Date: Nov 2007
Posts: 51
Reputation:
Rep Power: 1
Solved Threads: 9
If the table has been modified recently and is 10g, you can try
select scn_to_timestamp(max(ora_rowscn))
from test;
Think I've seen things say it's only up to 5 days you can use this.
If you need to and can modify the database, you could always create your own version of the user_tab_modifications by putting an INSERT/UPDATE/DELETE trigger on the tables you want to track and create a small table which holds the same sort of data as the user_tab_modifications does.
Nige
select scn_to_timestamp(max(ora_rowscn))
from test;
Think I've seen things say it's only up to 5 days you can use this.
If you need to and can modify the database, you could always create your own version of the user_tab_modifications by putting an INSERT/UPDATE/DELETE trigger on the tables you want to track and create a small table which holds the same sort of data as the user_tab_modifications does.
Nige
Hello Nige,
Thanks a lot for your valuable suggestion. It is working with some of my tables but for others it is giving the following error.
SQL> select scn_to_timestamp(max(ora_rowscn)) from SLB_FILE_ATTACHMENTS
2 ;
select scn_to_timestamp(max(ora_rowscn)) from SLB_FILE_ATTACHMENTS
*
ERROR at line 1:
ORA-08181: specified number is not a valid system change number
ORA-06512: at "SYS.SCN_TO_TIMESTAMP", line 1
Do you have any idea about this error and how can I find the last modified date for this kind of tables?
Please help me to fix this issue.
Many many Thanks,
BMantri
Thanks a lot for your valuable suggestion. It is working with some of my tables but for others it is giving the following error.
SQL> select scn_to_timestamp(max(ora_rowscn)) from SLB_FILE_ATTACHMENTS
2 ;
select scn_to_timestamp(max(ora_rowscn)) from SLB_FILE_ATTACHMENTS
*
ERROR at line 1:
ORA-08181: specified number is not a valid system change number
ORA-06512: at "SYS.SCN_TO_TIMESTAMP", line 1
Do you have any idea about this error and how can I find the last modified date for this kind of tables?
Please help me to fix this issue.
Many many Thanks,
BMantri
![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
•
•
•
•
DaniWeb Oracle Marketplace
- Open In New Window Php (PHP)
- Convert date to timestamp format (VB.NET)
- Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource (PHP)
- how do i get around this (Visual Basic 4 / 5 / 6)
- Help.. my hard drive suddenly run out of space (Viruses, Spyware and other Nasties)
- I need to trace or view that the stored proc is saving the data. (VB.NET)
- Need help with directory displayer code (PHP)
- very important please (C++)
- [B]What changes need to be made to the above database definition in order to solve al (Visual Basic 4 / 5 / 6)
- PHP newbie, project feasibility (PHP)
Other Threads in the Oracle Forum
- Previous Thread: SQL Script help
- Next Thread: Passing XML file to SP


Linear Mode