Viewing 2 posts - 1 through 2 (of 2 total)
This might help!
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=32921&SearchTerms=CSV
cheers
September 5, 2004 at 9:51 pm
#521797
From SQL BOL
Rename a column
This example renames the contact title column in the customers table to title.
EXEC sp_rename 'customers.[contact title]', 'title', 'COLUMN'
August 18, 2004 at 12:14 am
#519487