Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to list all the databases/Schema/tablenames used in SSRS Reprts' datasets.

Status
Not open for further replies.

BeeTrees

IS-IT--Management
Nov 6, 2017
5
CA
Hi All,


I was able to query all the reports and associated datasource and datasets and or command text even the fields. But is there any way i can get list of databases/Schema/tablenames used in SSRS Reprts' datasets using script. OR is there any third party tool to do this

Thanks
 
Fave you tried something like this?

Code:
select * from sys.databases
Select * From sys.tables
Select * From sys.Schemas

-George
Microsoft SQL Server MVP
My Blogs
SQLCop
twitter
"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
Did you mean that you need a list of the tables that are actually used as part of the datasets that make up the current reports that you have created?

Simi
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top