使用相同的名称和密码同时连接到 SQL Server。这有什么问题吗?

发布于 2024-09-17 00:50:12 字数 207 浏览 2 评论 0原文

// MS SQL Server 2008。

我的应用程序与 SQL Server 数据库有多个不同的连接(C#、ADO .NET)。每个连接都使用相同的用户名和密码。某些连接可能会同时执行。

这有什么问题吗?我应该添加一些设置来支持该功能吗?

连接字符串中是否有任何允许/限制同时连接的设置? SQL Server 中是否有任何设置允许/限制该功能?

// MS SQL Server 2008.

My application has several different connections to sql server database (C#, ADO .NET). Each connection uses the same user name and password. Some connections may execute simultaneously.

Is there any problem with that ? Should I add some settings to support that functionality ?

Is there any settings in connection string that allow/restrict simultaneous connections ? Is there any settings in SQL Server that allow/restrict that functionality ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

╰沐子 2024-09-24 00:50:12

不,这是正常的。使用完全相同的连接字符串还有助于池化连接(在后台,与数据库的连接保持打开和重用,而不是完全关闭和打开它们)。

No this is normal. Using the exact same connection string also helps with pooling the connections (In the background your connections to the DB are kept open and reused rather than completely closing and opening them).

甜宝宝 2024-09-24 00:50:12

不,绝对不。我很正常(在许多情况下,您使用的应用程序服务器在 sql 服务器上使用特定登录 - 不是每个用户一个),并且可能同时打开数千个连接。

没有限制,没有设置。它被认为是正常使用。

No. Absolutely not. I is quite normal (in many scenarios you use an app server that uses a specific logon on the sql server - not one per user) and may have thousand of connections open at the same time.

There is no restrictun, no setting. it is considered normal use.

情绪少女 2024-09-24 00:50:12

MS SQL Server 旨在处理同时连接,无论它们来自哪个用户。我不明白你怎么会遇到问题,除非连接正在处理相同的数据。

MS SQL Server is designed to handle simultaneous connections, no matter which user they come from. I can't see how you'd have a problem, unless the connections are working on the same data.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文