Minor: Docs - MSSQL Usage & Lineage Requirements (#14746)

This commit is contained in:
Mayur Singal 2024-01-17 11:41:50 +05:30 committed by GitHub
parent eadda0e3f1
commit 9694e19599
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 36 additions and 0 deletions

View File

@ -57,6 +57,15 @@ CREATE USER Mary WITH PASSWORD = '********';
-- Grant SELECT on table
GRANT SELECT TO Mary;
```
### Usage & Lineage consideration
To perform the query analysis for Usage and Lineage computation, we fetch the query logs from `sys.dm_exec_cached_plans`, `sys.dm_exec_query_stats` & `sys.dm_exec_sql_text` system tables. To access these tables your user must have `VIEW SERVER STATE` privilege.
```sql
GRANT VIEW SERVER STATE TO YourUser;
```
### For Remote Connection
#### 1. SQL Server running

View File

@ -57,6 +57,15 @@ CREATE USER Mary WITH PASSWORD = '********';
-- Grant SELECT on table
GRANT SELECT TO Mary;
```
### Usage & Lineage consideration
To perform the query analysis for Usage and Lineage computation, we fetch the query logs from `sys.dm_exec_cached_plans`, `sys.dm_exec_query_stats` & `sys.dm_exec_sql_text` system tables. To access these tables your user must have `VIEW SERVER STATE` privilege.
```sql
GRANT VIEW SERVER STATE TO YourUser;
```
### Python Requirements
To run the MSSQL ingestion, you will need to install:

View File

@ -57,6 +57,15 @@ CREATE USER Mary WITH PASSWORD = '********';
-- Grant SELECT on table
GRANT SELECT TO Mary;
```
### Usage & Lineage consideration
To perform the query analysis for Usage and Lineage computation, we fetch the query logs from `sys.dm_exec_cached_plans`, `sys.dm_exec_query_stats` & `sys.dm_exec_sql_text` system tables. To access these tables your user must have `VIEW SERVER STATE` privilege.
```sql
GRANT VIEW SERVER STATE TO YourUser;
```
### For Remote Connection
#### 1. SQL Server running

View File

@ -57,6 +57,15 @@ CREATE USER Mary WITH PASSWORD = '********';
-- Grant SELECT on table
GRANT SELECT TO Mary;
```
### Usage & Lineage consideration
To perform the query analysis for Usage and Lineage computation, we fetch the query logs from `sys.dm_exec_cached_plans`, `sys.dm_exec_query_stats` & `sys.dm_exec_sql_text` system tables. To access these tables your user must have `VIEW SERVER STATE` privilege.
```sql
GRANT VIEW SERVER STATE TO YourUser;
```
### Python Requirements
To run the MSSQL ingestion, you will need to install: