SQL Server Reporting Services Datasource keeps losing database login credentials -
In my development environment, every time I reboot the windows (which should be done at least every day for me) All my share SSRS data sources lose their credentials.
Currently I have set them to log in to the database using a certain credential, but given the reboot of all the data sources to use any credentials, it is only in the Dev environment , And I can only check / update the data source / check back and it will work fine ... until I reboot again.
FYI, I am using these shared data sources for at least 2 years and no problem, but last month or so, it has been a recurring daily problem.
Help?
I'm thinking that you talk about shared data sources in a report server project in Visual Studio Are, as opposed to the data source created directly on the reporting services. Later, the data is stored in all ReportServer databases which was specified during the installation of SSRS.
Now, as the .rds file is used in Visual Studio, if you open the file in a text editor, note that the username and password are not stored in the file. It is actually stored in the .rptproj.user file. Therefore, check that anyone from source control File not removed. (The user should not source control, but in your case ...).
This scenario is testable by entering your credentials, saving all the files and exiting the Visual Studio. Find and delete the .rptproj.user file, and then open your report server project again and see that the credentials have gone!
A work around the "user id = user; password = pass" connection string when the .rds are opened, the connection string will not show this part, but the correct value in the credential tab needed.
Comments
Post a Comment