SQL Server Stored Procedure Review

Source: Internet
Author: User
Store common or complex tasks in advance with SQL statements and a specified name, to enable the database to provide services with the same functions as the predefined stored procedure, you only need to call execute to automatically complete the command.

Advantages of Stored Procedures

1. the stored procedure is compiled only when it is created. You do not need to re-compile the stored procedure every time you execute it. Generally, the SQL statement is compiled every time it is executed, therefore, using stored procedures can speed up database execution. 2. when performing complex operations on the database (for example, performing update, insert, query, and delete operations on multiple tables ), this complex operation can be encapsulated in a stored procedure and used together with the transaction processing provided by the database. 3. The stored procedure can be reused to reduce the workload of database developers. 4. High security. You can set that only one user has the right to use the specified stored procedure.

Create a stored procedure ************************************* ************

Syntax create proc [edure] [ Owner .] Procedure_name[ ; Number] [{@ Parameter data_type} [Varying] [ = Default] [Output] ] [ ,... N]
[With {recompile | encryption | recompile ,Encryption}]
[For replication]
As SQL _statement[... N]

Parameters

Owner

Name of the user ID that owns the stored procedure.OwnerIt must be the name of the current user or the name of the role to which the current user belongs.

Procedure_name

Name of the new stored procedure. The process name must comply with the identifier rules and must be unique to the database and its owner.

;Number

Is an optional integer used to group processes with the same name, so that the same group of processes can be removed with a drop procedure statement. For example, an application named orders can use a process namedOrderproc; 1,Orderproc; 2. Drop procedureOrderprocThe statement removes the entire group. If the name contains a bound identifier, the number should not be included in the identifier.Procedure_nameUse proper delimiters before and after.

@Parameter

Parameters in the process. One or more parameters can be declared in the create procedure statement. You must provide the value of each declared parameter during execution (unless the default value of this parameter is defined or set to equal to another parameter ). A stored procedure can have a maximum of 2.100 parameters.

Use the @ symbol as the first character to specify the parameter name. The parameter name must comply with the identifier rules. Each process parameter is only used for this process. The same parameter name can be used in other processes. By default, parameters can only replace constants, but cannot replace the names of table names, column names, or other database objects.

Data_type

The data type of the parameter. DivisionTableAll other data types can be used as parameters for stored procedures. However,CursorThe data type can only be used for output parameters. If you specifyCursorData Type, you must also specify the varying and output keywords. ForCursorThere is no limit on the maximum number of output parameters of the data type.

Varying

Specify the result set supported by the output parameter (dynamically constructed by the stored procedure, and the content can be changed ). Only applicable to cursor parameters.

Default

The default value of the parameter. If the default value is defined, the process can be executed without specifying the value of this parameter. The default value must be a constant or null. If the like keyword is used for this parameter, the default value can contain wildcards (%, _, [], and [^]).

Output

Indicates that the parameter is a return parameter. The value of this option can be returned to Exec [ute]. The output parameter can be used to return information to the call process.Text,NtextAndImageParameters can be used as output parameters. The output parameter using the output keyword can be a placeholder cursor.

N

It indicates that up to 2.100 parameter placeholders can be specified.

{Recompile | encryption | recompile,Encryption}

Recompile indicates that SQL server does not cache the plan of the process, and the process will be re-compiled at runtime. Use the recompile option when you use an atypical or temporary value instead of overwriting the execution plan cached in the memory.

Encryption indicates SQL server encryptionSyscommentsThe table contains entries in the create procedure statement text. Encryption prevents the process from being published as part of SQL Server replication.

For Replication

The storage process created for replication cannot be executed on the subscription server .. Stored Procedures created using the for replication option can be used for filtering stored procedures and can only be executed during replication. This option cannot be used with the with recompile option.

As

Specifies the operation to be performed in the process.

SQL _statement

Any number and types of transact-SQL statements to be included in the process. But there are some restrictions.

N

