Forum Replies Created

Viewing 15 posts - 3,391 through 3,405 (of 9,712 total)

  • RE: Sql server sorting issues

    NTILE?

    This is the first time I've heard of that one. Thanks, Micky.

  • RE: Execution Plans Question

    Here we go. Tables & Indexes in the below code box. Execution Plan attached.

    USE [MyDB]

    GO

    /****** Object: Table [dbo].[tblTransactionDetail] Script Date: 09/18/2013 07:54:20 ******/

    IF EXISTS (SELECT...

  • RE: Execution Plans Question

    GilaMonster (9/19/2013)


    Execution plans please. Guessing otherwise.

    I have to scrub the names first. I'll post it in a bit.

  • RE: Execution Plans Question

    BTW, it's not a JOIN. It's an UPDATE on a single table that splits one column into many.

    Basically it's:

    UPDATE ri

    SET col1 = Substring(ri.x), col2 = Substring(ri.x)....col7 = Substring(ri.x)

    FROM MyTable ri

    WHERE...

  • RE: Execution Plans Question

    Jack Corbett (9/19/2013)


    Brandie Tarvin (9/19/2013)


    Thanks, Jack.

    Huh. Apparently the Key Lookup shook itself out of the execution plan a bit later on. Now I've got Clustered Index Scans.

    Of course,...

  • RE: Execution Plans Question

    Okay, this is interesting. When I run the first two queries in conjuntion with everything else, the first execution plan changes back to a Key Lookup.

    When I run them by...

  • RE: Execution Plans Question

    Thanks, Jack.

    Huh. Apparently the Key Lookup shook itself out of the execution plan a bit later on. Now I've got Clustered Index Scans.

    Of course, I've been playing with these table...

  • RE: Windows XP Conversion

    Glad I could help.

  • RE: SSMS closes without warning during query run

    My box doesn't have SSDs, so that's probably not it for me... Thanks for the info, though.

    EDIT: I am using Windows 7 x64 (just got a new box) with SQL...

  • RE: Error message when changing location of share drive in SSIS package

    Koen Verbeeck (9/19/2013)


    daniel.carreira (9/19/2013)


    Hi Michal,

    So i have to add the user (databasename)/System to the sharedrive permissions, is it correct?

    Best regards,

    Daniel

    Yes, it must have read/write access to the shared directory.

    And if...

  • RE: Windows XP Conversion

    Speaking as someone who has upgraded a laptop from XP to 7 (both Pro versions, though), yes, it is possible.

    As far as memory goes... That depends on the edition of...

  • RE: Sql server sorting issues

    I know half a dozen ways to do what you've requested. But any easier than the easiest way I posted above?

    If you find one, let me know.

  • RE: MSDTC config in cluster..

    Short answer: yes.

  • RE: Backup SQL agent Job

    You can do this, but it's not simple.

    You need a job with three steps, one for each type of backup. Then you need a schedule that will run (at minimum)...

  • RE: Sql server sorting issues

    Yes, you can sort out the middle. The easiest way to do it would be to create 2 temp tables. One for worst sellers, one for top sellers. Then join...

Viewing 15 posts - 3,391 through 3,405 (of 9,712 total)