我在 SQL Server 2000 和 SQL Server 2005 中使用同名的一个数据库
我在 SQL Server 2000 和 SQL Server 2005 中使用同名的数据库。
如何管理 web.config 文件中的连接字符串,以便我们可以区分连接。
虽然我们对两个数据库使用相同的用户名和密码。
I am using one database with the same name in SQL Server 2000 and SQL Server 2005.
How can I manage the connection string in the web.config file so that we can differentiate the connection.
While we are using the same user name and password for the both databases.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
他们应该有不同的服务器名称,不是吗?
[编辑]
根据评论,如果服务器名称相同,它将具有不同的实例名称或端口。毕竟你只能有一个默认实例
They should have different server names, no?
[edit]
As per the comments, if the server name is the same it would have a different instance name or port. You can only have one default instance, after all
我建议如果安装在同一服务器上,两个安装都运行单独的实例,因此只需在连接字符串中指定实例名称即可。
所以如果一个是默认实例
;
和一个非默认实例示例
I would suggest that both install are running seperate instances if installed on the same server so just specify the instance name in your connection string.
so if one is the default Instance
;
and a non default instance example