Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Sagar1233
Contributor
Contributor

Data source indentification

How to identify data source details of the dashboard available in work environment, can we able to find the data source details from script whether the data coming from Excel, SQL, SAP or data lake.

Labels (2)
1 Reply
micheledenardi
Specialist II
Specialist II

Usually, when i have multiple data sources in the same final table i create a field [Data Source] in order to understand where the data are coming from.

 

Something like this:

 

FinalTable:
Load *,
  'ActualData.qvd' as [Data Source]
From ActualData.qvd(qvd);

Concatenate(FinalTable)
Load *
  'BudgetData.qvd' as [Data Source]
From BudgetData.qvd(qvd);

Concatenate(FinalTable)
Load *
  'ExcelData.xlsx' as [Data Source]
From ExcelData.xlsx (.....);

 

 

Michele De Nardi
If a post helps to resolve your issue, please accept it as a Solution.