Unable to connect to the report server 2008 r2 [closed] - sql

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
-
i can't to connect report server
PC config
window 7, II7, sql sever 2008 R2
Reporting services configuration manager give error
when i connect to the server give this error
Unable to connect to the report server [ServerName]

Is the reporting services service started? services.msc from the start menu.

You have not installed reporting services. When you will do it, you will see it listed in configuration manager.

Related

Can I Install SQL Server 2008 R2 express edition on Windows xp 32bit? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I am trying since 2 days. I was able to Install but I Cant see my all services in 'SQL Server Configuration Manager and I cannot access sql server management studio.
It works fine on my windows 7 laptop and it have all the services.
Xp have only 'SQL Server(SQLEXPRESS)' running and 'SQL SERVER AGENT(SQLEXPRESS)' and 'SQL SERVER Browser' stopped. I right clicked and tried to start but start is disabled. I am not sure whether this is installation issue or because of windows xp.
You can find a list of supported operating systems and requirments here.
I checked for you and XP Professional service pack 3 is in the list.
You can try if updating your service pack works?

Cannot install SQL Server 2008 on Windows 7? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I'm trying to install SQL server 2008 in my computer. It's running 32 bit, Windows 7. However, after a couple of steps, when I reach the point where the installation is showing that it's arriving in "support files of installation", then the setup modal window disapears and does not proceed with the installation.
Does anyone have a clue of why this could be happening?
Are there any tools that need to be pre-installed: frame work or some other tool in order for this to work?
Try to completely remove all versions of SQL server.
Guide: http://developerscentral.net/2011/remove-sql-server-2008-r2-completely/
And try again.

Can't login to SQL Server with Windows Authentication [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I've just installed SQL Server 2012 and open the SQL Server Management Studio and when I try to login this problem occurs:
Can't connect to .....
My question is how can I know what is the server name?
And when I go to the SQL Server Configuration Manager I can't find the SQL Server services which should exist !!
Any answer ?
Thanks.
If you installed SQL Express, the correct server name is:
127.0.0.1\SQLEXPRESS
or
YOURMACHINENAME\SQLEXPRESS
If that does not work there are some steps you can take:
Check if the "SQL Server Browser" windows service is activated and running:
Go to Control Panel -> Administrative Tools -> Services
Open "SQL Server Browser" service and enable it (make it manual or automatic, depending on your needs)
Start it.
If that too does not work, you can also check if the TCP/IP protocol is enabled in your SQL Server instance. Follow these steps (tested for SS2012) to make sure:
Open "Sql Server Configuration Manager" in "Start Menu\Programs\Microsoft SQL Server 2012\Configuration Tools\"
Expand "SQL Server Network Configuration"
Go in "Protocols for <YourInstance>"
Enable TCP/IP
If you have any problem, check this blog post for details, as it contains screenshots and much more info.
That's it.

Installing SQL Server 2008 [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm having a problem installing SQL Server 2008 on my windows 7 32 bit machine. I get an unhandled exception error message.
Any solutions for these?
Thanks.
Have you tried searching the web for "sql server 2008 b77a5c561934e089"?
Sql Server 2008 R2 Express install problem
SQL Server 2008 Setup - Microsoft Corporation: Software
Microsoft Framework Error While Installing SQL SERVER 2008
Two of these posts suggest deleting the C:\Users\rethabile\AppData\Local\Microsoft_Corporation folder and trying again. The other says that you can't install on a drive that is compressed.

How I disable Windows authentication in SQL Server [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I have a local SQL Server 2005 running and I need to disable Windows authentication, I want that the only way to be connected to the server is by using an specific SQL user (SQL authentication).
You can't disable Windows authentication. If you don't want a Windows account to have access to SQL Server, don't create a login for it in SQL Server.