Forum Discussion
Extract datasources from a PBI File
- 1 year ago
Hi Robert14358 ,
You should be able to get this information from DAX Studio. Just connect to your report model and run one of the following queries as per your requirement:
1. SELECT * FROM $SYSTEM.TMSCHEMA_TABLES
To get the names of all tables as they appear in the report and other general info related to them (such as Hidden, ModifiedTime, etc.)
2. SELECT * FROM $SYSTEM.TMSCHEMA_PARTITIONS
This should give you the tables along with the source query and other detailed information.
Hope it helps!
Hi Robert14358 ,
You should be able to get this information from DAX Studio. Just connect to your report model and run one of the following queries as per your requirement:
1. SELECT * FROM $SYSTEM.TMSCHEMA_TABLES
To get the names of all tables as they appear in the report and other general info related to them (such as Hidden, ModifiedTime, etc.)
2. SELECT * FROM $SYSTEM.TMSCHEMA_PARTITIONS
This should give you the tables along with the source query and other detailed information.
Hope it helps!