GregC
El Presidente
- Joined
- Feb 21, 2006
- Messages
- 3,218
I have a database that was set up as case sensitive and needs to be changed to case insensitive. The original collation for the db was SQL_Latin1_General_CP1_CS_AS and I need to change it to SQL_Latin1_General_CP1_CI_AS. I already did an (alter database <dbname> collate SQL_Latin1_General_CP1_CI_AS) to change the database default but now I need to change the collations in the text and varchar fields in all the tables (approx 350 tables) to the same. Is there a simple script or statement that can be run to do this? There are multiple databases on this server and only my db needs to be changed. The others cannot be changed.