Prepare for your Next Interview
This is a discussion on sqlserver within the SQL Server forums, part of the Databases category; what is the query for seeing only stored procedures in sqlserver...
|
|||
|
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; |
|
|||
|
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 |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| what is meant by sqlserver developer | nandu_2k2003 | SQL Server | 0 | 05-23-2008 02:11 AM |
| Certifications for SQLSERVER 2005 | reoaran | Microsoft Certification | 2 | 03-22-2008 05:14 AM |
| I want to convert that database to SQLSERVER database | vijay_chukka | Oracle | 1 | 07-21-2007 05:50 AM |
| SQLServer 2005 restore to 2000 | sonzls | SQL Server | 2 | 04-22-2007 07:36 AM |