Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7655791
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T12:36:15+00:00 2026-05-31T12:36:15+00:00

I am new to SQL Server, and I am sorry if there is an

  • 0

I am new to SQL Server, and I am sorry if there is an obvious solution to my question but I can’t seem to find it.

I am looking to generate a report (or list) of all the data sources and their individual dependencies on an SQL Server 2008 R2 (reporting server).

I know that I can access each individual data source to get a list of all the items that are dependent on it. I have done this in the past but it is time consuming.

Is there a way to get a report that would display all the data sources and their dependent items?

Thanks in advance,

Marwan

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T12:36:17+00:00Added an answer on May 31, 2026 at 12:36 pm

    The following (which was modified from what beargle posted earlier) does what I was looking for. This will list all the data sources by their actual name, and all their dependent items:

    SELECT
        C2.Name AS Data_Source_Name,
        C.Name AS Dependent_Item_Name,
        C.Path AS Dependent_Item_Path
    FROM
        ReportServer.dbo.DataSource AS DS
            INNER JOIN
        ReportServer.dbo.Catalog AS C
            ON
                DS.ItemID = C.ItemID
                    AND
                DS.Link IN (SELECT ItemID FROM ReportServer.dbo.Catalog
                            WHERE Type = 5) --Type 5 identifies data sources
            FULL OUTER JOIN
        ReportServer.dbo.Catalog C2
            ON
                DS.Link = C2.ItemID
    WHERE
        C2.Type = 5
    ORDER BY
        C2.Name ASC,
        C.Name ASC;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this is a basic question, but I can't seem to find an
Question: The new SQL Server 2008 database returns me values formatted English (date/float). Is
I am new to SQL Server Management Studio and am wondering: is there is
I am new to SQL server, please can any body help me out how
I'm loading a SQL Server 2000 database into my new SQL Server 2005 instance
I need to create an entirely new Sql Server 2008 database and want to
I'm new to SQL Server Reporting Services, and was wondering the best way to
I am new to SQL Server, and I have been tasked with setting permissions
I am new to SQL Server 2008 fill factor, as mentioned here in SQL
I'm brand new to SQL Server 2008, and have some newbie questions about the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.