CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: SQL*PLUS

  1. #1
    Join Date
    Nov 2001
    Posts
    2

    SQL*PLUS

    I have a question about Oracle SQL*PLUS. I know that "SELECT * FROM TAB" can display all the table names and "SELECT * FROM SEQ" can display all the sequences. The question is, if I want to display all the triggers, what command do I use?
    I appreciate if any guru can help.


  2. #2
    Join Date
    Jul 2001
    Location
    Trivandrum, Kerala, India
    Posts
    21

    Re: SQL*PLUS


    This command will give you the trigger names

    select trigger_name from user_triggers

    All the best.

    Kishore.


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

Featured