Forum Replies Created

Viewing 15 posts - 16 through 30 (of 138 total)

  • RE: QOD 12/18/2003...

    quote:


    Seems like there is something missing from the question as the answers refer to do the above 1,2,3 and 4 then else....




    Keith Henry



    According to everyone I know I "do something with computers?" for a living, so there you go.

  • RE: Connection Error

    Try giving the account MSOLAP runs under read access to the SQL server you need to connect to.

    Keith Henry

    DBA/Developer/BI Manager




    Keith Henry



    According to everyone I know I "do something with computers?" for a living, so there you go.

  • RE: processing large parent-child hangs

    Someone else had a similar problem here:

    http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=19084&FORUM_ID=17&CAT_ID=3&Topic_Title=Analysis+Services+Crashes+with+large+Parent%2DChild&Forum_Title=Analysis+Services

    Keith Henry

    DBA/Developer/BI Manager




    Keith Henry



    According to everyone I know I "do something with computers?" for a living, so there you go.

  • RE: Connection Error

    How are you processing the cube? In Analysis Manager or DTS or DSO etc. Are you using Windows NT security or SQL security on your source...




    Keith Henry



    According to everyone I know I "do something with computers?" for a living, so there you go.

  • RE: QOD 17/12/03 (WRONG ANSWER)

    But this one has the correct date

    Keith Henry

    DBA/Developer/BI Manager




    Keith Henry



    According to everyone I know I "do something with computers?" for a living, so there you go.

  • RE: Query generates different exec plan!

    Why is the plan bad? Could you execute the following on each:

    set showplan_text on

    go

    /* Your query here */




    Keith Henry



    According to everyone I know I "do something with computers?" for a living, so there you go.

  • RE: Sub-queries - good or bad idea?

    It can depend on the exact nature of the sub query, if you have a sort of some kind, for instance, it will completely change the query plan....




    Keith Henry



    According to everyone I know I "do something with computers?" for a living, so there you go.

  • RE: Internal Query Processor Error

    What SQL are you trying to execute and what on?

    Keith Henry

    DBA/Developer/BI Manager




    Keith Henry



    According to everyone I know I "do something with computers?" for a living, so there you go.

  • RE: Beginner Resource Kit

    Beginners should look at:

    "Fast Track to MDX" ISBN: 1-852-33681-1

    Good beginners stuff but lacking in detail.

    More expirenced users will need:

    "MDX...




    Keith Henry



    According to everyone I know I "do something with computers?" for a living, so there you go.

  • RE: QOD 12/17/03

    Ah Ha, I thought, clever trick question with an answer most will pick that will remove the top 5% of their sales team. I pick the right...




    Keith Henry



    According to everyone I know I "do something with computers?" for a living, so there you go.

  • RE: Group By Possible?

    select x.* from

    #xx x

    inner join (

    Select Col2, Max(COl3) as 'mxCOl3' From #xx

    Group By Col2 ) g

    on ...




    Keith Henry



    According to everyone I know I "do something with computers?" for a living, so there you go.

  • RE: Index Out of Synch

    What do you mean? The statistics for an index could become out of sync if you did a large insert, update or delete in certain conditions. ...




    Keith Henry



    According to everyone I know I "do something with computers?" for a living, so there you go.

  • RE: QOD 9 Dec 03 - Users

    quote:


    I've worked at places where they've let trained (or untrained sometimes) end users use QA or tools like QA (depending on the...




    Keith Henry



    According to everyone I know I "do something with computers?" for a living, so there you go.

  • RE: Closing bal prev month / opening bal next month

    Build the cube with a month dimension that you can total the change on that month.

    Then either handle it in the client app or:

    with




    Keith Henry



    According to everyone I know I "do something with computers?" for a living, so there you go.

  • RE: QOD 9 Dec 03 - Users

    Not adversly. The answer to the question is technically right from a pure SQL point of view, but not from an application point of view. You're...




    Keith Henry



    According to everyone I know I "do something with computers?" for a living, so there you go.

Viewing 15 posts - 16 through 30 (of 138 total)