I use windowform to create a report form but the data is for 4 different servers(SQL server). How can I organize data for the simplest query. Thanks.
Asked
Active
Viewed 141 times
0
-
What ORM are you using? – Masoud Andalibi Mar 07 '17 at 07:36
-
Are your servers using a single data model or different for each? – Mikhail Tulubaev Mar 07 '17 at 07:40
-
1Please explain the situation correctly, by organizing you mean running the query on all server at once? Or are we talking about accessing data from each server and then manipulating in in code-behind? – GKG4 Mar 07 '17 at 07:48
1 Answers
0
May be this can help you? SQL Server Linked Server Example Query
example:
SELECT *
FROM OPENQUERY(Linked_Server_Name , 'select * from Table')

Community
- 1
- 1

Dmitry Cat
- 475
- 3
- 11