Skip to content

Commit 33cf96f

Browse files
authored
add database configuration
1 parent d2ae7da commit 33cf96f

1 file changed

Lines changed: 13 additions & 3 deletions

File tree

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff 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
1222
Execute this stored procedure.

0 commit comments

Comments
 (0)