Forum Replies Created

Viewing 15 posts - 2,611 through 2,625 (of 3,348 total)

  • RE: SSIS Package Execution

    Nice question.

    I hesitated to supply the logical answer, suspecting a trick question on some bizarre unexpected SSIS behaiviour, but I decided to follow my instinct and I got it right....

  • RE: Fun with Transactions - Part II

    Terry Mott (9/17/2010)


    Supposed ProcA begins a transaction, then executes ProcB. ProcB begins a "nested" transaction and then performs a ROLLBACK before exiting. When ProcB exits, SQL Server raises...

  • RE: Fun with Transactions - Part II

    CirquedeSQLeil (9/15/2010)


    Good question. I think it is worth noting that this behavior is exhibited because nested transactions do not truly exist in SQL Server.

    I have to disagree with you,...

  • RE: Inside the Optimizer: Constructing a Plan - Part 4

    Thanks, Paul, for an excellent series! I rarely give the full five stars to an article (yes, I am criticall), but you have absolutely deserved them.

    I don't think I'll ever...

  • RE: HAVING EXISTS

    rahul2671985 (9/15/2010)


    Hi,

    Thanks for replying me. I got stuck after "Having Exists".. the serch condition should take the groups which has max(a.thevalue) greater thaen 3. that I cannot figure out hw...

  • RE: HAVING EXISTS

    rahul2671985 (9/14/2010)


    I didnt get the exists condition here.. hw it works? can anyone explain me plz?

    Thanks,

    rahul

    I second Nakul's suggestion to first read the entire discussion. If, after that, you still...

  • RE: Disabling Indexes

    Nakul Vachhrajani (9/13/2010)


    Emphasis is therefore on the fact that if we have the constraints enabled, SQL does try to use the index which it cannot do because it's disabled.

    Actually, the...

  • RE: Round up or down III

    Tom.Thomson (9/12/2010)


    I think there's a small error in the explanation here. Round never returns a result of type decimal(8,6) because every decimal result that it returns has precision 38 -...

  • RE: Disabling Indexes

    mukeshkane (9/10/2010)


    Is I am still missing something??

    Yes.

    The line

    ALTER TABLE MyTable DROP CONSTRAINT PK_MyIdGO

    should read

    ALTER TABLE MyTable DROP CONSTRAINT PK_MyId

    (That is, remove the GO at the end).

    When I wrote that you...

  • RE: Disabling Indexes

    mukeshkane (9/10/2010)


    -- Create Table

    CREATE TABLE MyTable (MyId INT IDENTITY (1,1),

    ...

  • RE: Disabling Indexes

    mukeshkane (9/10/2010)


    still getting the same error message

    Could you copy and paste the exact T-SQL code you are using? There must be something wrong there. I can run the code on...

  • RE: Group by

    Manie Verster (9/10/2010)


    Tom please tell me what this means. "Na tog mi gun tuit mi ach ma thuiteas tog! Thig crìoch air an t-saoghal ach mairidh gaol is ceòl "

    Google...

  • RE: System Databases

    bitbucket-25253 (9/9/2010)


    Hmm seems like we have a disagreement on moving the Resource DB.

    Now which reference is Correct can it be moved or not? ? ?

    http://technet.microsoft.com/en-us/library/ms345408(SQL.90).aspx

    From the above reference (Bold...

  • RE: Inside the Optimizer: Constructing a Plan - Part 2

    My sole critisicm of this article is that it's much too short.

    I can't wait to read the parts three and four!

  • RE: System Databases

    Good question. Too bad you did not include a reference in the explanation.

    For those who want to double check (and to see HOW those system databases can be moved), here...

Viewing 15 posts - 2,611 through 2,625 (of 3,348 total)