Results 1 to 2 of 2

Thread: Procedure in SQL Server

  1. #1
    Brownchris is offline Senior Member
    Join Date
    Dec 2009
    Posts
    331
    Rep Power
    3

    Default Procedure in SQL Server

    Use of Stored Procedure in SQL Server

    I am learning SQL server and while learning it, it is very difficult to understand the stored procedure. It is too very complicated for me to know. Please give me some detail information on Stored Procedure. Any suggestion would be highly appreciated

  2. #2
    Millerjames is offline Senior Member
    Join Date
    Dec 2009
    Posts
    331
    Rep Power
    3

    Default

    Follow the given step below which is helpful for you to create Stored Procedure.

    1. We first create the connection to the database.

    2. We create an SQL command type stored procedure that will permit us to use the procedure created.

    3. We add the parameters required for executing the stored procedure.

    4. Finally, we run the command and the objects.

    Code:

    CREATE PROCEDURE procedure_name AS
    {
    procedure definition
    }
    Last edited by nitesh14; 02-06-2010 at 03:32 PM.

Similar Threads

  1. Procedure for converting of exe to msi?
    By steven45 in forum Windows 7/2000/NT
    Replies: 1
    Last Post: 05-06-2009, 10:23 AM
  2. Install procedure
    By lynette in forum Everything Else
    Replies: 0
    Last Post: 04-02-2009, 07:47 AM
  3. what is the procedure to find my security key
    By andreata in forum Windows Vista
    Replies: 0
    Last Post: 01-06-2009, 12:09 PM
  4. ERP software instalation Procedure
    By deon654 in forum General Software Terms
    Replies: 0
    Last Post: 05-17-2008, 11:06 AM
  5. Installation procedure -'' Jumpers''
    By techproblem in forum Applications
    Replies: 0
    Last Post: 04-05-2008, 09:28 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48