search
HomeDatabaseMysql TutorialHow to write and optimize SQL Server stored procedures
How to write and optimize SQL Server stored proceduresMar 19, 2017 am 10:51 AM
phpphp tutorialVideo tutorial

[Introduction] In the development process of database, we often encounter complex business logic and operations on the database. At this time, SP will be used to encapsulate the database operations. If there are many SPs in the project and there are no certain standards for writing, it will make it difficult to maintain the system in the future and make it difficult to understand the logic of the large SPs. In addition, during the development process of the database, complex problems will often be encountered. For business logic and database operations, SP will be used to encapsulate database operations at this time. If the project has many SPs and the writing is not standardized, it will make it difficult to maintain the system in the future and make it difficult to understand the logic of the large SPs. In addition, if the amount of data in the database is large or the project has high performance requirements for the SPs, you will encounter It is a problem of optimization, otherwise the speed may be very slow. Through personal experience, an optimized SP is even hundreds of times more efficient than a SP with poor performance.

Details:
1. If developers use Tables or Views from other libraries, they must create Views in the current library to implement cross-library operations. It is best not to use them directly. "databse.dbo.table_name", because sp_depends cannot display the cross-database table or view used by the SP, which is inconvenient for verification.

2. Before submitting SP, developers must have used set showplan on to analyze the query plan and conduct their own query optimization checks.

3. To improve program operation efficiency and optimize applications, you should pay attention to the following points during the SP writing process:


(a) SQL usage specifications :

i. Try to avoid large transaction operations and use the holdlock clause with caution to improve system concurrency.


ii. Try to avoid repeatedly accessing the same table or tables, especially tables with a large amount of data. You can consider extracting data into a temporary table based on conditions first, and then making a connection.


iii. Try to avoid using cursors, because cursors are less efficient. If the data operated by the cursor exceeds 10,000 rows, it should be rewritten; if a cursor is used, try to avoid cursor loops. Then perform the table join operation.


iv. Pay attention to the writing of where clauses. The order of statements must be considered. The order of conditional clauses should be determined according to the index order and range size. Try to make the field order consistent with the index order and range. From big to small.


v. Do not perform functions, arithmetic operations or other expression operations on the left side of "=" in the where clause, otherwise the system may not be able to use the index correctly.


vi. Try to use exists instead of select count(1) to determine whether a record exists. The count function is only used when counting all rows in the table, and count(1) is more convenient than count(*). Efficient.


vii. Try to use ">=" instead of ">".


viii. Pay attention to the replacement between some or clauses and union clauses


ix. Pay attention to the data types of connections between tables and avoid differences between different types of data. Connection.


x. Pay attention to the relationship between parameters and data types in stored procedures.


xi. Pay attention to the data volume of insert and update operations to prevent conflicts with other applications. If the amount of data exceeds 200 data pages (400k), the system will upgrade the lock, and the page-level lock will be upgraded to a table-level lock.


(b) Index usage specifications:

i. The creation of indexes should be considered in conjunction with the application. It is recommended that large OLTP tables should not exceed 6 indexes.


ii. Use index fields as query conditions as much as possible, especially clustered indexes. If necessary, you can use index index_name to force the index to be specified


iii. Avoid pairing Perform table scan when querying large tables, and consider creating new indexes if necessary.


iv. When using an index field as a condition, if the index is a joint index, then the first field in the index must be used as the condition to ensure that the system uses the index, otherwise the The index will not be used.


v. Pay attention to index maintenance, periodically rebuild indexes, and recompile stored procedures.


(c) Tempdb usage specifications:

i. Try to avoid using distinct, order by, group by, having, join, cumute , because these statements will increase the burden on tempdb.


ii. Avoid frequent creation and deletion of temporary tables and reduce the consumption of system table resources.


iii. When creating a temporary table, if the amount of data inserted at one time is large, you can use select into instead of create table to avoid logs and improve speed; if the amount of data is not large, in order to ease the system For table resources, it is recommended to create table first and then insert.


iv. If the temporary table has a large amount of data and needs to be indexed, the process of creating the temporary table and indexing should be placed in a separate sub-stored procedure to ensure that the system can easily It is better to use the index of the temporary table.


v. If temporary tables are used, all temporary tables must be explicitly deleted at the end of the stored procedure. First truncate the table, and then drop the table. This can avoid long-term locking of system tables. .


vi. Use caution when querying and modifying connections between large temporary tables and other large tables to reduce the burden on system tables, because this operation will use the tempdb system table multiple times in one statement.


(d) Reasonable algorithm use:


Based on the SQL optimization technology mentioned above and the SQL optimization content in the ASE Tuning manual, combined with practical applications, multiple algorithms are used for comparison to obtain the method that consumes the least resources and is the most efficient. Specific ASE tuning commands are available: set statistics io on, set statistics time on, set showplan on, etc.

The above is the detailed content of How to write and optimize SQL Server stored procedures. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.