mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-16 10:58:30 -05:00
[Table Designer] support hash index and column store index (#1672)
This commit is contained in:
@@ -8861,6 +8861,46 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
}
|
||||
}
|
||||
|
||||
public static string IndexIsHashPropertyDescription
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.IndexIsHashPropertyDescription);
|
||||
}
|
||||
}
|
||||
|
||||
public static string IndexIsHashPropertyTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.IndexIsHashPropertyTitle);
|
||||
}
|
||||
}
|
||||
|
||||
public static string IndexBucketCountPropertyDescription
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.IndexBucketCountPropertyDescription);
|
||||
}
|
||||
}
|
||||
|
||||
public static string IndexBucketCountPropertyTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.IndexBucketCountPropertyTitle);
|
||||
}
|
||||
}
|
||||
|
||||
public static string HashIndexGroupTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.HashIndexGroupTitle);
|
||||
}
|
||||
}
|
||||
|
||||
public static string TableDesignerColumnsDisplayValueTitle
|
||||
{
|
||||
get
|
||||
@@ -8869,6 +8909,102 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
}
|
||||
}
|
||||
|
||||
public static string ColumnStoreIndexNamePropertyTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ColumnStoreIndexNamePropertyTitle);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ColumnStoreIndexNamePropertyDescription
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ColumnStoreIndexNamePropertyDescription);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ColumnStoreIndexDescriptionPropertyTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ColumnStoreIndexDescriptionPropertyTitle);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ColumnStoreIndexDescriptionPropertyDescription
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ColumnStoreIndexDescriptionPropertyDescription);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ColumnStoreIndexIsClusteredPropertyDescription
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ColumnStoreIndexIsClusteredPropertyDescription);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ColumnStoreIndexIsClusteredPropertyTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ColumnStoreIndexIsClusteredPropertyTitle);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ColumnStoreIndexFilterPredicatePropertyDescription
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ColumnStoreIndexFilterPredicatePropertyDescription);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ColumnStoreIndexFilterPredicatePropertyTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ColumnStoreIndexFilterPredicatePropertyTitle);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ColumnStoreIndexColumnsPropertyDescription
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ColumnStoreIndexColumnsPropertyDescription);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ColumnStoreIndexColumnsGroupTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ColumnStoreIndexColumnsGroupTitle);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ColumnStoreIndexAddColumn
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ColumnStoreIndexAddColumn);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ColumnStoreIndexColumnPropertyName
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ColumnStoreIndexColumnPropertyName);
|
||||
}
|
||||
}
|
||||
|
||||
public static string TableDesignerDeleteColumnConfirmationMessage
|
||||
{
|
||||
get
|
||||
@@ -8925,6 +9061,30 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
}
|
||||
}
|
||||
|
||||
public static string TableDesignerColumnStoreIndexesTableTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.TableDesignerColumnStoreIndexesTableTitle);
|
||||
}
|
||||
}
|
||||
|
||||
public static string TableDesignerColumnStoreIndexObjectType
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.TableDesignerColumnStoreIndexObjectType);
|
||||
}
|
||||
}
|
||||
|
||||
public static string AddNewColumnStoreIndexLabel
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.AddNewColumnStoreIndexLabel);
|
||||
}
|
||||
}
|
||||
|
||||
public static string TableDesignerEdgeConstraintsTabTitle
|
||||
{
|
||||
get
|
||||
@@ -9830,6 +9990,26 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
return Keys.GetString(Keys.ComputedColumnNeedToBePersistedInForeignKeyRuleDescription, columnName, foreignKeyName);
|
||||
}
|
||||
|
||||
public static string HashIndexNotSupportedInNonMemoryOptimizedTableRuleDescription(string indexName)
|
||||
{
|
||||
return Keys.GetString(Keys.HashIndexNotSupportedInNonMemoryOptimizedTableRuleDescription, indexName);
|
||||
}
|
||||
|
||||
public static string HashIndexMustHaveBucketCountRuleDescription(string indexName)
|
||||
{
|
||||
return Keys.GetString(Keys.HashIndexMustHaveBucketCountRuleDescription, indexName);
|
||||
}
|
||||
|
||||
public static string ColumnCanOnlyAppearOnceInNonClusteredColumnStoreIndexRuleDescription(string columnName, string indexName, int rowNumber)
|
||||
{
|
||||
return Keys.GetString(Keys.ColumnCanOnlyAppearOnceInNonClusteredColumnStoreIndexRuleDescription, columnName, indexName, rowNumber);
|
||||
}
|
||||
|
||||
public static string NonClusteredColumnStoreIndexMustHaveColumnsRuleDescription(string indexName)
|
||||
{
|
||||
return Keys.GetString(Keys.NonClusteredColumnStoreIndexMustHaveColumnsRuleDescription, indexName);
|
||||
}
|
||||
|
||||
public static string SqlProjectModelNotFound(string projectUri)
|
||||
{
|
||||
return Keys.GetString(Keys.SqlProjectModelNotFound, projectUri);
|
||||
@@ -13346,9 +13526,60 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string IndexFilterPredicatePropertyTitle = "IndexFilterPredicatePropertyTitle";
|
||||
|
||||
|
||||
public const string IndexIsHashPropertyDescription = "IndexIsHashPropertyDescription";
|
||||
|
||||
|
||||
public const string IndexIsHashPropertyTitle = "IndexIsHashPropertyTitle";
|
||||
|
||||
|
||||
public const string IndexBucketCountPropertyDescription = "IndexBucketCountPropertyDescription";
|
||||
|
||||
|
||||
public const string IndexBucketCountPropertyTitle = "IndexBucketCountPropertyTitle";
|
||||
|
||||
|
||||
public const string HashIndexGroupTitle = "HashIndexGroupTitle";
|
||||
|
||||
|
||||
public const string TableDesignerColumnsDisplayValueTitle = "TableDesignerColumnsDisplayValueTitle";
|
||||
|
||||
|
||||
public const string ColumnStoreIndexNamePropertyTitle = "ColumnStoreIndexNamePropertyTitle";
|
||||
|
||||
|
||||
public const string ColumnStoreIndexNamePropertyDescription = "ColumnStoreIndexNamePropertyDescription";
|
||||
|
||||
|
||||
public const string ColumnStoreIndexDescriptionPropertyTitle = "ColumnStoreIndexDescriptionPropertyTitle";
|
||||
|
||||
|
||||
public const string ColumnStoreIndexDescriptionPropertyDescription = "ColumnStoreIndexDescriptionPropertyDescription";
|
||||
|
||||
|
||||
public const string ColumnStoreIndexIsClusteredPropertyDescription = "ColumnStoreIndexIsClusteredPropertyDescription";
|
||||
|
||||
|
||||
public const string ColumnStoreIndexIsClusteredPropertyTitle = "ColumnStoreIndexIsClusteredPropertyTitle";
|
||||
|
||||
|
||||
public const string ColumnStoreIndexFilterPredicatePropertyDescription = "ColumnStoreIndexFilterPredicatePropertyDescription";
|
||||
|
||||
|
||||
public const string ColumnStoreIndexFilterPredicatePropertyTitle = "ColumnStoreIndexFilterPredicatePropertyTitle";
|
||||
|
||||
|
||||
public const string ColumnStoreIndexColumnsPropertyDescription = "ColumnStoreIndexColumnsPropertyDescription";
|
||||
|
||||
|
||||
public const string ColumnStoreIndexColumnsGroupTitle = "ColumnStoreIndexColumnsGroupTitle";
|
||||
|
||||
|
||||
public const string ColumnStoreIndexAddColumn = "ColumnStoreIndexAddColumn";
|
||||
|
||||
|
||||
public const string ColumnStoreIndexColumnPropertyName = "ColumnStoreIndexColumnPropertyName";
|
||||
|
||||
|
||||
public const string TableDesignerDeleteColumnConfirmationMessage = "TableDesignerDeleteColumnConfirmationMessage";
|
||||
|
||||
|
||||
@@ -13370,6 +13601,15 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string TableDesignerGraphTableTypeNone = "TableDesignerGraphTableTypeNone";
|
||||
|
||||
|
||||
public const string TableDesignerColumnStoreIndexesTableTitle = "TableDesignerColumnStoreIndexesTableTitle";
|
||||
|
||||
|
||||
public const string TableDesignerColumnStoreIndexObjectType = "TableDesignerColumnStoreIndexObjectType";
|
||||
|
||||
|
||||
public const string AddNewColumnStoreIndexLabel = "AddNewColumnStoreIndexLabel";
|
||||
|
||||
|
||||
public const string TableDesignerEdgeConstraintsTabTitle = "TableDesignerEdgeConstraintsTabTitle";
|
||||
|
||||
|
||||
@@ -13604,6 +13844,18 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string ComputedColumnNeedToBePersistedInForeignKeyRuleDescription = "ComputedColumnNeedToBePersistedInForeignKeyRuleDescription";
|
||||
|
||||
|
||||
public const string HashIndexNotSupportedInNonMemoryOptimizedTableRuleDescription = "HashIndexNotSupportedInNonMemoryOptimizedTableRuleDescription";
|
||||
|
||||
|
||||
public const string HashIndexMustHaveBucketCountRuleDescription = "HashIndexMustHaveBucketCountRuleDescription";
|
||||
|
||||
|
||||
public const string ColumnCanOnlyAppearOnceInNonClusteredColumnStoreIndexRuleDescription = "ColumnCanOnlyAppearOnceInNonClusteredColumnStoreIndexRuleDescription";
|
||||
|
||||
|
||||
public const string NonClusteredColumnStoreIndexMustHaveColumnsRuleDescription = "NonClusteredColumnStoreIndexMustHaveColumnsRuleDescription";
|
||||
|
||||
|
||||
public const string TableDesignerConfirmationText = "TableDesignerConfirmationText";
|
||||
|
||||
|
||||
|
||||
@@ -4847,10 +4847,78 @@ The Query Processor estimates that implementing the following index could improv
|
||||
<value>Filter Predicate</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="IndexIsHashPropertyDescription" xml:space="preserve">
|
||||
<value>Whether the index is a hash index</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="IndexIsHashPropertyTitle" xml:space="preserve">
|
||||
<value>Is Hash</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="IndexBucketCountPropertyDescription" xml:space="preserve">
|
||||
<value>Bucket count of the hash index, note the value will always automatically round up to the next power of 2. </value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="IndexBucketCountPropertyTitle" xml:space="preserve">
|
||||
<value>Bucket Count</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="HashIndexGroupTitle" xml:space="preserve">
|
||||
<value>Hash Index</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="TableDesignerColumnsDisplayValueTitle" xml:space="preserve">
|
||||
<value>Columns</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ColumnStoreIndexNamePropertyTitle" xml:space="preserve">
|
||||
<value>Name</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ColumnStoreIndexNamePropertyDescription" xml:space="preserve">
|
||||
<value>Name of the column store index</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ColumnStoreIndexDescriptionPropertyTitle" xml:space="preserve">
|
||||
<value>Description</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ColumnStoreIndexDescriptionPropertyDescription" xml:space="preserve">
|
||||
<value>Description of the column store index</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ColumnStoreIndexIsClusteredPropertyDescription" xml:space="preserve">
|
||||
<value>Whether the column store index is clustered.</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ColumnStoreIndexIsClusteredPropertyTitle" xml:space="preserve">
|
||||
<value>Is Clustered</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ColumnStoreIndexFilterPredicatePropertyDescription" xml:space="preserve">
|
||||
<value>Filter predicate of the column store index</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ColumnStoreIndexFilterPredicatePropertyTitle" xml:space="preserve">
|
||||
<value>Filter Predicate</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ColumnStoreIndexColumnsPropertyDescription" xml:space="preserve">
|
||||
<value>Columns in this column store index</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ColumnStoreIndexColumnsGroupTitle" xml:space="preserve">
|
||||
<value>Columns</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ColumnStoreIndexAddColumn" xml:space="preserve">
|
||||
<value>Add Column</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ColumnStoreIndexColumnPropertyName" xml:space="preserve">
|
||||
<value>Column</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="TableDesignerDeleteColumnConfirmationMessage" xml:space="preserve">
|
||||
<value>Removing a column will also remove it from the indexes and foreign keys. Are you sure you want to continue?</value>
|
||||
<comment></comment>
|
||||
@@ -4879,6 +4947,18 @@ The Query Processor estimates that implementing the following index could improv
|
||||
<value>None</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="TableDesignerColumnStoreIndexesTableTitle" xml:space="preserve">
|
||||
<value>Column Store Indexes</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="TableDesignerColumnStoreIndexObjectType" xml:space="preserve">
|
||||
<value>Column Store Index</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="AddNewColumnStoreIndexLabel" xml:space="preserve">
|
||||
<value>New Column Store Index</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="TableDesignerEdgeConstraintsTabTitle" xml:space="preserve">
|
||||
<value>Edge Constraints</value>
|
||||
<comment></comment>
|
||||
@@ -5205,6 +5285,26 @@ The Query Processor estimates that implementing the following index could improv
|
||||
<value>The computed column with name '{0}' has to be persisted to be part of the foreign key '{1}'.</value>
|
||||
<comment>.
|
||||
Parameters: 0 - columnName (string), 1 - foreignKeyName (string) </comment>
|
||||
</data>
|
||||
<data name="HashIndexNotSupportedInNonMemoryOptimizedTableRuleDescription" xml:space="preserve">
|
||||
<value>Hash index with name '{0}' is not supported on a non memory-optimized table.</value>
|
||||
<comment>.
|
||||
Parameters: 0 - indexName (string) </comment>
|
||||
</data>
|
||||
<data name="HashIndexMustHaveBucketCountRuleDescription" xml:space="preserve">
|
||||
<value>Hash index '{0}' does not have a bucket count.</value>
|
||||
<comment>.
|
||||
Parameters: 0 - indexName (string) </comment>
|
||||
</data>
|
||||
<data name="ColumnCanOnlyAppearOnceInNonClusteredColumnStoreIndexRuleDescription" xml:space="preserve">
|
||||
<value>Column with name '{0}' has already been added to the non-clustered column store index '{1}'. Row number: {2}.</value>
|
||||
<comment>.
|
||||
Parameters: 0 - columnName (string), 1 - indexName (string), 2 - rowNumber (int) </comment>
|
||||
</data>
|
||||
<data name="NonClusteredColumnStoreIndexMustHaveColumnsRuleDescription" xml:space="preserve">
|
||||
<value>Non-clustered column store index '{0}' does not have any columns associated with it.</value>
|
||||
<comment>.
|
||||
Parameters: 0 - indexName (string) </comment>
|
||||
</data>
|
||||
<data name="TableDesignerConfirmationText" xml:space="preserve">
|
||||
<value>I have read the summary and understand the potential risks.</value>
|
||||
|
||||
@@ -2296,7 +2296,24 @@ IndexIncludedColumnsAddColumn = Add Column
|
||||
IndexIncludedColumnsColumnPropertyName = Column
|
||||
IndexFilterPredicatePropertyDescription = Filter predicate of the index
|
||||
IndexFilterPredicatePropertyTitle = Filter Predicate
|
||||
IndexIsHashPropertyDescription = Whether the index is a hash index
|
||||
IndexIsHashPropertyTitle = Is Hash
|
||||
IndexBucketCountPropertyDescription = Bucket count of the hash index, note the value will always automatically round up to the next power of 2.
|
||||
IndexBucketCountPropertyTitle = Bucket Count
|
||||
HashIndexGroupTitle = Hash Index
|
||||
TableDesignerColumnsDisplayValueTitle = Columns
|
||||
ColumnStoreIndexNamePropertyTitle = Name
|
||||
ColumnStoreIndexNamePropertyDescription = Name of the column store index
|
||||
ColumnStoreIndexDescriptionPropertyTitle = Description
|
||||
ColumnStoreIndexDescriptionPropertyDescription = Description of the column store index
|
||||
ColumnStoreIndexIsClusteredPropertyDescription = Whether the column store index is clustered.
|
||||
ColumnStoreIndexIsClusteredPropertyTitle = Is Clustered
|
||||
ColumnStoreIndexFilterPredicatePropertyDescription = Filter predicate of the column store index
|
||||
ColumnStoreIndexFilterPredicatePropertyTitle = Filter Predicate
|
||||
ColumnStoreIndexColumnsPropertyDescription = Columns in this column store index
|
||||
ColumnStoreIndexColumnsGroupTitle = Columns
|
||||
ColumnStoreIndexAddColumn = Add Column
|
||||
ColumnStoreIndexColumnPropertyName = Column
|
||||
TableDesignerDeleteColumnConfirmationMessage = Removing a column will also remove it from the indexes and foreign keys. Are you sure you want to continue?
|
||||
TableDesignerGraphTableGroupTitle = Graph Table
|
||||
TableDesignerGraphTableTypeTitle = Type
|
||||
@@ -2304,6 +2321,9 @@ TableDesignerGraphTableTypeDescription = Specifies the table type.
|
||||
TableDesignerGraphTableTypeEdge = Edge
|
||||
TableDesignerGraphTableTypeNode = Node
|
||||
TableDesignerGraphTableTypeNone = None
|
||||
TableDesignerColumnStoreIndexesTableTitle = Column Store Indexes
|
||||
TableDesignerColumnStoreIndexObjectType = Column Store Index
|
||||
AddNewColumnStoreIndexLabel = New Column Store Index
|
||||
TableDesignerEdgeConstraintsTabTitle = Edge Constraints
|
||||
TableDesignerEdgeConstraintObjectType = Edge Constraint
|
||||
TableDesignerEdgeConstraintNamePropertyDescription = Name of the constraint.
|
||||
@@ -2382,6 +2402,10 @@ ColumnCanOnlyAppearOnceInIndexIncludedColumnsRuleDescription(string columnName,
|
||||
ColumnCannotDuplicateWitIndexKeyColumnsRuleDescription(string columnName, string indexName, int rowNumber) = Included column with name '{0}' has already been part of the index '{1}' and it cannot be included. Row number: {2}.
|
||||
ComputedColumnNeedToBePersistedAndNotNullInPrimaryKeyRuleDescription(string columnName) = The computed column with name '{0}' has to be persisted and not nullable to be part of a primary key.
|
||||
ComputedColumnNeedToBePersistedInForeignKeyRuleDescription(string columnName, string foreignKeyName) = The computed column with name '{0}' has to be persisted to be part of the foreign key '{1}'.
|
||||
HashIndexNotSupportedInNonMemoryOptimizedTableRuleDescription(string indexName) = Hash index with name '{0}' is not supported on a non memory-optimized table.
|
||||
HashIndexMustHaveBucketCountRuleDescription(string indexName) = Hash index '{0}' does not have a bucket count.
|
||||
ColumnCanOnlyAppearOnceInNonClusteredColumnStoreIndexRuleDescription(string columnName, string indexName, int rowNumber) = Column with name '{0}' has already been added to the non-clustered column store index '{1}'. Row number: {2}.
|
||||
NonClusteredColumnStoreIndexMustHaveColumnsRuleDescription(string indexName) = Non-clustered column store index '{0}' does not have any columns associated with it.
|
||||
TableDesignerConfirmationText = I have read the summary and understand the potential risks.
|
||||
|
||||
############################################################################
|
||||
|
||||
@@ -6359,6 +6359,130 @@ The Query Processor estimates that implementing the following index could improv
|
||||
<target state="new">The computed column with name '{0}' has to be persisted to be part of the foreign key '{1}'.</target>
|
||||
<note>.
|
||||
Parameters: 0 - columnName (string), 1 - foreignKeyName (string) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HashIndexNotSupportedInNonMemoryOptimizedTableRuleDescription">
|
||||
<source>Hash index with name '{0}' is not supported on a non memory-optimized table.</source>
|
||||
<target state="new">Hash index with name '{0}' is not supported on a non memory-optimized table.</target>
|
||||
<note>.
|
||||
Parameters: 0 - indexName (string) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HashIndexMustHaveBucketCountRuleDescription">
|
||||
<source>Hash index '{0}' does not have a bucket count.</source>
|
||||
<target state="new">Hash index '{0}' does not have a bucket count.</target>
|
||||
<note>.
|
||||
Parameters: 0 - indexName (string) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="IndexIsHashPropertyDescription">
|
||||
<source>Whether the index is a hash index</source>
|
||||
<target state="new">Whether the index is a hash index</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="IndexIsHashPropertyTitle">
|
||||
<source>Is Hash</source>
|
||||
<target state="new">Is Hash</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="IndexBucketCountPropertyDescription">
|
||||
<source>Bucket count of the hash index, note the value will always automatically round up to the next power of 2. </source>
|
||||
<target state="new">Bucket count of the hash index, note the value will always automatically round up to the next power of 2. </target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="IndexBucketCountPropertyTitle">
|
||||
<source>Bucket Count</source>
|
||||
<target state="new">Bucket Count</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="HashIndexGroupTitle">
|
||||
<source>Hash Index</source>
|
||||
<target state="new">Hash Index</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnStoreIndexNamePropertyTitle">
|
||||
<source>Name</source>
|
||||
<target state="new">Name</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnStoreIndexNamePropertyDescription">
|
||||
<source>Name of the column store index</source>
|
||||
<target state="new">Name of the column store index</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnStoreIndexDescriptionPropertyTitle">
|
||||
<source>Description</source>
|
||||
<target state="new">Description</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnStoreIndexDescriptionPropertyDescription">
|
||||
<source>Description of the column store index</source>
|
||||
<target state="new">Description of the column store index</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnStoreIndexIsClusteredPropertyDescription">
|
||||
<source>Whether the column store index is clustered.</source>
|
||||
<target state="new">Whether the column store index is clustered.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnStoreIndexIsClusteredPropertyTitle">
|
||||
<source>Is Clustered</source>
|
||||
<target state="new">Is Clustered</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnStoreIndexFilterPredicatePropertyDescription">
|
||||
<source>Filter predicate of the column store index</source>
|
||||
<target state="new">Filter predicate of the column store index</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnStoreIndexFilterPredicatePropertyTitle">
|
||||
<source>Filter Predicate</source>
|
||||
<target state="new">Filter Predicate</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnStoreIndexColumnsPropertyDescription">
|
||||
<source>Columns in this column store index</source>
|
||||
<target state="new">Columns in this column store index</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnStoreIndexColumnsGroupTitle">
|
||||
<source>Columns</source>
|
||||
<target state="new">Columns</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnStoreIndexAddColumn">
|
||||
<source>Add Column</source>
|
||||
<target state="new">Add Column</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnStoreIndexColumnPropertyName">
|
||||
<source>Column</source>
|
||||
<target state="new">Column</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ColumnCanOnlyAppearOnceInNonClusteredColumnStoreIndexRuleDescription">
|
||||
<source>Column with name '{0}' has already been added to the non-clustered column store index '{1}'. Row number: {2}.</source>
|
||||
<target state="new">Column with name '{0}' has already been added to the non-clustered column store index '{1}'. Row number: {2}.</target>
|
||||
<note>.
|
||||
Parameters: 0 - columnName (string), 1 - indexName (string), 2 - rowNumber (int) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TableDesignerColumnStoreIndexesTableTitle">
|
||||
<source>Column Store Indexes</source>
|
||||
<target state="new">Column Store Indexes</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TableDesignerColumnStoreIndexObjectType">
|
||||
<source>Column Store Index</source>
|
||||
<target state="new">Column Store Index</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="AddNewColumnStoreIndexLabel">
|
||||
<source>New Column Store Index</source>
|
||||
<target state="new">New Column Store Index</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="NonClusteredColumnStoreIndexMustHaveColumnsRuleDescription">
|
||||
<source>Non-clustered column store index '{0}' does not have any columns associated with it.</source>
|
||||
<target state="new">Non-clustered column store index '{0}' does not have any columns associated with it.</target>
|
||||
<note>.
|
||||
Parameters: 0 - indexName (string) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TableDesignerConfirmationText">
|
||||
<source>I have read the summary and understand the potential risks.</source>
|
||||
|
||||
Reference in New Issue
Block a user