Collections:
Statement Batch in SQL Server Transact-SQL
What is statement batch in SQL Server Transact-SQL?
✍: FYIcenter.com
A statement batch is a group of one or more Transact-SQL statements sent at the same time
from an application to SQL Server for execution.
SQL Server compiles the statements of a batch into a single executable unit,
called an execution plan. The statements in the execution plan are then executed one at a time.
How to define and send a statement batch to SQL Server is depending on the client application you are using. For example:
Remember that "GO" is not a Transact-SQL statement. "GO" is a command of the client tool.
⇒ Compilation Error in a Statement Batch in SQL Server
⇐ Comments in SQL Server Transact-SQL Statements
2017-05-29, 2493🔥, 0💬
Popular Posts:
How to set database to be READ_ONLY in SQL Server? Databases in SQL Server have two update options: ...
How To Create a Dynamic Cursor with the DYNAMIC Option in SQL Server Transact-SQL? If the underlying...
How To Verify Your PHP Installation in MySQL? PHP provides two execution interfaces: Command Line In...
What Is SQL*Plus in Oracle? SQL*Plus is an interactive and batch query tool that is installed with e...
What Is ISAM in MySQL? ISAM (Indexed Sequential Access Method) was developed by IBM to store and ret...