Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within Oracle/OAS
Search Coderanch
Advance search
Google search
Register / Login
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Tim Cooke
Ron McLeod
paul wheaton
Jeanne Boyarsky
Sheriffs:
Paul Clapham
Devaka Cooray
Saloon Keepers:
Tim Holloway
Roland Mueller
Himai Minh
Bartenders:
Forum:
Oracle/OAS
how to check what SEQUENCE and trigger are existing in a schema
ben oliver
Ranch Hand
Posts: 375
posted 17 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
How do I check what Trigger and sequence are existing in a schema ?
Do I need DBA role to view them ?
Thanks.
Agador Paloi
Ranch Hand
Posts: 118
posted 17 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
for triggers try:
select table_name ,
trigger_name,
trigger_type,
triggering_event
from user_triggers
where table_owner = 'myschema_name'
/
With a little knowledge, a
cast iron skillet
is non-stick and lasts a lifetime.
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
How to use the keyword for searching?
Commit problem
Sequence diagram
Issue in Inserting / Updating the table with trigger using Hibernate
Using select strategy (id generated by oracle trigger)
More...