Forum Replies Created

Viewing 15 posts - 3,646 through 3,660 (of 6,394 total)

  • RE: Is ok to kill process with security id 0x01 ??

    Typically no as thats the SA login and runs system process, now depending how you have your security setup it might be that everything is logging in as SA, which...

  • RE: Today's Random Word!

    opc.three (9/27/2012)


    JAZZ Master (9/27/2012)


    Ray K (9/27/2012)


    Cliff Jones (9/26/2012)


    crookj (9/26/2012)


    Daniel Bowlin (9/26/2012)


    Back to reality (from a short vacation )

    Back to the Future...

    Marty McFly

    Dr. Emmitt Brown

    Flux Capacitor

    Cuisinart

    Mini Chopper

  • RE: How do we create template type of report for end user to design report by report builder..?

    Create a report as you want as the template, then deploy it, then ensure the users dont do save as over the top of it and mess up the template.

  • RE: Can we do Tabbed type of reports in SSRS2008R2?

    Please be patient, we are all unpaid volunteers posting in our own time and sometime it takes time to get an answer to a problem.

    SSRS cannot natively do tabbed reports...

  • RE: where clause error

    Yep thanks both, case of the afternoon slump, need more coffee to keep going.

  • RE: where clause error

    WHERE

    ISNULL(SUM(BF.GLOBAL_FEE_TAKEN), 0.00) < ISNULL(SUM(BF.FEE_AMOUNT), 0.00)

  • RE: where clause error

    Your where clause is not SUMming the data, so while 10200 < 32700 = TRUE, that is not what is actually being checked in the where.

  • RE: where clause error

    Well there you go then, you where running into the UNKNOWN section of the predicate and in turn it was filtering them out as if a value is NULL SQL...

  • RE: where clause error

    So 0 for a Ammount paid, so is that 0 due to the ISNULL or is that 0 due to the sum of the values?

  • RE: where clause error

    What is the value in the two columns in the where clause, I am guessing that one or both are NULL due to you wrapping them in ISNULL in the...

  • RE: Log backup Intervals

    Query the tables individually, then you should notice the common columns between the three tables

    Job_ID & Schedule_ID appear in 4 times, in different tables, this is the linking route between...

  • RE: CPU 100%, current queries show "CREATE PROCEDURE ... "

    Restarting SQL is not a good idea as it flushes it's cache and when it restarts has to build the cache again which makes performance worse (usually)

    A good place to...

  • RE: Log backup Intervals

    well, if thats the case then query msdb.dbo.sysjobs, link it to sysjobschedules then link that to sysschedules for the job id.

  • RE: Log backup Intervals

    Is the name of the job the same or the name of the schedule on each server? If so again query the job or schedule tables to get the...

  • RE: Log backup Intervals

    Check the schedule of the job which is running the task.

    Otherwise query msdb.dbo.backupset which will help contain the information you need.

Viewing 15 posts - 3,646 through 3,660 (of 6,394 total)