Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Bulk Insert to Linked Server Error

    You can do this with this command:

    -- Local Server:

    if OBJECT_ID('tempdb..#tmp1') IS NOT NULL drop table #tmp1

    CREATE TABLE #tmp1 ( codigo BIGINT, descricao VARCHAR(100) )

    --...

Viewing post 1 (of 1 total)