May 30, 2007 #1 Sambo8 Programmer May 10, 2005 78 NZ Hi there, THis may be a dumb? but I've hardly touched 10g is there anyway of finding out what time of day the undo tablespace is getting the most transactions? Cheers Sam
Hi there, THis may be a dumb? but I've hardly touched 10g is there anyway of finding out what time of day the undo tablespace is getting the most transactions? Cheers Sam
Jun 4, 2007 Thread starter #3 Sambo8 Programmer May 10, 2005 78 NZ Thanks Jim, This helps as it gives the date, but no time is that something I can tweak to show the time? Many thanks, Sam Upvote 0 Downvote
Thanks Jim, This helps as it gives the date, but no time is that something I can tweak to show the time? Many thanks, Sam
Jun 5, 2007 #4 hoinz MIS Jan 29, 2004 944 DE Sam, it seems you are unaware of the features of Oracle's datatype date. Actually it is date and time; however by default only date is shown. For a start try this: Code: select to_char(begin_time,'YYYYMMDD-HH24MISS') from v$undostat; And in case you prefer another format, have a look at the manual; I think you will find it when you look for an explanation of function to_char() hope this helps Upvote 0 Downvote
Sam, it seems you are unaware of the features of Oracle's datatype date. Actually it is date and time; however by default only date is shown. For a start try this: Code: select to_char(begin_time,'YYYYMMDD-HH24MISS') from v$undostat; And in case you prefer another format, have a look at the manual; I think you will find it when you look for an explanation of function to_char() hope this helps