Skip to main content

SQL Server support

Connector features

Data catalog

Dataedo documents metadata of the following objects:

  • Tables
  • Views
  • Procedures
  • Functions
  • Sequences
  • Jobs
  • Job steps
  • Linked servers

For more details, go to Connector specification section.

Image title

Data Lineage

For SQL Server, Dataedo supports both manual and automatic lineage. Automatic lineage is currently available for views and stored procedures - read more about automatic lineage for SQL Server. Dataedo will parse views and show the source of each of the columns:

Image title

Data Profiling

You can profile data in tables and views to get a grasp of the data sitting in your database:

Image title

Relationships (PK/FK) Tester

With Dataedo, you can check if selected columns are viable candidates to create a relationship between tables:

Image title

Linked Servers

The SQL Server Connector imports linked servers into Linked Sources, capturing the connection details with the name assigned to each Linked Server. The import process does not automatically assign the linked source to objects, nor does it automatically associate the source database with the linked server. These assignments can be made manually by the user.

Important note

If a view is created using a Linked Servers connection object, the user must assign the linked server and parse the script to establish lineage.

How to connect

  1. Server name - IP address or host name under which the database is available.
  2. Port - Port number under which the database is available.
  3. Authentication - Way of authentication to be used when connecting to SQL Server:
    • Windows Authentication - Authentication that will use the currently logged-in Windows user. Does not require providing any other information.
    • SQL Server Authentication - SQL authentication. Requires SQL login:
      • User
      • Password
    • Azure Active Directory - Password - Authentication with Azure AD login. Requires:
      • User - AD username
      • Password - Password for the provided username
    • Azure Active Directory - Integrated - This authentication will use the AD account currently logged in Windows.
    • Azure Active Directory - Universal with MFA - Authentication through an external Azure AD service. You can optionally provide a username.
  4. Connection mode - Specifies if the connection will be encrypted.
    • Encrypted connection if possible - Least restrictive mode. If encryption is possible, data will be encrypted. Otherwise, it will be sent in plain text.
    • Force encryption, trust server certificate - Dataedo will not connect unless the connection can be encrypted. The SSL certificate on the server will not be verified.
    • Force encryption, require trusted certificate - Most restrictive mode. Dataedo will connect only if the connection can be encrypted and the SSL certificate on the server is valid.
  5. Database - Database name. For some types of authentication, it is possible to list available databases by clicking the three-dot icon [...]. To import Jobs from SQL Server, select < SQL Server Agent Objects >.
Image title

Connector specification

Supported versions

2008, 2008 R2, 2012, 2014, 2016, 2017, 2019, 2022.

Supported editions

LocalDB, Express, Developer, Standard, Business Intelligence, and Enterprise.

Parallel Data Warehouse

Parallel Data Warehouse is not currently supported.

Imported objects

ObjectImported as
TableTable
ViewView
ProcedureProcedure
FunctionFunction
SequenceSequence
JobTasks/Jobs
Job stepsTasks/Jobs
Linked ServerLinked Sources
Database triggerNot imported

Tables metadata

MetadataImported as
SchemaSchema
NameName
DescriptionDescription
Location (external table)Location (hidden)
ColumnsTable columns
   NameName
   Data typeData type
   Null/Not nullNullable
   DescriptionDescription
Foreign KeysRelationships
   Constraint tableFK Table
   Referenced tablePK Table
   NameRelationship name
   DescriptionDescription
Primary/Unique keysUnique keys
   NameKey name
   ColumnsColumns
   DescriptionDescription
TriggersTriggers
   DefinitionScript
   NameName
   ActionWhen
   DescriptionDescription
IndexesNot imported

Views metadata

MetadataImported as
SchemaSchema
NameName
DescriptionDescription
ColumnsTable columns
   NameName
   Data typeData type
   Null/Not nullNullable
   DescriptionDescription
   DefinitionScript

Procedures metadata

MetadataImported as
SchemaSchema
NameName
DescriptionDescription
DefinitionScript
ParametersInput/Output
   DescriptionDescription
   NameName
   IN/OUTMode
   Data typeData type

