Discover stored procedure performance tuning in sql server, include the articles, news, trends, analysis and practical advice about stored procedure performance tuning in sql server on alibabacloud.com
From: http://www.cnblogs.com/chillsrc/archive/2008/04/15/1154186.html
I. Environment and test requirements
1. Test Environment
① Hardware: CPU: 2 GB, memory: 2 GB
② Database: SQL 2005
The result varies depending on the machine configuration.
2. Performance Test Description
① Query after the database server is restarted, that is, the result of the fi
SQL Server stored procedure syntax:
Create PROC [edure] procedure_name [; number]
[{@parameter data_type}
[varying] [= default] [OUTPUT]
Introduction of parameters
1, procedure_name
The name of the new stored procedure
I encountered a problem with using the stored procedure today. I used it for the first time. I used the Enterprise Manager to create a stored procedure. I just gave a name and didn't want to write anything in it. I saved it, later I used it, so I opened it for modification. I changed the process name to the parameter t
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 pa
Note: The defined SQL statement to execute must be of type nvarcharCREATE PROC P_branchordersalesstatistics@beginTime DateTime,--Start time@endTime DateTime,--End time@branchCode varchar (20),--store code@NewMemberCount int out,--number of new members@OrderCount int out,--order quantity@SalesTotalPrice Decimal (18,2) out,--Sales@ProfitTotalPrice Decimal (18,2) out--gross marginAsBEGINDECLARE @sqlfilter nvarchar (max)DECLARE @sqlmain nvarchar (max)DECL
benefits of Stored procedure functionality
Why use stored procedures? The following are some of the major benefits of stored procedure technology:
Precompile the execution program. SQL
. Text, ntext, and image parameters can be used as OUTPUT parameters. The output parameters that use outputs keyword can be cursor placeholders.8, NRepresents a placeholder that can specify up to 2,100 parameters.9. {RECOMPILE | Encryption | RECOMPILE, encryption}RECOMPILE indicates that SQL Server does not cache the schedule for this procedure, which is compiled
@userId = @userId; set @UserName = @UserName; set @passDate = @passDate; Set @inOut = @inOut; exec [dbo]. [Sendinfotoremotedb] @CardNo = @CardNo, @CardStyle = @CardStyle, @userId = @userId, @UserName = @UserName, @passDate = @ Passdate, @inOut = @inOutprint ' Send message successfully! ';then the result was first executed successfully, but the second time prompted Ims_srv_lnk to exist and could not be executed. Back to think about the code inside the connection
executed, SQL Manager will go to the procedure cache to fetch the corresponding query statement, ifProcedure cache does not have a corresponding query statement, SQL Manager compiles stored procedures and functions.
Procedure Cache: The execution plan is saved, and
To ensure that SQL server returns the correct value or has performance concerns, it intends to re-compile the execution plan without reusing the execution plan cached in the memory, it is called recompile ). Which of the following conditions can cause re-compilation of the stored p
1. Create with Try ... Stored procedure templates for catch Copy the following code, and then create a new query, you can write the SQL statement, after execution, a your own stored procedures are established! Use [DB]--set the corresponding databaseGOSETAnsi_nulls onGOSETQuoted_identifier onGO-- =====================
When sqlserver is started, I really want to run a stored procedure. Is there a way to automatically execute this stored procedure every time the SQLServer service is started?
When SQL server is started, I really want to run a
Problem Description:The company needs to make a report, according to the People organization tree, click on a node, the next direct child node display form application, according to form the status of the group.Implementation ideas:The first thing to do is to join the report of all child nodes by splicing Select SQL, and then return the results of the so-called stored p
When the server| stored procedure first used SQL Server 2005, it did not know how to save it after modifying the stored procedure.
I found the appropriate
])); Nodes. ADD (node); } } if (nodes. Count > 0) return nodes. ToArray (); return null; } Finally { Conn. Close (); } } 11. Get the contents of the stored procedure: Similar to "8. The index of the table is indexed by the SQL statement:EXEC sp_helptext '
CATCH block.RAISERROR (@ErrorMessage,--Message text.@ErrorSeverity,--Severity.@ErrorState-State.);
END CATCH
END
GO
BEGIN TRY
SELECT GETDATE ()
SELECT 1/0--evergreen divide by zero example!
END TRY
BEGIN CATCH
SELECT ' There is an error! ' + error_message ()
RETURN
END CATCH;
2. The function table that obtains the error message: The following system functions are valid in the CATCH block. Can be
When you first used SQL Server 2005, you didn't know how to save after you modified the stored procedure.
I found the appropriate stored procedure in the SQL
the parameter. All data types (including text, ntext, and image) can be used as parameters for stored procedures. However, the cursor data type can only be used for OUTPUT parameters. If the specified data type is cursor, the VARYING and OUTPUT keywords must also be specified. For more information about the data types and syntax provided by SQL Server, see data
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.