Using Raiser's Edge data with Tableau

Options
Does anyone use the Tableau data analysis tool to create reports of their Raiser's Edge data?  We have started to use Tableau and we are trying to connect it directly to our Raiser's Edge database server but we are not sure what steps we need to follow to make this happen.  Any info you could provide to us would be greatly appreciated!! 
Tagged:

Comments

  • Have you had any luck with this? I just started using Tableau (what a powerful tool!!!), and I would love to connect it live to our RE database. If you've made any headway, please share! :)
  • Are you using Tableau Server or the desktop version? I only have the desktop version, with no hopes of going to server because of HIPAA concerns. There is a company called Concourse (https://www.concoursehost.com/tableau/) that provides a hosted environment for RE and Tableau so that you don't have to continually export and update data. Does anyone use this or a similar solution?
  • I"m using Tableau connected directly into the RE SQL server. The process of joining tables and describing fields is time consuming at first, but you can easily save the data source (all the table configurations) and start with this for each workbook. 


    Start by choosing Microsoft SQL Server Connection, select the server hosting your RE database (you may need to contact network admins or IT for access, or location info). Once you're connected, run a sample gift or constituent query in Raisers Edge (I recommend running a gift query) with some key information: constituent ID, gift, gift date, donor name, campaign, and gift type. In the Query toolbar, go to View -->SQL: this is a great cheat sheet to see how relevant tables are joined for these fields. (You will only need to pay attention to the "FROM" section detailing the table connection specifics.)


     This might look like:
    INNER JOIN DBO.RECORDS AS GIFT_RECORDS ON GIFT.CONSTIT_ID = GIFT_RECORDS.ID
    INNER JOIN DBO.CAPREFERRED AS T_1 ON GIFT_RECORDS.ID = T_1.CONSTIT_ID
    INNER JOIN DBO.ADDRESS AS T_2 ON T_1.ADDRESS_ID = T_2.ID
    LEFT OUTER JOIN DBO.STATES AS T_3 ON T_2.STATE = T_3.SHORTDESCRIPTION
    LEFT OUTER JOIN DBO.GIFTSPLIT AS GIFT_GiftSplit ON GIFT.ID = GIFT_GiftSplit.GIFTID
    LEFT OUTER JOIN DBO.CAMPAIGN AS T_4 ON GIFT_GiftSplit.CAMPAIGNID = T_4.ID
    LEFT OUTER JOIN DBO.FUND AS GIFT_GiftSplit_FUND ON GIFT_GiftSplit.FUNDID = GIFT_GiftSplit_FUND.ID
    LEFT OUTER JOIN DBO.APPEAL AS GIFT_GiftSplit_APPEAL ON GIFT_GiftSplit.APPEALID = GIFT_GiftSplit_APPEAL.ID



    In Tableau, drag onto the data connection map the tables you want to join, and define the Key/ID used to join each table. 

    Once you're working in the Tableau worksheet/dashboard environment, you can rename fields and folders so that your dimension and measure titles make sense to you.


    Your connection might look something like this: 
    9cd71982b0a67d0ce8ed03cb0729aa2a-huge-ca





     
  • (I am using Tableau Desktop 9.2)
  • To be clear, are you hosted or not hosted? I'm assuming not - I think actually connecting these things is going to rely on having both pieces of software directly on your local network. Correct me if I'm wrong - I would  love to be wrong.
  • I am not hosted, so we have RE data and Tableau on the same nework.


    Depending on what you are reporting, you can do one massive query/export of data, and then append your data with new information incrementally (ie based on gift date added). You might ask BB support about how you might remotely access hosted backups, though this sounds like a long shot. 


     
  • That's what I expected. Whenever I use Tableau Desktop right now, I do create complex exports and then just drag that into Tableau. It's not terrible, but it would be cool to link the two in directly. 95% sure it's impossible in the hosted environment.


    Glad you got it working for you though! I do love Tableau.
  • Blackbaud told me that connecting Tableau directly to our hosted RE database WAS possible, but that we needed to purchase an API.  I'm still trying to verify this w/ our account rep.  Has anyone else heard this?

     
  • There's 3 key considerations in using Tableau with RE:


    1) Data Access.


    If you're just starting out, do a data export. You can use the export with Tableau Desktop. You can use the API, but realize the API does not include all fields. Ideally, you want full access to the SQL backend so you can query all the data directly. You can't do that with BB hosting. You can do it with Concourse Hosting.


    2) Sharing.


    If you want to share what you build in Tableau Desktop, you can export it to an image or PDF (ugh), have the user install Tableau Reader so they can view it (better) or publish it to Tableau Server (best!). Tableau Server provides a place to publish, organize and assign permissions to all the great stuff you build in Tableau Desktop.


    If you're just starting out, try Tableau Public which is a free version of Tableau Desktop and Server. You can only publish on Tableau's "public" server, (thus the name). But as you dabble and experiment, it's a great tool to learn with. 


    3) Data Refresh.


    The real magic is being able to connect Tableau Server with your backend database. This is the most difficult to do. Without this, you have to constantly manually refresh the data in Tableau, then re-publish it. Concourse Hosting can set you up with your own Tableau Server and provides a daily data refresh as part of the service. This way your published work on Tableau server automatically has current data.


    Cheers,

    Glen Kendell, CISSP

    President and CEO | Concourse Hosting 

    Main (800) 994-1799 |Direct (425) 245-7641

    Independent hosting for Blackbaud® products & Tableau Analytics
  • Glad to see others are starting to use Tableau. 


    We have 12 Desktop Professional Licenses and 55 Server Interactor licenses.


    I use Alteryx as my main data wrangling tool and that is how I create and update my data marts.  My Alteryx scheduler runs all the ETL (data wrangling) and publishes the data to Tableau Server.  We have about 30 data marts published to the Tableau Server and they are all updated daily between 3am and 5am. 

    I have been using Tableau for about 7-years and after about a year I really started to understand how I needed to structure my data marts so that we could produce the types of Tableau Dashboards that the staff wants.  If you really want to start having fun with your data, then check out Alteryx.  It makes data wrangling really fun. I also use the Alteryx Spatial Data Package which includes the Address CASS module.  Great for instant address cleanup in the workflow.  It also comes packaged with a full version of R and pre-built modules to do analytics.


    Granted, Alteryx is a bit pricey, but with just one license and the scheduler you can do wonders. If you have the budget, then getting Alteryx Server is the way to go. 


     It is always good to keep moving up the SQL server learning curve and install SSMS on your workstation so that you can study the back-end RE and FE tables and the stored procedures.


     

Categories