management studio

  • Hi Friends,

    We installed sql server 2012 on a windows 2012 server last week. We are unable to connect to the 2012 database from SQL 2008/2005 Management studio's. Is there a way to make the 2005/2008 SSMS connect to 2012 db's or is it not forward compatible? Thanks a lot again

  • Nope won't work going forward. You can go the other way (connect to an older instance from a newer one). This is much like backups, they are not forward compatible.

    _______________________________________________________________

    Need help? Help us help you.

    Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.

    Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.

    Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
    Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
    Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
    Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/

  • As far as I've seen you can connect from a Management Studio 2008 to a SQL 2012 instance.

    The object explorer might throw some errors when expanding the different trees but connecting and executing queries should be possible.

  • WolfgangE (7/12/2013)


    As far as I've seen you can connect from a Management Studio 2008 to a SQL 2012 instance.

    The object explorer might throw some errors when expanding the different trees but connecting and executing queries should be possible.

    Wow that would the first time that an older version of SSMS can connect to a newer version. Interesting.

    _______________________________________________________________

    Need help? Help us help you.

    Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.

    Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.

    Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
    Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
    Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
    Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/

  • Sean Lange (7/12/2013)


    Wow that would the first time that an older version of SSMS can connect to a newer version. Interesting.

    No, SSMS 2005 SP3 can connect to SQL 2008 as well. And good ol' Query Analyzer can connect to all versions.

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • newbieuser (7/10/2013)


    We installed sql server 2012 on a windows 2012 server last week. We are unable to connect to the 2012 database from SQL 2008/2005 Management studio's. Is there a way to make the 2005/2008 SSMS connect to 2012 db's or is it not forward compatible?

    As Wolfgang says, this is perfectly possible. Most likely this is a connectivity problem. What error message do you get?

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • Sean Lange (7/12/2013)


    WolfgangE (7/12/2013)


    As far as I've seen you can connect from a Management Studio 2008 to a SQL 2012 instance.

    The object explorer might throw some errors when expanding the different trees but connecting and executing queries should be possible.

    Wow that would the first time that an older version of SSMS can connect to a newer version. Interesting.

    Does it has something to do with the compatibility level set?

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • Erland Sommarskog (7/14/2013)


    Sean Lange (7/12/2013)


    Wow that would the first time that an older version of SSMS can connect to a newer version. Interesting.

    No, SSMS 2005 SP3 can connect to SQL 2008 as well. And good ol' Query Analyzer can connect to all versions.

    Thanks for the clarification Erland. Makes sense really, it is still just a connection.

    _______________________________________________________________

    Need help? Help us help you.

    Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.

    Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.

    Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
    Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
    Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
    Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/

  • I'm still not able to connect from SSMS 2008 to 2012 database. Not sure where/what to check?

    Please help..thanks a lot

  • What error gets thrown back when you try?

    Joie Andrew
    "Since 1982"

  • I get this:

    Cannot connect to server.

    A network related or instance-specific error occurred while establishing a connection to SQL Server.The server was not found or accessible....

    I'm able to ping to the server though...

    THanks

  • Can you connect through another client? What happens when you try and connect via sqlcmd? Is the SQL Browser service running? Is this a named instance?

    Just trying to cycle through routine things to check...

    Joie Andrew
    "Since 1982"

  • newbieuser (2013-07-15)


    A network related or instance-specific error occurred while establishing a connection to SQL Server.The server was not found or accessible....

    This has nothing to do with the versions of SSMS and SQL Server, it's just a plain old connectivity problem. The machine you are connecting from cannot get in touch with the SQL Server instance at all. This can be due to a number of reasons:

    1) You mispelled the server name.

    2) You misspelled the instance name.

    3) You are connecting from a different computer, but the instance is only set up to accept local connection.

    4) The browser server is not running, and you try to use an instance name.

    5) There is a firewall blocking the port, SQL Server is listening on.

    6) There is a firewall blocking port UDP 1434 which the Browser service uses.

    This is list is not likely to be exhaustive. This topic in Books Online is a good trouble-shooter: http://msdn.microsoft.com/en-us/library/ms345318%28v=sql.110%29.aspx

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • Hi Friends,

    I''m not able to figure out what the problem is.. ODBC/OSQL doesn't work either.. I checked sql server does allow remote connections.. Not really sure what is missing.. I'm trying the alternative to download Management studio 2012 for my pc (windows XP SP3 - 32bit).. I downloaded only the Management studio from the link below.

    http://www.microsoft.com/en-us/sqlserver/editions/2012-editions/express.aspx

    When I run SQLManagementStudio_x86_ENU.exe, I get the error message 'The Operating system on this computer does ot meet the minimum requirements for SQL Server 2012...' I did download the 32-bit option.. Please help...

    Thanks a lot

  • newbieuser (7/16/2013)


    When I run SQLManagementStudio_x86_ENU.exe, I get the error message 'The Operating system on this computer does ot meet the minimum requirements for SQL Server 2012...' I did download the 32-bit option..

    Exactly what the error message says. SQL 2012, both SSMS and the server itself, requires at least Windows Vista or Windows 2008. It will not run on Windows XP.

    As for why you are not able to connect, we can only point to troubleshooters as we don't see your environment. As I mentioned, there are a lot things that can be wrong.

    Are you able to connect to the server from any computer? Remotely or locally?

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

Viewing 15 posts - 1 through 14 (of 14 total)

You must be logged in to reply to this topic. Login to reply