Reporting Services Error when report deploy - sql-server

I tried to deploy SSRS report . i created a report on visual studio .. and also i configured report server configuration manager
when i try to deploy report and open this URL
http://localhost/ReportServer
this shows an error
ERROR
"Reporting Services Error
The report server cannot open a connection to the report server database. The log on failed. (rsReportServerDatabaseLogonFailed) Get Online Help
The user name or password is incorrect. (Exception from HRESULT: 0x8007052E)
SQL Server Reporting Services"
whereas when i click reporting services from sql and connect then connected succesfuuly but after when i left click on server name then same error shows as above on sql

This error occurs when Reporting Services (the report server) cannot connect to the "ReportServer" mssql database, It is not a problem in your report but in the server configuration.
To solve it, run the tool "Reporting Services Configuration Manager" in the PC where MSSQL and SSRS are installed, and review everything is ok.
Specially in the Database tab.

The error "The report server cannot open a connection to the report server database. The log on failed" means that:
The database engine that the report server catalog database host is unaccessable.
The Reporting Services service account has insufficient permissions to the access the report server catalog database.
So, to fix the issue, please follow these steps:
Make sure we are able to connect to the database engine from the report server machine.
a) Ping the database engine server.
b) Try to connect to the database engine using SQL Server Mananger Studio(SSMS)(If we have.). Or, create a .UDL file, try to connect the server from this UDL.
Use the Reporting Services Configuration Manager(RSCM) to check the service account. If the report server is on the different server with the database engine, please use a domain account instead of the local account(Built-in account). Make sure the service account has permissions in the database engine.
Final, please check if the report server is configured correctly. We can easily check that by checking if we can open the Report Manager(http:///reports).
Besides, I would suggest you to go through each steps in the RSCM to make sure the configuration is all fine.
For more information, please see:
Configuring a Report Server Installation (Reporting Services in Native Mode): http://msdn.microsoft.com/en-us/library/ms159624.aspx

Related

Access Denined to acces report server

My system Architecture as bellow
Single server Having
1.SQL serevr 2014 standard edition
2.Report server
3.Application server i.e(ASP.Net MVC application server)
when i am trying to access report server through network system getting error 'Access denied'. But same server when calling direct report server URL then there is no error.
In report service Configuration manager service account is Local service.
In reportserver.config file Authentication Type is changed to 'RSWindowsNegotiate' from 'RSWindowsNTLM' .
Tried with two users having Administrator rights on Server but not able to access the report server and while passing the credentials getting blank screen after changing Authentication type in reportserver.config file .
please help me
Thanks in advance
Have you installed SQL Server Reporting Service (SSRS)? Go to Start - Run - Services.msc, it should show "SQL Server Reporting Services (MSSQLSERVER)".

SQL Server Browser Service not present in SQL server configuration manager

I am not able to connect to my (LocalDb)\v11.0 from OLAP Cube project while deploying because of the SQL Server Browser Service is not running.
I am getting error like
"Error 4 The project could not be deployed to the '(LocalDb)\v11.0' server because of the following connectivity problems : A connection cannot be made to redirector. Ensure that 'SQL Browser' service is running. To verify or update the name of the target server, right-click on the project in Solution Explorer, select Project Properties, click on the Deployment tab, and then enter the name of the server. 0 0"
So I opened the SQL server configuration manager and tried to make the sql server browser service on but I am not able to find it in the configuration manager
Please suggest what should I do?

How to deploy ETL package to a remote SQL Server with SQL authentication?

I'm new to ETL so I have developed a simple ETL package, and now I'm going to deploy it to a remote server.
I connect to server using SQL Server authentication, so I go to solution explorer and open deployment wizard, in there in destination tab entered my server ip and then it shows me a error message saying
Login failed for user 'MYDOMAIN\MYUSERNAME'. (.Net SqlClient Data Provider)
As I said earlier I want to use SQL Server authentication to connect to my server, where can I change this settings in SSIS ?
Take a look at the link below. I think it should solve your problem.
On the Specify Target SQL Server page, specify the instance of SQL Server to install the packages to and select an authentication mode. If you select SQL Server Authentication, you must provide a user name and a password.
https://technet.microsoft.com/en-us/library/ms141693(v=sql.110).aspx

Error during TFS 2012 reporting configuration

I have TFS2012 installed. It was migrated from TFS 2010 and that was migrated from TFS 2005, we moved DB server several times and at some point we've lost Reporting and Sharepoint. It didn't worked properly and we anyway didn't use it.
Now we are trying to setup reporting again. I open Administration Console and go to Application Tir\Repoting. I have sql server s0sql01 with instance called ittfs11. That instance contains TFS databases and also has reporting an danalysuis services installed.
I edit Reporting Services, enable "Use Reporting" check-box and start fill settings. On tabs Warehouse and Analysis sservices I enter server adress and instance name, I enter new DB name and "Test connection" shows that everything is fine.
But when I try to set s0sql01\ittfs11 server on "Reports" tab and press "Populate URLs" button - I get this:
TF255186: The following SQL Repoting Services Instance could not be found: ittfs11. The server name is: s0sql01.
My user and TFS user are full admins in SQL Server on that instance. I do not use Sharepoint mode.
What should I do to fix problem?

Install Team Foundation Server with Remote SQL Server Database

I am in the process of evaluating TFS 2010. I am trying to install onto our application server which sits in a domain and runs Windows 2008 R2 Standard.
We already have a SQL Server in place on a separate Windows 2008 box that I want to use - this is in the same domain.
After installing TFS, I am using the Advanced Configuration Wizard to try and complete the setup. There are 3 bits that are reporting errors : "Database" and "Reporting".
When I enter the SQL Server details, TFS gives me this error :
TF255049: A connection cannot be made to the server that is running SQL Server. Verify that you have entered the correct name for the server, including the instance name, that the server you attempting to connect to is online, and that you have required permissions to connect... (it goes on a bit more)
The server I have installed TFS on is a web server that runs several .Net websites - all of which can connect to the SQL Server with no problem.
I have tried IP Address, machine name, instance name - all report the same error.
Has anybody been in this situation before?
EDIT : Strangely if I go to the "Reporting Server" page in the wizard and enter the SQL Server name, it connects correctly in order to get the Report Server URL and Report Manager URL. So it seems this maybe user account related?
Two things spring to mind:
You'll need to make sure the TFS service accounts have permissions on the DB server.
If Windows Firewall is on on the TFS box, switch it off for a minute or two and try again.
If that solves it, turn it back on and open the SQL ports.
HTH

Resources