January 13, 2009 at 8:09 pm
Hello all!
How can I list all the table's collation in one Database?
Some of the columns in the tables have a diff collation with the Database.
I would like to list it out and correct them.
Please help!!!!!
Thanks
KK
January 14, 2009 at 2:54 am
select object_name(object_id) as tablename, name as columnname,collation_name
from sys.columns
where collation_name is not null
order by object_name(object_id),column_id
____________________________________________________
Deja View - The strange feeling that somewhere, sometime you've optimised this query before
How to get the best help on a forum
http://www.sqlservercentral.com/articles/Best+Practices/61537Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy