select * from   OPENROWSET('SQLOLEDB',   'server=192.168.1.5;uid=sa;pwd=xxx;database=xxx',   
'select * from product where product_no not in ('''+ select product_no from product +''')')where product_no not in ('''+ select product_no from product +''')
这里总是出错,大大,我想问下这里是怎么调用本地表 
问题补充:意思是要找出192.168.1.5上存在,本地服务器上不存在的product产品 
select * from product where product_no not in (select product_no  from   OPENROWSET('SQLOLEDB',   'server=192.168.1.5;uid=sa;pwd=xxx;database=xxx',   
'select * from product'))
这个我知道,汗,关键是远程服务器上产品数据太多(60~70W条记录),总是超时。 
有时候远程服务器上产品增加的话就要调到本地来,超时头疼中啊