SQL Server Express 中的链接服务器
我正在开发一个应用程序,其中我在 SQL Server Express 中有一个本地数据库。在本地数据库中工作期间,我们需要在另一个 SQL Server/实时服务器上执行查询,并返回一个值,并使用该值在本地服务器中执行查询。
对 2 或 3 个查询执行此查询是可以的,但我有大约 5000 条记录需要执行相同的过程。我已经完成了上述样式,但需要太多时间。
我发现我们可以在多个服务器上运行查询。
我可以同时在 SQL Server Express 和服务器上运行查询并以这种方式运行整个查询吗?
我只能从快递到服务器运行查询。
I am developing an app where i have a local database in SQL Server Express. During work in local database, we need to execute a query on another SQL Server / live server and its return a value and with this value we execute a query in local server.
It is OK when executing this query against 2 or 3 queries, but i have around 5000 records on which I need to execute same process. I have done with above style but its take too much time.
I've found that we can run a query on multiple servers.
Can i run a query on SQL Server Express and server at same time and and run my whole queries in this style?
I can run query from express to server only.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你可以。在 SQL Express 上设置 LinkServer,然后以四部分名称格式传递查询
示例
Yes you can. Setup the LinkServer on the SQL Express then just pass your query in the four part name format
example