Forum Replies Created

Viewing 15 posts - 2,326 through 2,340 (of 3,507 total)

  • RE: SSRS Issue (SUM and Count)

    If I understand the question, this is trivial. You add a Row Group Total on [LoanID] or [CollectorName] (depends what you're getting totals on), and then you just use SUM([TransactionAmount])...

  • RE: SSRS report times out within asp.net reportviewer on web form

    What if you set TimeOut for this report to 0? (It means "do not timeout"). I would do it on a Dev server first... you don't want it hogging up...

  • RE: change name

    oops... double post...

  • RE: change name

    Not really. This assumes that nobody has a name like "Billy Joe" or a last name with spaces in it either... which is a gross simplification.

    SELECT LEFT(FullName,CHARINDEX(' ',FullName)-1) AS...

  • RE: Give access to Item on a SQL Server table

    I am designing an application where multiple users can be assign to a product for review. If a user doesn't have access to the product, they are not allowed to...

  • RE: First Occurance of the string from text

    What did you try?

    Did you try using CHARINDEX?

  • RE: Design question

    Can you subclass the entities? Essentially, the "main" table has an autoincrement primary key, and the "child"/subclass tables just inherit that key from Main. There's a really simple...

  • RE: PDF into SQL DB

    Are you trying to insert the entire PDF into a column in a table in your database? It's not entirely clear from your post.

  • RE: Row into Multiple Column

    Interesting... Thanks Sean and Luis for the gentle "schooling". I'll have to add that to my SSC database (the stuff I brazenly steal from here... hey, gotta learn somehow!)

    Maybe I...

  • RE: Row into Multiple Column

    Nitin,

    The short answer to your question is to use DelimitedSplit8K[/url] to split the text strings into different columns and then deal with those.

    This was my first try splitting (just so...

  • RE: Excluding records

    Glenn,

    any chance you could provide a create table script and some dummy records? Are all the records in the same table?

    thanks,

    Pieter

  • RE: Diffrent Colors for Weekdays

    Oh, I understand now. You wanted to change the color of the individual values on the timeline/X-axis when the value is on a weekend. Don't know how to do...

  • RE: ssrs 2012 displaying data inconsistently

    " I can tell consistently when the parameter dropdown list will have values and when it will not have values."

    how? psychic powers?

    Could it be a timeout?

  • RE: When is it safe to use NOLOCK?

    Watch Kendra Little's video[/url]...

    See #6. and the video that goes with it.

    She and Brent Ozar know more about SQL Server than I probably ever will. And they know what they're...

  • RE: ways to receive space alert

    Exercise your Google-fu. Found a bunch of hits in less than a second.

    sys.dm_os_volume_stats - see example A.

    An example from SQLMag...

    Sounds like you might need a report or something that...

Viewing 15 posts - 2,326 through 2,340 (of 3,507 total)