tags:

views:

39

answers:

2

What is the difference between a procedure and a stored procedure on sql server?

+1  A: 

If it's an actual procedure, in the database, it's a stored procedure -- regardless of whether people pronounce the "stored" part.

Stored procedures are in opposition to the client's issuing the SQL statements of the procedure one by one. That's what an un-"stored procedure" would be.

cHao
+2  A: 

There is no difference.

CREATE PROCEDURE

Will create a stored procedure

select * from sys.procedures

will show you the stored procedures.

This is as opposed to sending adhoc sql statements or prepared sql statements.

Martin Smith