Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: select from sp

    quote:


    I suggest personally use the reusable SP as base concept and create new SPs based on it with their own code...

  • RE: select from sp

    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')

  • RE: SQL 2000: Any SP3 issues ?

    sp3a should be used instead as it fixes sp3 installation & slammer issues

Viewing 3 posts - 1 through 3 (of 3 total)