請問是否可以先安裝SQL2005,再安裝SQL2000?這樣安裝是否有什么沖突?都可以正常使用嗎?有沒有哪位這樣安裝過?

解决方案 »

  1.   

    我也这样装过,不过后来我还是将2005删掉了==================================
    在SQL Server 高手的大海中小心的行走
    ==================================
      

  2.   

    先装sql server 2000 , 然后sql server 2005
    我这边哦机器上安装了 , 两个都能使用不知道先安装sql server 2005 , 然后装2000会不会有什么问题
      

  3.   

    我以前安装的是2000,昨天装vss2005时里面自带了sql server2005 ,担心会冲突,我就把sql server2005卸载了,可是现在测试自己做的bbs时出现了这样的问题:
    An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) 
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Data.SqlClient.SqlException: An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)Source Error: 
    Line 34:         DbConnection dbConn = dbProviderFactory.CreateConnection();
    Line 35:         dbConn.ConnectionString = strConn;
    Line 36:         dbConn.Open();//有错误吗?
    Line 37:         DbCommand dbComm = dbProviderFactory.CreateCommand();
    Line 38:         dbComm.Connection = dbConn;
    请问如何解决?