Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: query whether sequences exist

Re: query whether sequences exist

From: Mark D Powell <Mark.Powell_at_eds.com>
Date: 1 Mar 2006 11:15:20 -0800
Message-ID: <1141240519.952600.119000@z34g2000cwc.googlegroups.com>


In other words sequences are not tied by Oracle to a specific table. Sequences are independent objects. However, you can often tie a sequence to a table by looking at its name, but the surest way is to check the insert statements and before insert trigger(s), if any, on the table in question. One sequences can be used to populate several different tables. having low insert rate tables share a sequence can greatly reduce the need to define sequences on a system.

HTH -- Mark D Powell -- Received on Wed Mar 01 2006 - 13:15:20 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US