Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
ironpink
Frequent Visitor

List of object that use a table

Hi all,
in my company there's a DB with hundred of tabled and i added some external DB (that and i've linked). Moreover I made dozens of reports using both DB.
Now I need to change some externad DB and I need to know which are the object that reads info from a certain table that i've to change.
So, there's a chance:

  1. to get a list/DB/anything that of the object in the reports whit the source of the data?
  2. the list of the oblects that reads data from a certain DB?

thank you
Raffaele

2 REPLIES 2
v-shex-msft
Community Support
Community Support

Hi @ironpink,

I think these requirements should more suitable to processed on your database side. (you can use queries or logs to check these history operations on your database) Power bi works to get data from your database, it did not check if the target table is mapping/linking from an external server.

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
amitchandak
Super User
Super User

@ironpink , Install DAX studio and connect with it using external tool option power bi

 

Run this query

SELECT 
 [OBJECT_TYPE] AS [Object Type], 
 [TABLE] AS [Object's Table], 
 [OBJECT] AS [Object], 
 [REFERENCED_OBJECT] AS [Referenced Object], 
 [REFERENCED_OBJECT_TYPE] AS [Referenced Object Type] 
FROM $SYSTEM.DISCOVER_CALC_DEPENDENCY 
WHERE [REFERENCED_TABLE] = 'Sales'
ORDER BY [OBJECT_TYPE]

 

REFERENCED_TABLETable name 

 

Right-click on the table and use show object that referenced

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.