Preparing to run the MS SQL Server collector
Setting up pre-requisites for running the collector
Make sure that the machine from where you are running the collector meets the following hardware and software requirements.
Item | Requirement |
---|---|
Hardware | |
RAM | 8 GB |
CPU | 2 Ghz processor |
Software | |
Docker | Click here to get Docker. |
Java Runtime Environment | OpenJDK 17 is supported and available here. |
data.world specific objects | |
Dataset | You must have a ddw-catalogs (or other) dataset set up to hold your catalog files when you are done running the collector. |
Setting up permissions
The user you are using to run the collector needs at least SELECT ON DATABASE permission to access the metadata. Users need additional VIEW DEFINITION permission to harvest column-level lineage from views.
To create a user and set the permissions:
Create a new login <loginName> with password <password>.
CREATE LOGIN '<loginName>' WITH PASSWORD = '<password>';
Create a new user.
CREATE USER <user> FOR LOGIN <loginName>;
Grant SELECT ON DATABASE permissions to harvest catalog resources such as tables, views, and columns.
GRANT SELECT ON DATABASE :: <databaseName> TO <user>;
Grant VIEW DEFINITION permissions to harvest column-level lineage from views.
GRANT VIEW DEFINITION ON DATABASE :: <databaseName> TO <user>;
Obtaining the server information for Azure Synapse
To find the fully qualified server name:
Navigate to the Azure portal.
Navigate to the Azure Synapse workspace you want to connect to.
Click on Overview.
The full server name is listed as Dedicated SQL endpoint. For example <synapse-workspace>.sql.azuresynapse.net