problem in connecting studio management to sql server - sql-server-2005

I had installed SQL Server 2008, but faced some complications with that. I then installed SQL Server 2005, and now installed SQL Server Management Studio for SQL Server 2005 successfully.
I am not able to connnect to the server name it suggests.
TITLE: Connect to Server
Cannot connect to POONAM-C586A95C\SQLEXPRESS.
ADDITIONAL INFORMATION:
This version of Microsoft SQL Server Management Studio Express can only be used to connect to SQL Server 2000 and SQL Server 2005 servers. (Microsoft.SqlServer.Express.ConnectionDlg)
It doesn't show any other option of SQL Server name, though I changed the name as I remembered but for no good.
How can this be solved?

It sounds as if you're trying to connect to the 2008 instance with the 2005 SSMS. It's not clear whether you un-installed the 2008 instance.
Suggest installing the SQL Server 2008 SSMS.
Confirm/modify as needed that you're running the SQL Server instance that you require. This will show you which instances are available.

I would also check to make sure that you're connecting to the correct port. I'm come across a similar error before and the solution was to specify the port to connect to, i.e.
compname\instancename,portnum

Related

Microsoft SQL Server Management Studio 2008 missing any instance of a server

So i just installed the Server Management and when i try to connect to server it gives me an error. I went to SQL Server Configuration Manager and there i dont have nothing. I have empty lists where the server instances should be. So i dont have any running local server.
So someone can tell me how i'm suppose to set some server instance or what i'm doing wrong ?
I installed the Server Management on Windows 7, 32-bit OS, and i need exacly this version of 2008 and i dont need the updated versions at this point.
SQL Server Management tool is just a GUI for you SQL Server. SQL Server is a separate installation. If you are trying to control a remote SQL Server you will need to add that to the management UI, local servers should show up automatically if you install SQL Server locally.
You can download SQL Server 2008 - Express Edition from https://www.microsoft.com/en-us/download/details.aspx?id=30438
It will install SQL Server which your Management Studio can connect.

Working with a sql database on SQL Server 2012 and work with the same database on SQL Server Express 2012 is the same?

I have this question about the SQL Server and SQL Server Express.
In my client machine, the database that he's using is SQL Server 2012 and in my machine i have SQL Server 2005.. so i want to install another instance and a friend told me that i dont need to install the SQL Server 2012 Standard (the one that they have) and with the SQL Server 2012 Express will work.. is that ok?
I really don't know the real difference in working with SQL Server Express 2012 and SQL Server Standard 2012 (with the same database).
On of the major differences is that with express you not be able to back ups over the network. Local backups only. When I do back ups from the SqlExpress Server Manager Studio it doesn't recognize mounted drives. Check out this for a more formal approach to your question
[http://msdn.microsoft.com/en-us/library/cc645993.aspx][1]
Check through this document:
Features supported by the editions of SQL Server 2012
You will soon be able to see if there are any features that you are using in standard that are not available in express.

Error: Can't attach DB to SQL Server 2012

I have SQL Server 2012 and I'm trying to attach a db which was previously used with SQL Server 2012, surprisingly I'm getting the following error:
The database 'DatabaseName' cannot be opened because it is version
706. This server supports version 622 and earlier. A downgrade path is not supported.
I don't really understand how this could happen since like I said it was used with same 2012 version. What am I doing wrong? How can I make it work? Please explain in detail how this can be resolved.
Thank you!!
The error sounds like the server you are trying to attach the database to is not SQL Server 2012. This may be the version of Management Studio / Management Studio Express you're using, but I suspect SELECT ##VERSION; will tell you something different. It may just be a connection string mixup if you have multiple instances of SQL Server installed, otherwise you should download and install SQL Server 2012 Express from here.
#source
It sounds like you had the following configuration and source databases:
SQL Server 2008 SP3 (ver 10.0...) - database engine
SQL Server Management Studio 2012 (ver 11.0...) - management tools
a database that was created with SQL Server 2012 (version 706)
As mentioned you could install SSMS for SQL Server 2008 (after you uninstall SSMS for SQL Server 2012). Then you would have to script your database for that version and re-run the script via 'Tasks>Script...', remembering to set the target server version as shown below.
After scripting you can then use the import/export wizard to export and then inport the data into the new (downgraded database), assuming the database had no 2012-only datatypes (such as sequences).
Another consideration is database compatibility level as shown below. You can have a SQL Server 2012 instance which hosts databases with various compatibility levels.
Using SELECT ##VERSION works very well for me. Your Database Engine is connected to a 2008 DB which certainly doesn't allow you to attach. Once I change my Database Engine to connect to 2012 DB, it works for me.
Check your Database Engine connection. You can be working on 2012 Management Studio yet connecting to 2008 DB. This is what happened to me and I have solved it use SELECT ##VERSION.

Connect SQL Server 2008 through Management Studio Express 2005

I am trying to connect SQL Server 2008 through Management Studio Express 2005. I have some limitations of Dot Net Framework upgrade on the client machine thats why trying to access it through 2005. I already implemented this solution:
FIX: You may experience problems when you use SQL Server Management Studio in SQL Server 2005 to connect to an instance of SQL Server 2008
http://support.microsoft.com/kb/946127
But its not working. I have installed a Management studio express 2005 SP4. But its doing trouble. It connects the 2008 Database server but when i tries to view the table through design view it throws an error message "Unspecified error". Where as i am able to view table records by making a query request.
I am really stuck. Please help me out.
Regards,
F. Ahmed
The backward compatibility for client tools in SQL server 2008 is not as good as we wanted to be... Sorry.

sql server 2008 and 2005 on same machine?

I already have sql server 2008 installed and now need to install 2005 express as well. When I try this, the installation fails with: "An installation package for the product Microsoft SQL Server VSS Writer cannot be found" - any ideas anyone?
Yes, you can definitely have both SQL Server 2005 (any edition) and SQL Server 2008 (any edition) on the same machine. But of course - you cannot have both be the default instance (which you access without specific instance name). Typically that's not a problem since the Express editions default to the .\SQLEXPRESS instance name. Just something to remember when installing.
HOWEVER: you need to make sure to first install your SQL Server 2005 and then the 2008 edition. It won't work the other way around, unfortunately.
So in your case: you'll need to first uninstall SQL Server 2008m, then install SQL Server 2005 Express and SQL Server 2008 on top of that again.