is there anyway to change the collation on all of the fields in a table at once. without alterting all of the field column names seperatly. is there a better way?? this is what i'm doing
go
ALTER TABLE table1 ALTER COLUMN column1
char(2) COLLATE SQL_Latin1_General_CP1255_CI_AS NULL
go
ALTER TABLE table1 ALTER COLUMN column2
char(15) COLLATE SQL_Latin1_General_CP1255_CI_AS NULL
...........................
go
ALTER TABLE table1 ALTER COLUMN column1
char(2) COLLATE SQL_Latin1_General_CP1255_CI_AS NULL
go
ALTER TABLE table1 ALTER COLUMN column2
char(15) COLLATE SQL_Latin1_General_CP1255_CI_AS NULL
...........................