Skip to content

Commit fdc26f7

Browse files
Merge pull request #232906 from linda33wj/main
Update required permission for Teradata scan
2 parents c248fea + e1af1e2 commit fdc26f7

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

articles/purview/register-scan-teradata-source.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: jingwang
66
ms.service: purview
77
ms.subservice: purview-data-map
88
ms.topic: how-to
9-
ms.date: 11/01/2022
9+
ms.date: 03/31/2023
1010
ms.custom: template-how-to, ignite-fall-2021
1111
---
1212

@@ -41,10 +41,21 @@ When setting up scan, you can choose to scan an entire Teradata server, or scope
4141

4242
### Required permissions for scan
4343

44-
Microsoft Purview supports basic authentication (username and password) for scanning Teradata. The Teradata user must have read access to system tables in order to access advanced metadata. For classification, user also needs to have read permission on the tables/views to retrieve sample data.
44+
Microsoft Purview supports basic authentication (username and password) for scanning Teradata. The user should have SELECT permission granted for every individual system table listed below:
45+
46+
```sql
47+
grant select on dbc.tvm to [user];
48+
grant select on dbc.dbase to [user];
49+
grant select on dbc.tvfields to [user];
50+
grant select on dbc.udtinfo to [user];
51+
grant select on dbc.idcol to [user];
52+
grant select on dbc.udfinfo to [user];
53+
```
4554

4655
To retrieve data types of view columns, Microsoft Purview issues a prepare statement for `select * from <view>` for each of the view queries and parse the metadata that contains the data type details for better performance. It requires the SELECT data permission on views. If the permission is missing, view column data types will be skipped.
4756

57+
For classification, user also needs to have read permission on the tables/views to retrieve sample data.
58+
4859
## Prerequisites
4960

5061
* An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).

0 commit comments

Comments
 (0)