Hi
I am trying to determine if my sql db is setup as Unicode or Non-Unicode.
I ran the following command: SP_HELPSORT
Following is the output:
Latin1-General, case-insensitive, accent-sensitive, kanatype-insensitive, width-insensitive for Unicode Data, SQL Server Sort Order 52 on Code Page 1252 for non-Unicode Data
I also ran the following command: select SERVERPROPERTY('Collation')
Following is the output: SQL_Latin1_General_CP1_CI_AS
Using the above outputs, how do I definitively tell if my DB is setup initially as Unicode or non-unicode?
I appreciate your help!!
Thanks