Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: when did that happen ... (really like to know)
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_001_01C08BED.0402DB60
Content-Type: text/plain;
charset="iso-8859-1"
> -----Original Message----- > From: Leslie Lu [mailto:leslie_y_lu_at_yahoo.com] > Sent: mercredi, 31. janvier 2001 16:35 > > Is there a way to find out when was a database created
select to_char (created, 'SYYYY/MM/DD HH24:MI:SS') from v$database ;
> and also when was an individual object in a database > created?
select to_char (created, 'SYYYY/MM/DD HH24:MI:SS')
from dba_objects
where owner = 'SYS' and object_name = 'TAB$' ;
------_=_NextPart_001_01C08BED.0402DB60
Content-Type: text/html;
charset="iso-8859-1"
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 5.5.2652.35">
<TITLE>RE: when did that happen ... (really like to know)</TITLE>
</HEAD>
<BODY>
<P><FONT SIZE=2>> -----Original Message-----</FONT>
<BR><FONT SIZE=2>> From: Leslie Lu [<A HREF="mailto:leslie_y_lu_at_yahoo.com">mailto:leslie_y_lu_at_yahoo.com</A>]</FONT>
<BR><FONT SIZE=2>> Sent: mercredi, 31. janvier 2001 16:35</FONT>
<BR><FONT SIZE=2>> </FONT>
<BR><FONT SIZE=2>> Is there a way to find out when was a database created</FONT>
</P>
<P><FONT SIZE=2>select to_char (created, 'SYYYY/MM/DD HH24:MI:SS')</FONT>
<BR><FONT SIZE=2>from v$database ;</FONT>
</P>
<P><FONT SIZE=2>> and also when was an individual object in a database</FONT>
<BR><FONT SIZE=2>> created? </FONT>
</P>
<BR>
<P><FONT SIZE=2>select to_char (created, 'SYYYY/MM/DD HH24:MI:SS')</FONT>
<BR><FONT SIZE=2>from dba_objects</FONT>
<BR><FONT SIZE=2>where owner = 'SYS' and object_name = 'TAB$' ;</FONT>
</P>
</BODY>
Received on Wed Jan 31 2001 - 19:19:25 CST
![]() |
![]() |