Skip to content

Commit 94f5554

Browse files
Update overview.md
1 parent b853031 commit 94f5554

1 file changed

Lines changed: 21 additions & 7 deletions

File tree

docs2/pages/getting-started/overview.md

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,34 @@ SELECT SQLNET::New('x+y').ValueInt('x', 1).ValueInt('y', 2).EvalInt() as Result
1616
## Installing
1717
Download the <a href="/download">SQL Script</a>
1818

19+
## SQL Server 2017 - prerequisite
20+
1. Open the script SQLNET-Cert.sql
21+
2. Run the script
22+
3. Continue the install with next step
23+
24+
## SQL Server 2008 or higher
25+
1. Open the script SQLNET-Install.sql
26+
2. Replace '[DATABASE_NAME]' with your database name
27+
3. Run the script
28+
29+
## Note
30+
- For EXTERNAL_ACCESS PERMISSION
31+
- Uncomment "ALTER DATABASE [DATABASE_NAME] SET TRUSTWORTHY ON"
32+
- Uncomment "WITH PERMISSION_SET = EXTERNAL_ACCESS"
33+
- Comment "WITH PERMISSION_SET = SAFE"
34+
35+
- For UNSAFE PERMISSION
36+
- Uncomment "ALTER DATABASE [DATABASE_NAME] SET TRUSTWORTHY ON"
37+
- Uncomment "WITH PERMISSION_SET = UNSAFE"
38+
- Comment "WITH PERMISSION_SET = SAFE"
39+
1940
## Requirements
2041

2142
### Minimus Requirements
2243

2344
- SQL Server 2012+
2445
- SAFE Permission (SQL CLR)
2546

26-
### SQL Server 2017
27-
- clr strict security disabled
28-
29-
### EXTERNAL_ACCESS & UNSAFE permission
30-
- database must be set TRUSTWORTHY ON
31-
32-
3347
### Find your solutions:
3448

3549
- Dynamic Arithmetic Expression

0 commit comments

Comments
 (0)