Functions metadata

MetadataImported as
SchemaSchema
NameName
DescriptionDescription
DefinitionScript
ParametersInput/Output
  DescriptionDescription
   NameName
   IN/OUTMode
   Data typeData type

Sequences metadata

MetadataImported as
SchemaSchema
NameName
DescriptionDescription
DefinitionScript
ParametersInput/Output
   NameName
   IN/OUTMode
   Data typeData type

Jobs metadata

MetadataImported as
NameName
DescriptionDescription
Create dateCreate date
Modify dateModify date

Jobs steps metadata

MetadataImported as
NameName
CommandScript
Create dateCreate date
Modify dateModify date
Output fileInput/Output
   IN/OUTMode
   Data typeData type
   DestinationDescription

Linked Servers

MetadataImported as
NameName
ProviderConnection details
HostConnection details
Data sourceConnection details
LocationConnection details
CatalogConnection details
Remote nameConnection details

Descriptions & extended properties

Dataedo reads and writes extended properties from/to the following SQL Server objects:

ObjectReadWrite back
Tables
  Column
  Primary keys
  Column comments
  Unique keys
  Foreign keys
  Triggers
View
  Columns
Function comments
  Parameters
Stored procedures
  Parameters
Sequences
Jobs

Data profiling

Datedo supports the following data profiling in PostgreSQL:

ProfileSupport
Table row count
Table sample data
Column distribution (unique, non-unique, null, empty values)
Min, max values
Average
Variance
Standard deviation
Min-max span
Number of distinct values
Top 10/100/1000 values
10 random values

Read more about profiling in a Data Profiling documentation.

Data Lineage

SourceMethodVersion
Views - object levelFrom dependencies
Views - object levelFrom SQL parsing
Views - column levelFrom SQL parsing
Stored Procedures - object levelFrom SQL parsing
Stored Procedures - column levelFrom SQL parsing
Polybase External Tables - object levelFrom sys.external_data_sources and sys.external_tables views
dbtdbt connector

Column-level data lineage is retrieved using Dataedo SQL parser. Read more about capabilities of Transact-SQL SQL parser

See also: dbt, SSIS

Limitations

Following schema elements currently are not supported:

  • Check constraints
  • Non unique indexes
  • Unique indexes on views (planned)
  • Column level lineage for views with recursive CTE

Required access level

Importing database schema requires a certain access level in the documented database.

Granting VIEW DEFINITION permission in the documented database to a new user will allow them to import all objects from the database. Alternatively, you can grant this permission only for specific objects you want to document.

Following objects are accessed during the schema import process:

  • INFORMATION_SCHEMA.COLUMNS
  • INFORMATION_SCHEMA.KEY_COLUMN_USAGE
  • INFORMATION_SCHEMA.PARAMETERS
  • INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS
  • INFORMATION_SCHEMA.ROUTINES
  • INFORMATION_SCHEMA.ROUTINE_COLUMNS
  • INFORMATION_SCHEMA.TABLES
  • INFORMATION_SCHEMA.VIEWS
  • sys.all_objects
  • sys.columns
  • sys.computed_columns
  • sys.extended_properties
  • sys.foreign_key_columns
  • sys.indexes
  • sys.index_columns
  • sys.objects
  • sys.procedures
  • sys.servers
  • sys.sql_dependencies
  • sys.sql_expression_dependencies
  • sys.sql_modules
  • sys.tables
  • sys.views
  • sysobjects
  • sysusers
  • sys.sequences
  • sys.schemas
  • sys.types

Importing jobs and jobs steps uses views from msdb System Database. Requires membership in the public role, due to usage of sp_executesql.

Following objects are accessed during jobs import process (user needs Select permission on those tables to import jobs) :

  • dbo.sysjobs
  • dbo.sysjobssteps
  • dbo.syscategories - used for extended properties
  • sys.server_principals - used for extended properties

Importing Linked Servers require additional access:

  • master.sys.servers
  • master.sys.linked_logins

Learn more

Connect to SQL Server