Available in...
Big Data Platform
Cloud API Services Platform
Cloud Big Data Platform
Cloud Data Fabric
Cloud Data Management Platform
Data Fabric
Data Management Platform
Data Services Platform
MDM Platform
Real-Time Big Data Platform
Procedure
- Open the Data Explorer perspective in the Studio.
- In the Connections view, right-click a database connection and select New SQL Editor.
-
- If you want the identifier of one report, enter the following SQL query
in the editor:
use <datamart database name>; /* get report UUID */ select REP_UUID, REP_LABEL from tdq_analysis where REP_LABEL = '<report name>';
Important: Use the exact data mart and report names in the query. - If you want the identifier of several reports, enter the following SQL
query in the editor:
use talend_dq61; /* get report UUID */ select REP_UUID, REP_LABEL from tdq_analysis where REP_LABEL like 'c%'
In this example, you want to access the talend_dq61 data mart and get the identifiers of all the reports which start with the letter c .
- If you want the identifier of one report, enter the following SQL query
in the editor:
- Execute the SQL query.