Hi. my problem is: I have 2 sql servers. One is production server,other one is only running a big history database and only used for query. I created a view at production server use opendatasource method.
create view ABC as select *
from opendatasource(
'sqloledb',
'data source=sr01;user ID=sa;password=admin'
).MyDB.dbo.ABC
At first every thing is ok. but from last sunday the query is very slow. I test the history DB, speed is very fast.
On that sunday some guy dis a reboot, is it caused the problem? How can I fix the problem? Help me please!
create view ABC as select *
from opendatasource(
'sqloledb',
'data source=sr01;user ID=sa;password=admin'
).MyDB.dbo.ABC
At first every thing is ok. but from last sunday the query is very slow. I test the history DB, speed is very fast.
On that sunday some guy dis a reboot, is it caused the problem? How can I fix the problem? Help me please!