You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ On Azure SQL Server you will need to install the sp_Develop stored procedure in
14
14
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.
15
15
16
16
```sql
17
-
EXECUTEdbo.sp_Develop
17
+
EXECdbo.sp_Develop
18
18
```
19
19
20
20
[Check out the parameter section for more options](#Parameter-Explanations)
@@ -62,7 +62,7 @@ GO
62
62
63
63
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.
64
64
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.
66
66
67
67
Refer to the example checks below and each comment for its use.
68
68
@@ -89,7 +89,7 @@ EXEC dbo.sp_Develop
89
89
,@SkipCheckTable = N'DevelopCheckToSkip';
90
90
```
91
91
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:
0 commit comments