Scroll Bar


you can participate with latest Interview Questions here. Use this mail ID (bhanudba15@gmail.com) to send Your Questions.

COLLATION

What is Collation in SQL Server ?
1. A collation specifies the bit representation of each character in a data set.
2. Collation is also determine the rules that sort and compare the data.
3. SQL Server supports storing objects that have different collations in a single database.
4. For non-Unicode columns, the collation setting specifies the code page for the data and which characters can be represented.
6. Data that is moved between non-Unicode columns must be converted from the source code page to the destination code page.

The result of T-SQL statement can vary when the statement is run in the context of different databases that have different collation settings. If it is possible, to use a standardized collation for your organization.
This way, you do not have to explicitly specify the collation in every character or Unicode expression. If you must work with objects that have different collation and code page settings, code your queries to consider the rules of collation precedence.

2. What are the options associated with collation in SQL Server ?
The options associated with a collation are :
1. Case Sensitivity.
2. Accent Sensitivity.
3. Kana-Sensitivity.
4 Width Sensitivity.

These options are specified by appending them to the collation name.

For example, this collation Japanese_Bushu_Kakusu_100_CS_AS_KS_WS is case-sensitive, accent-sensitive, Kana-sensitive, and width-sensitive.

1. Case-sensitive (_CS) : Distinguishes between uppercase and lowercase letters. If selected, lowercase letters sort ahead of their uppercase versions. If this option is not selected, the collation will be case-insensitive. That is, SQL Server considers the uppercase and lowercase versions of letters to be identical for sorting purposes. You can explicitly select case insensitivity by specifying _CI.

2. Accent-sensitive (_AS) : Distinguishes between accented and unaccented characters. For example, 'a' is not equal to 'αΊ₯'. If this option is not selected, the collation will be accent-insensitive. That is, SQL Server considers the accented and unaccented versions of letters to be identical for sorting purposes. You can explicitly select accent insensitivity by specifying _AI.

3. Kana-sensitive (_KS) : Distinguishes between the two types of Japanese kana characters: Hiragana and Katakana.If this option is not selected, the collation is Kana-insensitive. That is, SQL Server considers Hiragana and Katakana characters to be equal for sorting purposes. Omitting this option is the only method of specifying Kana-insensitivity.

4. Width-sensitive (_WS) : Distinguishes between a single-byte character and the same character when represented as a double-byte character. If this option is not selected, SQL Server considers the single-byte and double-byte representation of the same character to be identical for sorting purposes. Omitting this option is the only method of specifying width-insensitivity.

3. What are the supported level of Collation in SQL Server ?
Setting collations are supported at the following levels of an instance of SQL Server:

Server-level collations :
The default server collation is set during SQL Server setup, and also becomes the default collation of the system databases and all user databases. Note that Unicode-only collations cannot be selected during SQL Server setup because they are not supported as server-level collations.

After a collation has been assigned to the server, you cannot change the collation except by exporting all database objects and data, rebuilding the master database, and importing all database objects and data. Instead of changing the default collation of an instance of SQL Server, you can specify the desired collation at the time that you create a new database or database column.

Database-level collations :
When a database is created or modified, you can use the COLLATE clause of the CREATE DATABASE or ALTER DATABASE statement to specify the default database collation. If no collation is specified, the database is assigned the server collation.
You cannot change the collation of system databases except by changing the collation for the server.

The database collation is used for all metadata in the database, and is the default for all string columns, temporary objects, variable names, and any other strings used in the database. When you change the collation of a user database, know that there is the potential for collation conflicts when queries in the database access temporary tables. Temporary tables are always stored in the tempdb system database, which will use the collation for the instance. Queries that compare character data between the user database and tempdb may fail if the collations cause a conflict in evaluating the character data. You can resolve this by specifying the COLLATE clause in the query.

Column-level collations :
When you create or alter a table, you can specify collations for each character-string column by using the COLLATE clause. If no collation is specified, the column is assigned the default collation of the database.

Expression-level collations :
Expression-level collations are set when a statement is run, and they affect the way a result set is returned. This enables ORDER BY sort results to be locale-specific. Use a COLLATE clause such as the following to implement expression-level collations:

4. What are the collation rules in SQL Server ?
The collation label of a simple expression that references only one character string object is the collation label of the referenced object.

The collation label of a complex expression that references two operand expressions with the same collation label is the collation label of the operand expressions.

The collation label of the final result of a complex expression that references two operand expressions with different collations is based on the following rules:

1.Explicit takes precedence over implicit. Implicit takes precedence over Coercible-default:
Explicit > Implicit > Coercible-default

2.Combining two Explicit expressions that have been assigned different collations generates an error:
Explicit X + Explicit Y = Error

3.Combining two Implicit expressions that have different collations yields a result of No-collation:
Implicit X + Implicit Y = No-collation

4.Combining an expression with No-collation with an expression of any label, except Explicit collation (see the following rule), yields a result that has the No-collation label:
No-collation + anything = No-collation

5.Combining an expression with No-collation with an expression that has an Explicit collation, yields an expression with an Explicit label:
No-collation + Explicit X = Explicit



5 what is collation in sql server?

The physical storage of character strings in SQL Server is controlled by collations. A collation specifies the bit patterns that represent each character and the rules by which characters are sorted and compared.

6. How to rename SQL Server?
sp_dropserver
GO
sp_addserver , local
GO
Remote Logins - If the computer has any remote logins, running sp_dropserver might generate an error similar to the following:

Server: Msg 15190, Level 16, State 1, Procedure sp_dropserver, Line 44
There are still remote logins for the server 'SERVER1'.

To resolve the error, you must drop remote logins for this server.
To drop remote logins
·         For a default instance, run the following procedure:

sp_dropremotelogin old_name
GO
·         For a named instance, run the following procedure:

sp_dropremotelogin 'old_name\instancename'

GO

No comments:

Post a Comment

DisableRC