By default - what is the character encoding set for a database in Microsoft SQL Server?
How can I see the current character encoding in SQL Server?
You can see collation settings for each table like the following code:
SELECT t.name TableName, c.name ColumnName, collation_name FROM sys.columns c INNER JOIN sys.tables t on c.object_id = t.object_id where t.name = 'name of table';