DBAsupport.com Forums - Powered by vBulletin
Results 1 to 4 of 4

Thread: Sequence Creation

  1. #1
    Join Date
    Aug 2000
    Posts
    132
    Is there a way I can tell when a sequence was created? I looked in user_objects but that doesn't include info about sequences. Thx for the help.

  2. #2
    Join Date
    Apr 2001
    Posts
    37
    SQL> create sequence sq;

    SQL> select object_name, created from user_objects
    where object_type = 'SEQUENCE';

    OBJECT_NAME
    ------------
    CREATED
    ---------
    SQ
    11-APR-01
    inosov
    Brainbench MVP for Oracle DBA

  3. #3
    Join Date
    Oct 2000
    Location
    Cambridge, MA (Boston)
    Posts
    144
    make sure you are the owner when querying user_object, or look in dba_objects. it will have a CREATED field with this info.

    d.

  4. #4
    Join Date
    Aug 2000
    Posts
    132
    thx - that did the trick!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width