File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,9 +4,19 @@ Compare Difference In T-SQL Queries at Runtime
44![ CI Status] ( https://travis-ci.org/llouislu/tsql-diff.svg?branch=master ) ![ License] ( https://img.shields.io/badge/License-Apache%202.0-blue.svg )
55
66## Install
7- 1 . Download [ tSQLt] ( http://tsqlt.org/download/tsqlt/ ) and follow the install [ guide] ( https://tsqlt.org/user-guide/quick-start/ ) .
8- 2 . Go to [ release] ( https://github.com/llouislu/tsql-diff/releases ) and download the latest ** Release** version.
9- 3 . execute install.sql in your target database.
7+ 1 . Run the following SQL in your target database
8+ ``` sql
9+ EXEC sp_configure ' clr enabled' , 1 ;
10+ RECONFIGURE;
11+ EXEC sp_configure ' show advanced options' , 1
12+ RECONFIGURE;
13+ EXEC sp_configure ' clr strict security' , 0 ;
14+ RECONFIGURE;
15+ GO
16+ ```
17+ 2 . Download [ tSQLt] ( http://tsqlt.org/download/tsqlt/ ) and follow the install [ guide] ( https://tsqlt.org/user-guide/quick-start/ ) .
18+ 3 . Go to [ release] ( https://github.com/llouislu/tsql-diff/releases ) and download the latest ** Release** version.
19+ 4 . execute install.sql in your target database.
1020
1121## Uninstall
1222Execute this stored procedure.
You can’t perform that action at this time.
0 commit comments