Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OLEDE Error: Login failed for user 'DOMAIN\ComputerName$'.;28000

I am trying to deploy an Analysis Services cube in SQL Server 2012. My user account is REALM\Merin where REALM is the domain and my computer's name is Hercules. I am already in Analysis Service's administrator group. When I process the cube using SQL Server Data Tools, I get following error.

OLE DB error: OLE DB or ODBC error. Login failed for user 'REALM\Hercules$'.; 28000.

My user account is REALM\Merin but I don't know why it is complaining about user REALM\Hercules$. What does this account mean? A user with ComputerName + $ is strange to me. Someone help please.

Thanks, Merin

like image 898
Merin Nakarmi Avatar asked Sep 09 '13 16:09

Merin Nakarmi


4 Answers

I did not understand about the ComputerName$, but I was able to resolve my Cube deployment error. Below are the steps:

  1. Double click the data source in the Analysis Project Click
  2. Impersonation Information tab
  3. Select Use a specific Windows user name and password
  4. Enter user name and password and click OK
  5. Process the Cube

:)

like image 154
Merin Nakarmi Avatar answered Nov 16 '22 17:11

Merin Nakarmi


Get your Windows Username and Password from SSMS and use it in the impersonation info area as shown below:

enter image description here

like image 34
Isaac Davis Avatar answered Nov 16 '22 19:11

Isaac Davis


Look into the "Impersonation Information" tab of you data source object in the cube. You probably selected "Use the service account", and this is REALM\Hercules$. And probably the account under which the Analysis Services service is running does not have access rights to the relational data source. Configure the impersonation in a way that the access is allowed, and processing should work.

like image 3
FrankPl Avatar answered Nov 16 '22 19:11

FrankPl


I was having the same issue:

OLEDE Error: Login failed for user 'DOMAIN\ComputerName$'.;28000

The fix in my situation was to:

  1. Change the Analysis Service account from the default to a domain account

  2. Grant the domain account read access to the data source

like image 3
Chase mclean Avatar answered Nov 16 '22 18:11

Chase mclean