Previous versions of SQL Server have featured the ability to create grid result sets from queries so that one can easily copy and paste the data into another application. Unfortunately, the column headers were not copied, so you then would have to go into the application and add the header by hand. SQL Server 2005 provides a new option that will allow you to copy the column headers with the data. Here is how to activate this handy option…
1. Open SQL Server 2005 Management Studio.
2. Click Query and select Query Options.
3. In the Query Options dialog box, expand the Results setting in the left pane.
4. Click Grid.
5. Check the Include column headers when copying or saving the results checkbox.
6. Click OK.
Now when you copy your query results, the column headers will be copied along with the data.