Saturday, August 10, 2013

How to Excecute Store Procedure in Sql Server

Introduction: In this post I will explain we can Excecute the Store procedure in Sql Server.
Description:
use TEST_APPLICATION

exec dbo.DISPLAY_USERS
OR
exec dbo.DISPLAY_USERS

Here TEST_APPLICATION is the name of Database and dbo.DISPLAY_USERS name of store procedure. Execute it, display the output of store procedure.

No comments:

Post a Comment