Skip to content

Commit 1dc65f6

Browse files
author
Kevin Martin
committed
update doc
1 parent 7d1d79a commit 1dc65f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ On Azure SQL Server you will need to install the sp_Develop stored procedure in
1414
After installing the [sp_Develop](https://github.com/EmergentSoftware/SQL-Server-Assess/blob/master/sp_Develop.sql) stored procedure open SSMS and run in the database you wish to check for database development best practices.
1515

1616
```sql
17-
EXECUTE dbo.sp_Develop
17+
EXEC dbo.sp_Develop
1818
```
1919

2020
[Check out the parameter section for more options](#Parameter-Explanations)
@@ -62,7 +62,7 @@ GO
6262

6363
The CheckId column refers to the list below. You can also scroll to the right in the [sp_Develop](https://github.com/EmergentSoftware/SQL-Server-Assess/blob/master/sp_Develop.sql) 'Results' tab and look at the 'CheckId' column to see the number of the one you want to skip.
6464

65-
You can also copy the TSQL script in the 'SkipCheckTSQL' column found in the 'Results' tab to insert that record into your skip check table.
65+
You can also copy the TSQL script in the 'SkipCheckTSQL' column found in the 'Results' tab to ```INSERT``` that record into your skip check table.
6666

6767
Refer to the example checks below and each comment for its use.
6868

@@ -89,7 +89,7 @@ EXEC dbo.sp_Develop
8989
,@SkipCheckTable = N'DevelopCheckToSkip';
9090
```
9191

92-
You can also centralize this skip checks table by putting it in a central location, setting up a linked server pointing to your central location, and then using the @SkipChecksServer parameter:
92+
You can also centralize this skip check table by putting it in a central location, setting up a linked server pointing to your central location, and then using the @SkipChecksServer parameter:
9393

9494
```sql
9595
EXEC dbo.sp_Develop

0 commit comments

Comments
 (0)