Forum Replies Created

Viewing 3 posts - 31 through 33 (of 33 total)

  • RE: Reference Table in DB on Named Instance

    You should use sp_addlinkedserver 'name of instance'

    You can only use a linkedserver as the source of the data (From Clause)

    The insert should be done running your query on the server...

  • RE: delete query

    Maybe it could be usefull to do a select distinct into a new separate table.

    Then you could use 'truncate table' and actually rename to the new table to the old...

  • RE: SQL Server Table Types

    Table variables are set into memory but also in tempdb!

    This is one of the big msitakes people make and I found it in a lot of sql books!

Viewing 3 posts - 31 through 33 (of 33 total)