Define COLLATION

Define Collation.

- Collation is the order that SQL Server uses for sorting or comparing the textual data.

There are three types of sort order:
1. Dictionary case sensitive.
2. Dictionary case insensitive.
3. Binary.

- It encodes the rules governing the proper use of characters for either language.
- It is used to store non-Unicode character data.
- You cannot specify a collation for character variables and parameters.
Where is users names and passwords stored in SQL Server?
They are stored in master db in the sysxlogins table.......
What is BCP?
It is utility used to copy huge data from tables and views without copy schema of the server object........
How can we move data along with schema of the server object?
We can copy data along schema using DTS package........
Post your comment