Yes indicates that this process can contain placeholders for multiple Transact-SQL statements.

**************************************** ******

Note: * The surrounding part comes from MS online books.

 

Several instances

(Content in the ajaxcity table)

Id cityname short

1 Suzhou SZ

2 Wuxi WX

3 Changzhou CZ

1. Select all contents in the table and return a dataset.

Create procedure mysp_all as select * From ajaxcity go

Execution result

2. query based on input parameters and return a dataset

Create procedure mysp_para
@ Cityname varchar (255 ),

@ Short varchar (255) as select * From ajaxcity where cityname = @ cityname and short = @ short go

Execution result

3. Stored Procedure with output parameters (returns the sum of the IDs of the first two Records)

Create procedure mysp_output @ sum int output as select @ sum = sum ([ID]) from (select Top 2 * From ajaxcity) as tmptable go

Execution result

4. Use a cursor in the Stored Procedure

There is a table that stores information about counties and cities in various super-class cities .:

Now I want to count the number of counties and cities under each prefecture-level city and form a string. The result should be "5, 2, 2 ".

 

Create procedure mysp_cursor @ result varchar (255) Output // declare the output variable as declare city_cursor cursor for // declare the cursor variable select [ID] From ajaxcity

Set @ result = ''declare @ field int // declare the variable for temporarily storing cityid open city_cursor // open the cursor fetch next from city_cursor into @ field // assign the actual ID to the variable while (@ fetch_status = 0) // The loop starts begin if @ result = ''select @ result = convert (nvarchar (2), count (*)) from ajaxcounty where cityid = @ field else select @ result = @ result + ',' + convert (nvarchar (2), count (*)) from ajaxcounty where cityid = @ field fetch next from city_cursor into @ field // next cityid end close city_cursor // close the cursor deallocate city_cursor // release the cursor reference go

 

Execution result

 

Well, write the stored procedure here first. the above examples basically implement most of the functions commonly used. as for complex stored procedures, the SQL syntax is used, and the use of built-in functions in SQL. it is no longer within the scope of this article.

Store common or complex tasks in advance with SQL statements and a specified name, to enable the database to provide services with the same functions as the predefined stored procedure, you only need to call execute to automatically complete the command.

Advantages of Stored Procedures

1. the stored procedure is compiled only when it is created. You do not need to re-compile the stored procedure every time you execute it. Generally, the SQL statement is compiled every time it is executed, therefore, using stored procedures can speed up database execution. 2. when performing complex operations on the database (for example, performing update, insert, query, and delete operations on multiple tables ), this complex operation can be encapsulated in a stored procedure and used together with the transaction processing provided by the database. 3. The stored procedure can be reused to reduce the workload of database developers. 4. High security. You can set that only one user has the right to use the specified stored procedure.

Create a stored procedure ************************************* ************

Syntax create proc [edure] [ Owner .] Procedure_name[ ; Number] [{@ Parameter data_type} [Varying] [ = Default] [Output] ] [ ,... N]
[With {recompile | encryption | recompile ,Encryption}]
[For replication]
As SQL _statement[... N]

Parameters

Owner

Name of the user ID that owns the stored procedure.OwnerIt must be the name of the current user or the name of the role to which the current user belongs.

Procedure_name

Name of the new stored procedure. The process name must comply with the identifier rules and must be unique to the database and its owner.

;Number

Is an optional integer used to group processes with the same name, so that the same group of processes can be removed with a drop procedure statement. For example, an application named orders can use a process namedOrderproc; 1,Orderproc; 2. Drop procedureOrderprocThe statement removes the entire group. If the name contains a bound identifier, the number should not be included in the identifier.Procedure_nameUse proper delimiters before and after.

@Parameter

Parameters in the process. One or more parameters can be declared in the create procedure statement. You must provide the value of each declared parameter during execution (unless the default value of this parameter is defined or set to equal to another parameter ). A stored procedure can have a maximum of 2.100 parameters.

