Home Forums Data Warehousing Integration Services SSIS 2012 / mixed SQL Server 2008R2 and 2012 / stored procs which use #temp tables RE: SSIS 2012 / mixed SQL Server 2008R2 and 2012 / stored procs which use #temp tables

  • Hi Phil,

    This has been playing on my mind as I know it will be an issue for me at some point...so I tried it and could not get the error you had using temp tables in SS2012.

    Could you give me a bit of detail about what task you were using and how you had it configured?

    This was my simple test:

    using this stored proc:

    create proc testProcWithTempTables

    as

    if 1=0 select 1 as id;

    create table #t1(id int identity(1,1));

    insert #t1 default values;

    select id

    from #t1;

    MM



    select geometry::STGeomFromWKB(0x0106000000020000000103000000010000000B0000001000000000000840000000000000003DD8CCCCCCCCCC0840000000000000003DD8CCCCCCCCCC08408014AE47E17AFC3F040000000000104000CDCCCCCCCCEC3F9C999999999913408014AE47E17AFC3F9C99999999991340000000000000003D0000000000001440000000000000003D000000000000144000000000000000400400000000001040000000000000F03F100000000000084000000000000000401000000000000840000000000000003D0103000000010000000B000000000000000000143D000000000000003D009E99999999B93F000000000000003D009E99999999B93F8014AE47E17AFC3F400000000000F03F00CDCCCCCCCCEC3FA06666666666FE3F8014AE47E17AFC3FA06666666666FE3F000000000000003D1800000000000040000000000000003D18000000000000400000000000000040400000000000F03F000000000000F03F000000000000143D0000000000000040000000000000143D000000000000003D, 0);

  • Forum Etiquette: How to post Reporting Services problems
  • [/url]
  • Forum Etiquette: How to post data/code on a forum to get the best help - by Jeff Moden
  • [/url]
  • How to Post Performance Problems - by Gail Shaw
  • [/url]