Skip to main content
Skip table of contents

Query Plan and Data Lineage

You are looking at an older version of the documentation. The latest version is found here.

SYSADMIN.getDataLineage

This procedure returns a data lineage plan for the specified SQL query in XML format.

SQL
SYSADMIN.getDataLineage(IN "sql" string NOT NULL) RETURNS (dataLineage xml NOT NULL)

It has the following parameters:

ParameterDescription
sqlString representing the SQL query to build the plan for
dataLineageData lineage plan in XML format

SYSADMIN.getDataLineageWithRelationsOnly

This procedure returns the data lineage for a given query.

SQL
SYSADMIN.getDataLineageWithRelationsOnly(IN "sql" string NOT NULL, IN "level" integer, OUT targetSchema string NOT NULL, OUT targetTableName string NOT NULL, OUT targetColumnName string NOT NULL, OUT sourceSchema string, OUT sourceTableName string, OUT sourceColumnName string)

It has the following parameters:

ParameterDescription
sqlString representing the SQL query to find relations
dataLineage

Maximum depth until which the lineage is returned. If set to NULL, the whole lineage is returned.

Example of usage:

SQL
SELECT * FROM SYSADMIN.getDataLineageWithRelationsOnly('SELECT id FROM views.view_test_datalineage') a;

SYSLOG.getQueryLogPlan

This procedure returns a query plan for the specified entry in the SYSLOG.QueryLogs system table in XML format.

SQL
SYSLOG.getQueryLogPlan(IN logId biginteger NOT NULL, OUT queryPlan string RESULT)

It takes the following parameters:

ParameterDescription
logIdID of the entry in the SYSLOG.QueryLogs system table
queryPlanQuery plan in XML format

SYSLOG.getQueryLogDataLineage

This procedure returns a data lineage plan for the specified entry in the SYSLOG.QueryLogs system table in XML format.

SQL
SYSLOG.getQueryLogDataLineage(IN logId biginteger NOT NULL, OUT dataLineage string RESULT)

It takes the following parameters:

ParameterDescription
logIdID of the entry in the SYSLOG.QueryLogs system table
dataLineageData lineage plan in XML format
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.