|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, August 13, 2008 10:48 PM
Points: 2,
Visits: 9
|
|
Is it possible to use sql server authentication to connect to cube in mssql 2005 server? If yes, please help me out with a sample connection string. Thanks in advance.
|
|
|
|
|
SSCrazy
      
Group: General Forum Members
Last Login: Tuesday, August 10, 2010 5:07 AM
Points: 2,732,
Visits: 23,078
|
|
Not really.
The only authentication Analysis Services supports is windows. You can give the "Everyone" group access to a cube and windows ignores the security. Or, you could create a linked server from a SQL Server, use the service account for authentication, and grant SQL Users access to run queries on the linked server, but it is quite the hack.
Analysis Services does support http access through a SOAP/XMLA layer - using this you can also use anonymous access through a single windows login in IIS. This gets a bit tricky to configure though.
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, August 13, 2008 10:48 PM
Points: 2,
Visits: 9
|
|
Thanks,
Will try it out and let you know the outcome, hopefully positive.
|
|
|
|
|
Old Hand
      
Group: General Forum Members
Last Login: Tuesday, May 08, 2012 12:49 PM
Points: 339,
Visits: 560
|
|
Hey Mike,
So, does it mean Authentication mode in SSIS is different than in SSAS. Because, In SSIS..we can use SQL server Authentication. But is the same not true for SSAS?
Thanks
|
|
|
|
|
SSCrazy
      
Group: General Forum Members
Last Login: Tuesday, August 10, 2010 5:07 AM
Points: 2,732,
Visits: 23,078
|
|
SSIS and SSAS are different products, their authentication does not have to work the same way.
However, although you can use lots of different authentications in SSIS to connect to different data sources, connecting to an SSIS server is always using windows authentication. You may not have noticed, but when you connect through Management Studio to an SSIS Server, the authentication mode is set to windows and cannot be changed.
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Wednesday, May 01, 2013 2:49 PM
Points: 168,
Visits: 107
|
|
Is it the same for connecting from Excel to SSAS cubes? You can only use windows authentication to connect Excel to SSAS cube?
Thanx!
|
|
|
|
|
SSCommitted
      
Group: Moderators
Last Login: 2 days ago @ 11:00 AM
Points: 1,763,
Visits: 3,187
|
|
As Mike pointed out, SSAS *only* supports Windows Auth, so yes, when using Excel, you'll be authenticated by your windows account (unless using http, in which case it's determined by your IIS settings, which will either pass your credentials or use the anon user or potentially even the app pool account - but again, these are all windows accounts). There is no concept of SQL Authentication.
Steve.
|
|
|
|