Archive for August, 2009

Chapter 6 PROGRAMMING SQL SERVER 2000 333 Batches

Monday, August 17th, 2009

Chapter 6 PROGRAMMING SQL SERVER 2000 333 Batches Knowing how batches work is important for several reasons. Batches determine variable scope. This is covered again later, but you should always remember that a variable can only be used within the batch where it is declared. SQL Server compiles and runs scripts batch by batch. If you have a script with several batches in it, and one of the batches contains a syntax error, the rest of the batches do execute, but the statement in the batch that had an error does not execute. If one of the statements would cause a constraint violation, then that statement does- n t execute, but all the other statements in the batch do execute. Other runtime errors, such as arithmetic overflow errors, cause the batch to stop executing at that point, with all the preceding commands executed and none of the following commands executed. When you use tools such as Query Analyzer or the command-line equivalent, ISQL, the tools themselves send the statements to SQL Server in batches, one batch at a time. SQL Server then compiles the single batch, processes it, and returns for the next batch as necessary. The keyword GO, then, isn t a keyword used by SQL Server; it is actually used by the various tools to determine when batches start and stop. Batches control how certain statements execute. When you learn more about stored procedures later, in Chapter 9, you ll find that a stored procedure definition has to be in its own batch, and the stored procedure includes everything in the batch. This is an example of some rules you should know about batches: You can t add columns to a table and then reference the new columns with an UPDATE or INSERT within the same batch. The EXECUTE (or EXEC) statement isn t required if it s on the first executable line of the batch. You can t combine CREATE VIEW, CREATE PROCEDURE, CREATE RULE, CREATE TRIGGER, or CREATE DEFAULT statements in a batch. Now it s time to add a little flexibility to how you work inside batches. How can you handle counting rows or storing intermediate values? You can t. Yet. NOTE Working with System Tables This chapter makes heavy use of the sysobjects system table in examples of selecting data. Remember that this is a system table. You can select out of it all if you want, but don t insert or update any system table without a note from your mother. Doing so is a very good way to corrupt a database. So, using SELECT is okay, but nothing else.

If you looking for unlimited one inclusive web hosting plan please check web hosting plan website.

332 Part I EXAM PREPARATION INTRODUCTION One of

Sunday, August 16th, 2009

STUDY STRATEGIES . With SQL Server, the best

Saturday, August 15th, 2009

OUTLINE Scripts, Batches, and Transactions 332 Scripts 332

Saturday, August 15th, 2009

OBJECTIVES Manage result sets by using cursors and

Friday, August 14th, 2009

328 Part I EXAM PREPARATION A PPLY YOUR

Thursday, August 13th, 2009

Chapter 5 ADVANCED DATA RETRIEVAL AND MODIFICATION 327

Thursday, August 13th, 2009

326 Part I EXAM PREPARATION A PPLY YOUR

Wednesday, August 12th, 2009

Chapter 5 ADVANCED DATA RETRIEVAL AND MODIFICATION 325

Tuesday, August 11th, 2009

Chapter 5 ADVANCED DATA RETRIEVAL AND MODIFICATION 325

Tuesday, August 11th, 2009