Forum Replies Created

Viewing 15 posts - 271 through 285 (of 326 total)

  • RE: Strange Management Studio 2008 R2 (10.50.1600 and 10.50.1617) behaviour

    Also, what's the connection info in the bottom right of the query window ??

    [Note : for a new query, two options are available , one is with current conn. and...

    ~ demonfox
    ___________________________________________________________________
    Wondering what I would do next , when I am done with this one :ermm:

  • RE: Strange Management Studio 2008 R2 (10.50.1600 and 10.50.1617) behaviour

    you had it opened brand new

    or the specific query window was opened as connected to prod ?

    when you open a query window , specific to an instance; it...

    ~ demonfox
    ___________________________________________________________________
    Wondering what I would do next , when I am done with this one :ermm:

  • RE: New to SQL Server 2008

    dwain.c (8/17/2012)


    The OUTPUT clause is a SQL 2005 feature:

    http://msdn.microsoft.com/en-us/library/ms177564(v=sql.90).aspx

    thanks dwain for correcting ...

    ~ demonfox
    ___________________________________________________________________
    Wondering what I would do next , when I am done with this one :ermm:

  • RE: New to SQL Server 2008

    check out msdn for new additions in the 2008 ;the datatypes , filegroups , new keywords (MERGE,OUTPUT etc..)

    for 2005 to 2008 you are good to go , for 2000 to...

    ~ demonfox
    ___________________________________________________________________
    Wondering what I would do next , when I am done with this one :ermm:

  • RE: Intermittant SSIS package failure...

    I have faced a similar but not exact issue. In this the job used to fail on weekends. The job was with two different providers that works with last day...

    ~ demonfox
    ___________________________________________________________________
    Wondering what I would do next , when I am done with this one :ermm:

  • RE: Intermittant SSIS package failure...

    Turn on the package logging ; there you can find multiple logging points. You can check package logging on msdn.

    ~ demonfox
    ___________________________________________________________________
    Wondering what I would do next , when I am done with this one :ermm:

  • RE: Suggestion on how to implement a custom rollback

    SQLKnowItAll (8/9/2012)


    -on 8/1/2012 files being imported by backend job

    -on 8/2/2012-8/3/2012 user make tons of change to the data via front end

    -on 8/4/2012 updated files being imported

    if we reverse back to...

    ~ demonfox
    ___________________________________________________________________
    Wondering what I would do next , when I am done with this one :ermm:

  • RE: Listing Continus Numbers

    why are you doing this ?

    I mean, the +1 , and then inserting to another table...

    ~ demonfox
    ___________________________________________________________________
    Wondering what I would do next , when I am done with this one :ermm:

  • RE: Constraint Event Order

    Lokesh Vij (8/8/2012)


    Answer choice 1 and 3 are same....whats the difference???? :w00t:

    I saw third first 🙂

    ~ demonfox
    ___________________________________________________________________
    Wondering what I would do next , when I am done with this one :ermm:

  • RE: Help with a Query

    create table #address(a varchar(50),b int)

    insert into #address values ('pat',1),('giyo',2)

    insert into #address values ('pat',1),('giyo',2)

    select * from #address

    this should do the work

    with cte as (

    select *,row_number() over(partition by a order by...

    ~ demonfox
    ___________________________________________________________________
    Wondering what I would do next , when I am done with this one :ermm:

  • RE: Help in a store procedure

    did I miss something ?

    I guess i didn't get the question ...

    ~ demonfox
    ___________________________________________________________________
    Wondering what I would do next , when I am done with this one :ermm:

  • RE: Help in a store procedure

    http://social.msdn.microsoft.com/Forums/en-US/transactsql/thread/a9bcde36-408d-4ddf-b62e-132c257e9362/

    ~ demonfox
    ___________________________________________________________________
    Wondering what I would do next , when I am done with this one :ermm:

  • RE: ISNULL

    After yesterday's question , It was a feel good . 😛

    ~ demonfox
    ___________________________________________________________________
    Wondering what I would do next , when I am done with this one :ermm:

  • RE: Suggestion on how to implement a custom rollback

    rVadim (8/7/2012)[hrThen another way is to implement this as a "File Management" solution.

    1. Don't discard files after loading, instead save them to a predefined archive location.

    2. Create a table that...

    ~ demonfox
    ___________________________________________________________________
    Wondering what I would do next , when I am done with this one :ermm:

  • RE: Suggestion on how to implement a custom rollback

    haiao2000 (8/6/2012)


    but that has another issue of its own if bad feeds are received, then the rollback may need to be done immediately.

    Regards,

    when you say bad feeds ,...

    ~ demonfox
    ___________________________________________________________________
    Wondering what I would do next , when I am done with this one :ermm:

Viewing 15 posts - 271 through 285 (of 326 total)