Update collation-functions-collationproperty-transact-sql.md#566
Merged
v-shils merged 2 commits intoMicrosoftDocs:livefrom Apr 23, 2018
Merged
Update collation-functions-collationproperty-transact-sql.md#566v-shils merged 2 commits intoMicrosoftDocs:livefrom
v-shils merged 2 commits intoMicrosoftDocs:livefrom
Conversation
Text revisions to tighten and optimize the reading flow of the material.
Contributor
|
@fbsolo : Thanks for your contribution! The author, @edmacauley, has been notified to review your proposed change. |
Contributor
|
Thank you for your contributions @fbsolo #sign-off |
srutzky
added a commit
to srutzky/sql-docs
that referenced
this pull request
Feb 27, 2019
…sql.md 1. Removed SQL Server version number from intro / summary. Behavior of this function does not vary between versions of SQL Server. 2. Improved wording of "LCID" definition: Defining LCID as LCID didn't give the reader any new information. 3. Improved wording of "Comparison" definition: A) Removed the word "case" (added by @fbsolo on 2018-04-23 via PR MicrosoftDocs#566 ) as it should not have been added. Properties cannot be case-sensitive. "Case" is a property that can be either sensitive or insensitive. B) added collation variations that have all sensitivities enabled. Unique variations for "everything-sensitive" collations found using the following query: SELECT DISTINCT SUBSTRING(col.[name], PATINDEX(N'%[_][BC][IS]%', col.[name]), 100) AS [Sensitivities] FROM sys.fn_helpcollations() col WHERE CONVERT(INT, COLLATIONPROPERTY(col.[name], N'ComparisonStyle')) = 0 ORDER BY [Sensitivities]; /* _BIN _BIN2 _CS_AS_KS_WS _CS_AS_KS_WS_SC _CS_AS_KS_WS_VSS */ 4. Improved wording of "Version" definition. The "derived from the collation ID version field" clause is awkward and has meaning to so few people that it really just confuses people. 5. Added "Base data type" to each property (based on format use in ( https://docs.microsoft.com/en-us/sql/t-sql/functions/serverproperty-transact-sql ). Data types discovered using the following query: SELECT SQL_VARIANT_PROPERTY(COLLATIONPROPERTY(N'Hebrew_100_CS_AS', N'CodePage'), 'basetype'), SQL_VARIANT_PROPERTY(COLLATIONPROPERTY(N'Hebrew_100_CS_AS', N'LCID'), 'basetype'), SQL_VARIANT_PROPERTY(COLLATIONPROPERTY(N'Hebrew_100_CS_AS', N'ComparisonStyle'), 'basetype'), SQL_VARIANT_PROPERTY(COLLATIONPROPERTY(N'Hebrew_100_CS_AS', N'Version'), 'basetype'); -- int int int tinyint
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Text revisions to tighten and optimize the reading flow of the material.