Forum Replies Created

Viewing 15 posts - 2,131 through 2,145 (of 3,507 total)

  • RE: New to SRSS

    Drop a Matrix (not a tablix) onto the design surface of your report.

    Drag [Staff] to the row,

    [ServiceType] to the column

    and drop the [Duration] to the value (intersection of Row &...

  • RE: ssrs 2008 dataset issue

    What happens if you create a stored procedure that has a different name, but is essentially the same stored procedure? Sounds like something is happening on the server we...

  • RE: ssrs 2008 dataset issue

    Why not just delete and recreate the dataset?

  • RE: Joining 2 Tables with Or condition

    Scratch all that.

    You have a basic normalization problem. If you had a single column/field in your table for e-mail address, then it would probably be a trivial question. ...

  • RE: Joining 2 Tables with Or condition

    create this query:

    SELECT EmailAddress, EMail1 AS Mail1

    FROM #Test_table_2

    UNION ALL

    SELECT EmailAddress, EMail2

    FROM #Test_table_2

    then join that to whatever other table you need.

    Normalization is a beautiful thing.

  • RE: Improving string comparisons that use like

    if you could create a column in the UserPolicy table that contains the 6 characters or whatever you're matching on in a single column (or at the column values start...

  • RE: Table Creation - Tool

    Amen to that! the reverse engineering of ERDs etc used to be one of my favorite parts of Visio... why MS decided it was no longer useful is a...

  • RE: Get count of events for each day between 2 dates

    This might be slightly off-topic, but the other auxiliary table that's super handy is a numbers table. (it can be virtual, like an iTVF) that has numbers from 1 to...

  • RE: Get count of events for each day between 2 dates

    Nothing to it. Use a Calendar Table, and then outer join it to your Events table.

    SELECT c.CalendarDate, Count(e.EventID)

    FROM Calendar c LEFT JOIN Events e ON c.CalendarDate = e.EventDate

    WHERE c.CalendarDate>=@StartDate...

  • RE: Month and year from yesterday's date help

    I would start with Lynn Pettis' article[/url] on common date routines. Post back if you're still stuck.

  • RE: Row Count of Group

    How about

    =RowNumber("Customer")

    It resets every time the Customer value changes.

  • RE: Splitting out a row into multiple rows.

    Sounds like you need a Tally table. Here[/url] is a link to Jeff Moden's article.

    It's harder to tell without table definitions, but if you joined quantity in your query to...

  • RE: Facebook data with SSIS

    You can query Facebook with PowerBI and then once it's there, probably import that using SSIS.

  • RE: Averages over 28 days instead of a month

    when does each 28-day period start?

    you could calculate from the first of the year using DATEDIFF and then integer divide by 28 to get the 4-week period, and then group....

  • RE: How to manage study/practice time for sql server exams.

    If you really want to learn, I would find a (maybe) simple problem from work, and create your database to solve it. Then try to incorporate everything that you're learning...

Viewing 15 posts - 2,131 through 2,145 (of 3,507 total)