In previous versions, anytime you wanted to insert multiple rows into a table with a T-SQL script, you would have done something like this:
Insert into MyTable (Field1, Field2)However, with SQL Server 2008, you can now do this:
Values ('ABC',123)
Insert into MyTable (Field1, Field2)
Values ('DEF',456)
Insert into MyTable (Field1, Field2)
Values ('ABC',123),('DEF',456)
Working with a growing data mart, I do a lot of scripted inserts, so this definitely makes my life a little simpler!
peace