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

  • SEARCH
  • Home
  • 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 7055371
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T03:44:25+00:00 2026-05-28T03:44:25+00:00

How can I get SSIS to connect to an Oracle Hyperion Essbase cube to

  • 0

How can I get SSIS to connect to an Oracle Hyperion Essbase cube to use it as a data source? Googling this returned the following:

  1. A similar question was asked about a specific version with no real answer other than “a third party tool can do it.”

  2. A microsoft SSIS connectors wiki indicates you can do this through Star Analytics.

  3. Beginning with SQL Server 2005 SP2, Reporting Services (SSRS) has a data source connection. This product feature didn’t seem to translate to any objects for SSIS. One blogger suggested this may have been done as a quid pro quo arrangement back before Oracle purchased Hyperion since Hyperion began supporting connecting to SQL Server 2005 SSAS cubes at that time.

  4. As per @billinkc he use to connect to it with straight .NET. A little digging returned Hyperion Application Builder .NET (HAB.NET). At first this appeared to be a promising solution, but it turns out the product was discontinued with the 11.1.3 release. @billinkc also provided a code sample now, so I will test it out and see if this works.

Aside from licensing the Star Analytics server product which is cost prohibitive (for me), are there any other solutions out there?

  • 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-28T03:44:26+00:00Added an answer on May 28, 2026 at 3:44 am

    I hadn’t heard of HAB.NET but +1 for finding that. Instead, I just had a dirt simple connectivity test going in .NET like below. I’ve modified it a bit to work with the DTS stuff. Obviously, you’ll need to define your buffer columns and types but hopefully this gets you through the hyperion stuff.

    In order to access the Microsoft.AnalysisServices.AdomdClient class, add a reference to ADOMD.NET and save all. Then the below code will function properly.

    using System;
    using System.Data;
    using Microsoft.SqlServer.Dts.Pipeline.Wrapper;
    using Microsoft.SqlServer.Dts.Runtime.Wrapper;
    
    using Microsoft.AnalysisServices.AdomdClient;
    
    public class ScriptMain : UserComponent
    {
        public override void CreateNewOutputRows()
        {
            string connectionString = string.Empty;
            connectionString = "Provider=MSOLAP;Data Source=http://hyperion00:13080/aps/XMLA; Initial Catalog=GrossRev;User Id=Revenue;Password=ea$yMon3y;";
            string query = "SELECT ...";
            AdomdDataReader reader = null;
            try
            {
                using (AdomdConnection conn = new AdomdConnection(connectionString))
                {
                    conn.Open();
                    using (AdomdCommand cmd = new AdomdCommand(query, conn))
                    {
                        reader = cmd.ExecuteReader();
    
                        while (reader.Read())
                        {
                            // Replace Console.WriteLine with assignment of
                            // Output0Buffer.AddRow();
                            // Output0Buffer.column = (stronglyTyped) reader[i]
                            Console.WriteLine(reader.GetString(0));
                            Console.WriteLine(reader.GetString(1));
                        }
                        Console.WriteLine("fin");
                    }
    
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex);
    
                throw;
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Have a pretty straight forward SSIS package: OLE DB Source to get data via
I can get the element like this $(#txtEmail) but I'm not sure how to
I'm trying to connect to SSIS through SSMS but i keep getting this error:
I need to get data from flat files to DB using SSIS . The
I have written an SSIS package in C# to get the data from a
My app generates SSIS packages for importing data from Excel files. This is done
We have an architecture where we use SSIS to extract data from XML batch
I would like to learn SSIS 2008. can any one guide me to get
Can get all triples with value null in specific field? All people with date_of_birth
I can get easily see what projects and dlls a single project references from

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.