Skip to content

Commit 584dea7

Browse files
committed
Acrolinx
1 parent 9e4f062 commit 584dea7

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

docs/relational-databases/statistics/create-statistics.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,21 +31,21 @@ Before creating statistics with the CREATE STATISTICS statement, verify that the
3131

3232
You can list up to 32 columns per statistics object.
3333

34-
You cannot drop, rename, or alter the definition of a table column that is defined in a filtered statistics predicate.
34+
You can't drop, rename, or alter the definition of a table column that is defined in a filtered statistic predicate.
3535

3636
## Permissions
3737

3838
Requires that the user be the table or indexed view owner, or a member of one of the following roles: **sysadmin** fixed server role, **db_owner** fixed database role, or the **db_ddladmin** fixed database role.
3939

4040
### Use SQL Server Management Studio
4141

42-
1. In **Object Explorer**, Select the plus sign to expand the database in which you want to create a new statistic.
42+
1. In **Object Explorer**, select the plus sign to expand the database in which you want to create a new statistic.
4343

4444
1. Select the plus sign to expand the **Tables** folder.
4545

4646
1. Select the plus sign to expand the table in which you want to create a new statistic.
4747

48-
1. Right-select the **Statistics** folder and select **New Statistics...**.
48+
1. Right-click the **Statistics** folder and select **New Statistics...**.
4949

5050
The following properties show on the **General** page in the **New Statistics on Table** *table_name* dialog box.
5151

@@ -59,9 +59,9 @@ Requires that the user be the table or indexed view owner, or a member of one of
5959
|**Size**|Displays the size of the data type for each column.|
6060
|**Identity**|Indicates an identity column when it is checked.|
6161
|**Allow NULLs**|Indicates whether the column accepts NULL values.|
62-
|**Add**|Add additional columns from the table to the statistics grid.|
62+
|**Add**|Add more columns from the table to the statistics grid.|
6363
|**Remove**|Remove the selected column from the statistics grid.|
64-
|**Move Up**|Move the selected column to an earlier location in the statistics grid. The location in the grid can substantially impact the usefulness of the statistics.|
64+
|**Move Up**|Move the selected column to an earlier location in the statistics grid. The location in the grid can substantially affect the usefulness of the statistics.|
6565
|**Move Down**|Move the selected column to a later location in the statistics grid.|
6666
|**Statistics for these columns were last updated**|Indicates how old the statistics are. Statistics are more valuable when they are current. Update statistics after large changes to the data or after adding atypical data. Statistics for tables that have a consistent distribution of data need to be updated less frequently.|
6767
|**Update statistics for these columns**|Check to update the statistics when the dialog box is closed.|
@@ -72,7 +72,7 @@ Requires that the user be the table or indexed view owner, or a member of one of
7272
| --- | --- |
7373
|**Filter Expression**|Defines which data rows to include in the filtered statistics. For example, `Production.ProductSubcategoryID IN ( 1, 2, 3 )`|
7474

75-
1. In the **New Statistics on Table** *table_name* dialog box, on the **General** page, Select **Add**.
75+
1. In the **New Statistics on Table** *table_name* dialog box, on the **General** page, select **Add**.
7676

7777
The following properties show in the **Select Columns** dialog box. This information is read-only.
7878

@@ -84,15 +84,15 @@ Requires that the user be the table or indexed view owner, or a member of one of
8484
|**Identity**|Indicates an identity column when checked.|
8585
|**Allow NULLs**|Indicates whether the column accepts NULL values.|
8686

87-
1. In the **Select Columns** dialog box, select the check box or check boxes of each column for which you want to create a statistic and then Select **OK**.
87+
1. In the **Select Columns** dialog box, select the check box or check boxes of each column for which you want to create a statistic and then select **OK**.
8888

8989
1. In the **New Statistics on Table** *table_name* dialog box, select **OK**.
9090

9191
## Use Transact-SQL
9292

9393
1. In **Object Explorer**, connect to an instance of [!INCLUDE[ssDE](../../includes/ssde-md.md)].
9494

95-
1. On the Standard bar, Select **New Query**.
95+
1. On the Standard bar, select **New Query**.
9696

9797
1. Copy and paste the following example into the query window and select **Execute**.
9898

0 commit comments

Comments
 (0)