Collections:
Compilation Error in a Statement Batch in SQL Server
What happens to a Transact-SQL statement batch if there is a compilation error?
✍: FYIcenter.com
If a Transact-SQL statement batch has multiple statements, and one of them has compilation error, none of the statements in the batch will be executed. The tutorial exercise below gives you some good examples:
SELECT getdate(); SELECT getdates(); SELECT getdate(); ---------------------------- Msg 195, Level 15, State 10, Line 2 'getdates' is not a recognized built-in function name.
As you can see, the compilation error on the second statement stops the execution of all statements.
⇒ SQL Server Transact-SQL Language References
⇐ Statement Batch in SQL Server Transact-SQL
2017-05-29, 2416🔥, 0💬
Popular Posts:
What is SQL Server Transact-SQL (T-SQL)? SQL Server Transact-SQL, also called T-SQL, is an extension...
How To Generate CREATE TABLE Script on an Existing Table in SQL Server? If you want to know how an e...
How To Count Rows with the COUNT(*) Function in SQL Server? If you want to count the number of rows,...
How To Break Query Output into Pages in MySQL? If you have a query that returns hundreds of rows, an...
What Happens If the UPDATE Subquery Returns Multiple Rows in SQL Server? If a subquery is used in a ...