Forum Replies Created

Viewing 15 posts - 361 through 375 (of 402 total)

  • RE: Avoiding a Cursor

    Not trying to be picky, but sp_MsForEachTable uses a cursor internally.

    Interesting I didn't know this, but now I think about it makes sense I suppose...

    Learn something new every day! 😉

  • RE: Package Failes but no the Job

    Very difficult to say without much more information, however it sounds like you have multiple steps in your job and the step that calls your package is not set to...

  • RE: Avoiding a Cursor

    Your Welcome 🙂

  • RE: Avoiding a Cursor

    Do the ID columns all have the same name or are they different?

    If so this would work I think

    CREATE TABLE #temp (TableName VARCHAR(200),TableCount BIGINT)

    INSERT #temp

    EXEC sp_MSForEachtable 'select ''?'',Max(ID) from ?'

    ...

  • RE: Avoiding a Cursor

    Hi

    Difficult to say without seeing much more info like DLL's and Data.

    However taking a shot in the dark would the undocumented procedure msforeachtable be of use to you

  • RE: Outer Join & WHERE Clause Problem

    Your welcome - Glad to be of help 🙂

  • RE: Outer Join & WHERE Clause Problem

    Its because the query is doing exactly what you are telling it to do and only returning records WHERE IsNull(App_FK_EventID, 1382) = 1382

    This should work for you

    I haven't tested this...

  • RE: foreign key relationship between dimensions and the facts

    Welsh Corgi (2/23/2012)


    You could also disable and then enable the FK's but if you get a record(s) that violates the FK constraint exception that violates the FK Constraint then you...

  • RE: foreign key relationship between dimensions and the facts

    Or you could just drop all of the Keys as part of your load and then re-build them once the tables have loaded - this way you can load the...

  • RE: Graph Sort Order

    Your User field I'm making the assumption that its a string data type and is a name that you need to order A - Z (or Z - A) and...

  • RE: Graph Sort Order

    Hi

    Have you tried putting an ORDER BY in the query?

    Andy

  • RE: How to Remove Drilldown

    thanks for posting your solution 🙂

  • RE: Help needed with expression

    No Worrirs Peter glad to have been of help 🙂

  • RE: Help needed with expression

    Hi Peter

    Does this help?

    =IIF((Fields!IsSales.Value) = 1 OR (Fields!NEWBOSS.Value)= 0,True,False)

    Although your logic will show as visible if either Sales = 1 OR NEWBOSS = 0, not necessarily both

    Andy

  • RE: Help needed with expression

    Hi

    Right click on the column that you want to hide Column Visibility>Show or Hide based on an expression the expression you want is:

    =IIF(Fields!IsSales.Value = "1",TRUE,FALSE)

    If you want to do this...

Viewing 15 posts - 361 through 375 (of 402 total)