Viewing 3 posts - 1 through 3 (of 3 total)
quote: I suggest personally use the reusable SP as base concept and create new SPs based on it with their own code...
quote:
September 16, 2003 at 5:50 pm
#474539
Configure your server for Openquery
1) sp_addlinkedserver SERVER_NAME
2) EXEC sp_serveroption 'SERVER_NAME', 'data_access', 'true'
Then run:
3) select col2, col1 from openquery(SERVER_NAME, 'exec DB_NAME..SelectStuff')
September 16, 2003 at 12:33 am
#474305
sp3a should be used instead as it fixes sp3 installation & slammer issues
September 10, 2003 at 11:01 pm
#473602