20 pts.
 Oracle 10g Acessing the Mapping between Sequences and tables
How to Find out the List of table name using or sharing any sequence in oracle
Is there any Provision in Oracle 10g or upper versions


Software/Hardware used:
Oracle 10G
ASKED: October 15, 2009  1:04 PM
UPDATED: May 3, 2010  8:34 AM

Answer Wiki:
There is no mapping between squences and tables. You could use one sequence for multiple tables, or you could have sequences that are not used to generate values for any table. However, it is common to use sequences in before-insert triggers, so you could try to use the ALL_TRIGGERS view, looking for sequence names (from ALL_SEQUENCES) in the TRIGGER_BODY column.
Last Wiki Answer Submitted:  October 15, 2009  2:43 pm  by  carlosdl   63,535 pts.
All Answer Wiki Contributors:  carlosdl   63,535 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

Comment on what?
If this is the first time to enter this wab site, then how do I put comment?

 10 pts.