Results 1 to 4 of 4

Thread: sqlserver

  1. #1

    sqlserver

    what is the query for seeing only stored procedures in sqlserver


  2. #2

    Re: sqlserver

    CREATE OR REPLACE PROCEDURE [SCHEME.] procedurename
    (argument {IN, OUT, IN OUT} data type,....) {IS, AS}
    variable declarations:
    constant declarations;
    BEGIN
    PL/SQL subprogram body;
    EXCEPTION
    exception PL/SQL block;
    END;


  3. #3
    Contributing Member
    Join Date
    Jun 2007
    Answers
    65

    Re: sqlserver

    Hi Gopi,

    Its' simple just run the following query

    Select * from sysobjects where xtype='P'


    ---V V---
    Vikas Vaidya

    Please mark this post as thank if u found it useful


  4. #4
    Junior Member
    Join Date
    Jul 2008
    Answers
    6

    Re: sqlserver

    select * from sysobjects where type='p'


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact