Forum Replies Created

Viewing 15 posts - 211 through 225 (of 388 total)

  • RE: insert into temp table

    My guess is that it's the second field in the temp table which is created as an identity column - as the table from which it was created had the...

  • RE: insert into temp table

    sharath.chalamgari (6/18/2010)


    i tried with "ma-516002" query in the 2005 version the results are same i am able to get the records from both the tables. when i tried something simila...

  • RE: insert into temp table

    ma-516002 (6/17/2010)


    declare @myothertab table (

    col2 varchar(20),

    col3 varchar(20)

    )

    insert into @myothertab

    select 'A','B' union all

    SELECT 'W','Q'

    ;

    declare @myanothertab table (

    col2 varchar(20),

    col3 varchar(20)

    )

    insert into @myothertab

    select 'A','B' union all

    SELECT 'W','Q';

    select 1 as col1, col2, col3 into...

  • RE: Package Configurations from a Config database on a named instance

    Wow ralf,

    Sounds like the place you work is as dodgy as where I'm at!

    Thanks for the tip.

  • RE: Limited Features or Limited Time?

    James Stover (6/4/2010)


    James Stover McDBA - is that like an Irish DBA?

  • RE: Limited Features or Limited Time?

    I remember trialling the XMLSpy home edition (no longer available). It had the very basics, but on each day one of the 'power features' was available (and the next...

  • RE: SQL Server Trace Flags

    This ssc article[/url] contains a similar - but much shorter - list and refers to the Transact SQL Reference Guide - but the associated site is, indeed, offline.

    Your list...

  • RE: SQL Server Trace Flags

    Thanks...looks like a very comprehensive list.

    To avoid any misunderstanding, it would be good if you acknowledged your sources, when compiling your master list.

    Regards,

    David.

  • RE: Raw Materials - The Job Interview

    I must say I think these cartoons are consistently awesome!

    Thank you, thank you!

  • RE: Root note attributes FOR XML

    Thanks for updating! Good tip!

  • RE: Package Configurations from a Config database on a named instance

    Thanks Welsh Corgi,

    The connection is OK. SSIS uses the connection to create the config table and initial entries.

    The named instance thing may in fact be a red herring, as...

  • RE: Synonyms problem

    I didn't mean to suggest you were lying..and apologise if that's what you understood.

    What I meant was that the 'solution' you posted has no apparent link to the problem you...

  • RE: Synonyms problem

    I hope this solution can help to another that facing to the same problem.

    I very much doubt it...but pleased you (think you) have found a solution. 🙂

  • RE: Synonyms problem

    replace (local)\XXXXX with what "select @@servername" returns

  • RE: Synonyms problem

    My connection string is : ADO?AuxDriver=SQLNCLI10.1;SCHEMAS=1;Server=(LOCAL)\XXXXX;Database=YYYYY;UserID=EkoIndriyawan;Password=C4FD3EF9-5909-4DFB-9F8E-371A73A84DED;Min Pool Size=5;Max Pool Size=100;

    This is your connection string from Delphi to the first sql server, right?

    And you've also got a second sql server, which...

Viewing 15 posts - 211 through 225 (of 388 total)