Use the @ symbol as the first character to specify the parameter name. The parameter name must comply with the identifier rules. Each process parameter is only used for this process. The same parameter name can be used in other processes. By default, parameters can only replace constants, but cannot replace the names of table names, column names, or other database objects.

Data_type

The data type of the parameter. DivisionTableAll other data types can be used as parameters for stored procedures. However,CursorThe data type can only be used for output parameters. If you specifyCursorData Type, you must also specify the varying and output keywords. ForCursorThere is no limit on the maximum number of output parameters of the data type.

Varying

Specify the result set supported by the output parameter (dynamically constructed by the stored procedure, and the content can be changed ). Only applicable to cursor parameters.

Default

The default value of the parameter. If the default value is defined, the process can be executed without specifying the value of this parameter. The default value must be a constant or null. If the like keyword is used for this parameter, the default value can contain wildcards (%, _, [], and [^]).

Output

Indicates that the parameter is a return parameter. The value of this option can be returned to Exec [ute]. The output parameter can be used to return information to the call process.Text,NtextAndImageParameters can be used as output parameters. The output parameter using the output keyword can be a placeholder cursor.

N

It indicates that up to 2.100 parameter placeholders can be specified.

{Recompile | encryption | recompile,Encryption}

Recompile indicates that SQL server does not cache the plan of the process, and the process will be re-compiled at runtime. Use the recompile option when you use an atypical or temporary value instead of overwriting the execution plan cached in the memory.

Encryption indicates SQL server encryptionSyscommentsThe table contains entries in the create procedure statement text. Encryption prevents the process from being published as part of SQL Server replication.

For Replication

The storage process created for replication cannot be executed on the subscription server .. Stored Procedures created using the for replication option can be used for filtering stored procedures and can only be executed during replication. This option cannot be used with the with recompile option.

As

Specifies the operation to be performed in the process.

SQL _statement

Any number and types of transact-SQL statements to be included in the process. But there are some restrictions.

N

Yes indicates that this process can contain placeholders for multiple Transact-SQL statements.

**************************************** ******

Note: * The surrounding part comes from MS online books.

 

Several instances

(Content in the ajaxcity table)

Id cityname short

1 Suzhou SZ

2 Wuxi WX

3 Changzhou CZ

1. Select all contents in the table and return a dataset.

Create procedure mysp_all as select * From ajaxcity go

Execution result

2. query based on input parameters and return a dataset

Create procedure mysp_para
@ Cityname varchar (255 ),

@ Short varchar (255) as select * From ajaxcity where cityname = @ cityname and short = @ short go

Execution result

3. Stored Procedure with output parameters (returns the sum of the IDs of the first two Records)

Create procedure mysp_output @ sum int output as select @ sum = sum ([ID]) from (select Top 2 * From ajaxcity) as tmptable go

Execution result

4. Use a cursor in the Stored Procedure

There is a table that stores information about counties and cities in various super-class cities .:

Now I want to count the number of counties and cities under each prefecture-level city and form a string. The result should be "5, 2, 2 ".

 

Create procedure mysp_cursor @ result varchar (255) Output // declare the output variable as declare city_cursor cursor for // declare the cursor variable select [ID] From ajaxcity

Set @ result = ''declare @ field int // declare the variable for temporarily storing cityid open city_cursor // open the cursor fetch next from city_cursor into @ field // assign the actual ID to the variable while (@ fetch_status = 0) // The loop starts begin if @ result = ''select @ result = convert (nvarchar (2), count (*)) from ajaxcounty where cityid = @ field else select @ result = @ result + ',' + convert (nvarchar (2), count (*)) from ajaxcounty where cityid = @ field fetch next from city_cursor into @ field // next cityid end close city_cursor // close the cursor deallocate city_cursor // release the cursor reference go

 

Execution result

 

Well, write the stored procedure here first. the above examples basically implement most of the functions commonly used. as for complex stored procedures, the SQL syntax is used, and the use of built-in functions in SQL. it is no longer within the scope of this article.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.