17.07.2015 Views

Defensive Database Programming - Red Gate Software

Defensive Database Programming - Red Gate Software

Defensive Database Programming - Red Gate Software

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Chapter 6: Common Problems with Data IntegrityBarcode ,WeightInPounds)VALUES ( 'Flashlight' ,'Camping Gear' ,'234567' ,1) ;UPDATE dbo.ItemsSET Barcode = Barcode + '9' ;SELECT ItemLabel ,OldBarcode ,NewBarcodeFROM dbo.ItemBarcodeChangeLog ;-- roll back to restore test dataROLLBACK ;debugging output: data before updateItemLabelBarcode------------------------------ ------------------------------Lamp 123457Flashlight 234567debugging output: data after updateItemLabelBarcode------------------------------ ------------------------------Lamp 1234579Flashlight 2345679old and new barcode as stored in variablesOldBarcodeNewBarcode-------------------- --------------------234567 2345679197

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!