Topic: SQL*Plus and PL/SQL >> pls reply
|
Disclaimer: The purpose of all dbapool forums including OCP and Other Oracle Certification forums is to help each other with specific issues but not to share dump and copyrighted exam content, materials or intellectual property.
You may review the entire Oracle Certification Program Candidate Agreement online Here.
|
|
|
|
| jayesh |
Posted: May 09, 2008 09:38:40 AM |
Total Post: 58
Joined: Jan, 2008
|
i want to check the details of my procedure updated by some other user.
The info i wanna check is created time and last ddl performed on it through user objects. Can anyone help me out with the query
|
|
|
Gitesh |
| Posted: May 10, 2008 12:51:03 AM | |
|
Total Post: 145
Joined: May, 2005
|
select owner,object_type,object_name,created,last_ddl_time
from dba_objects where owner='<OWNER_OF_OBJECT>' and object_name='<OBJECT_NAME>';
select owner,object_type,object_name,to_char(created,'dd-mon-yy:hh24:mi:ss'),
to_char(last_ddl_time,'dd-mon-yy:hh24:mi:ss')
from dba_objects where owner='<OWNER_OF_OBJECT>' and object_name='<OBJECT_NAME>';
|
|
|
|
|
jayesh |
| Posted: May 10, 2008 06:10:23 AM | |
|
Total Post: 58
Joined: Jan, 2008
|
|
|
|
|
jayesh |
| Posted: May 11, 2008 04:04:27 AM | |
|
Total Post: 58
Joined: Jan, 2008
|
so what would be the where clause if i want to checkout the procedure;s update of last 3 days.
|
|
|
|
|
| Time Zone: EDT |
Send this thread to your friend |
|
|
|
|
Forum Rules & Description
Who Can Read The Forum? Any registered user or guest
Who Can Post New Topics? Any registered user
Who Can Post Replies? Any registered user
|
| |
Get FREE Magazines
|
Top 10 Forum User
|
| Mohammed Taj | 630 |
| Murtuja Khokhar | 580 |
| Jayanta Sur | 479 |
| Vigyan Kaushik | 385 |
| Ramesh Jois | 226 |
| neeraj sharma | 189 |
| snehalatha p | 166 |
| Gitesh Trivedi | 145 |
| Gopu Gopi | 137 |
| Kushal ratnaker | 136 |
|
|