Aruna Raghunam
Aruna Raghunam

Reputation: 921

Error connecting to Data Source in SSRS

I am trying to connect to Datasource but getting this error:

An error occurred during local report processing. 
An error has occurred during report processing. 
Cannot create a connection to data source 'PO'.
You have specified integrated security or credentials in the connection string for the data source, but the data source is configured to use a different credential type. To use the values in the connection string, you must configure the unattended report processing account for the report server.

Any idea how to resolve this?

Thanks Aruna

Upvotes: 14

Views: 28146

Answers (3)

bhavya
bhavya

Reputation: 11

I guess this issue occurred in Visual Studio when you connected to data source but were not able to create a report using that data source. What credential did you use when creating database. Windows authentication or username and password. Right click on data source in VS and select credential as same as your server/db in properties. Mine is windows auth for my server/db and selected the same for data source. so now I am able to create reports.

Upvotes: 1

Steve_Malcolm
Steve_Malcolm

Reputation: 53

I was having this same issue. For me, the problem was that I was using a DNS alias as the server name in the connection string. Once I changed that to the actual machine name my connection was solid.

Upvotes: 0

NewGuy
NewGuy

Reputation: 1030

Looks like it forgot your password, If it is an embedded data source > Right click on the Data source then go to properties > credentials.

If it is a shared data source go to the shared data sources, right click on the shared data source and hit Open, once in there click on credentials and enter the credentials again.

Upvotes: 19

Related Questions