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!

Create Analysis Server role using DSO in C#

Status
Not open for further replies.

DCount

Programmer
Mar 10, 2005
4
US
I'm using VS2005. Any example of how to use DSO to create a database role in Analysis Services? I've added a DSO.dll, but still receive a compile error.

Using DSO;
Server dsoServer = new DSO.ServerClass();
dsoServer.Connect("123.45.6.789");
MDStore dsoDatabase = (MDStore)dsoServer.MDStores.Item("EasternRegion");

Error message: The type 'POMInterfaces._IOlapObject' is defined in an assembly that is not referenced. You must add a reference to assembly 'POMInterfaces'
 
Sounds to me more like a problem within the C# app and references than analysis services.

Shoot Me! Shoot Me NOW!!!
- Daffy Duck
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top