Forum Replies Created

Viewing 15 posts - 19,531 through 19,545 (of 26,484 total)

  • RE: Why SSRS?

    I can't really answer that question. We do use SSRS, but I'm not currently involved with it myself beyond using a few reports which we get to using the...

  • RE: Where clause question not like vs not in

    For edification:

    where

    [column_name] not like '%10BUC%' and

    [column_name] not like '%UNCLGAD%'

    is equivalent to

    where

    not ([column_name] like '%10BUC%' or [column_name] like '%UNCLGAD%')

  • RE: Hyperbac

    Drop HyperBac another email and see if they'll send you an older version of the program to check out.

  • RE: Why SSRS?

    You do not need SharePoint to take advantage of SSRS. SSRS integrates with SharePoint allowing you to manage security from one place, SharePoint, if you so desire.

  • RE: Hyperbac

    What version are you running? If you posted it, I can't seem to find it.

  • RE: Where clause question not like vs not in

    William Plourde (7/24/2009)


    I have coded two sql select stmts that I though would be equivalent but have learned through observation that they are not, the issue now is that I...

  • RE: Laptop life span

    Say good night Gracie.

  • RE: Hyperbac

    george sibbald (7/24/2009)


    I've tried on 3 different servers, can't all be bad. common denominator is hyperbac. what version you guys on?

    I'm still running 3.0.11.0.

  • RE: Problem with Query

    .,.,., why not let Jeff post the url? Others, like myself, may just benefit ... oh, you want to keep us in the dark, like mushrooms! 😛

  • RE: Hyperbac

    george sibbald (7/24/2009)


    matt stockham (7/24/2009)


    Is CPU pegged while the backups are running?

    total processor % jumps up about 25% to 50% average, speread evenely across the cpus (4)

    Do the...

  • RE: paging data and maximum number of rows

    Still using a simple table, but probably meets your requirements. Each run of the query took approximately 8 seconds.

    declare @PageNum int,

    @RowsPerPage...

  • RE: paging data and maximum number of rows

    michael vessey (7/24/2009)


    that's not really do-able for me

    as i said, this might be a huge query with maybe 15 tables

    so your example of

    with PagedData as (

    select

    ...

  • RE: Hyperbac

    This is really weird. Is there anything else running on the servers? Anti-Virus software, etc?

  • RE: Laptop life span

    Gift Peddie (7/24/2009)


    dont think I quite understand, Code is simply data if you could recover all your data then why are you not able to recover all your code?...

  • RE: paging data and maximum number of rows

    Something like this?

    declare @PageNum int,

    @RowsPerPage int;

    set @PageNum = 1;

    Set @RowsPerPage = 10;

    set statistics io on;

    set statistics time on;

    with PagedData as (

    select

    ...

Viewing 15 posts - 19,531 through 19,545 (of 26,484 total)