Forum Replies Created

Viewing 15 posts - 871 through 885 (of 1,193 total)

  • RE: Identifying SSRS Subscription Users

    Ok, I see. What values are listed in the OwnerId field of the subscriptions table?

    Thanks

  • RE: Determining the difference between 2 column

    No problem.

    Can't help Douglas with his problem though unfortunately.

    Can't think of an appropriate iif expression to do it in Report Designer; no doubt there's a T-SQL solution but I wouldn't...

  • RE: Determining the difference between 2 column

    ChrisM@Work (7/30/2012)


    Douglas P. (7/30/2012)


    I have:

    ----------------------January-February-March

    GB------London------200------100------120

    France--Paris--------300------212------213

    And I want to have:

    ----------------------January-February-March-Difference

    GB------London------200------100------120------20

    France--Paris--------300------212------213------1

    The query you posted above doesn't generate more than one month. Where do the two extra months come...

  • RE: How to Retrieve the image data from database table and show in SSRS

    If you add a dataset to the report that contains a select statement from the dbo.Image_Table, you can reference the field here in the 'Use this field' option.

  • RE: Look up duplicates

    Yes, it's using MS T-SQL specific functions. I'm not familiar with SQLite so not sure how to translate it into that dialect, sorry.

  • RE: Look up duplicates

    How's this? Not sure how it'll scale, but it runs pretty much instantly for me on a few thousand records.

    From a design point of view, an extra column in the...

  • RE: Reducing Log File Size from 50GB

    GilaMonster (7/30/2012)


    Gazareth (7/30/2012)


    You can also check the values from the performance counters:

    select *

    from sys.dm_os_performance_counters

    where object_name = 'SQLServer:Databases'

    and counter_name in ('Percent Log Used', 'Log File(s) Size (KB)')

    That's...

  • RE: Reducing Log File Size from 50GB

    You can also check the values from the performance counters:

    select *

    from sys.dm_os_performance_counters

    where object_name = 'SQLServer:Databases'

    and counter_name in ('Percent Log Used', 'Log File(s) Size (KB)')

  • RE: Printing reports that show the search criteria

    No problem mate 🙂

  • RE: SQL Server installation in Unix\Linux

    Lynn Pettis (7/27/2012)


    Gazareth (7/27/2012)


    Of course, if you were willing to pay for MSSQL, you could also look at Oracle or DB2 which both work on Linux 🙂

    You owe the O...

  • RE: Reg: Parameter Length Restriction

    Don't think you can do it directly.

    You might be able to achieve it using custom code in the report definition, or a check in your SQL query that returns an...

  • RE: Identifying SSRS Subscription Users

    Does this work for you?

    use ReportServer

    go

    SELECT UserName, sub.*

    FROM dbo.Subscriptions sub

    inner join dbo.Users u on sub.OwnerID = u.UserID

  • RE: Exporting to excel

    jdbrown239 (7/26/2012)


    Thanks. I found the way to name the worksheet tabs by setting the page break expression.

    The problem now is is the column headers do not show on each...

  • RE: Printing reports that show the search criteria

    I'd add text box(es) with the expression =Parameters!parmname.Value in.

    Concatenate them together or use individual boxes, whichever's better for you.

  • RE: SQL Server installation in Unix\Linux

    Scott D. Jacobson (7/27/2012)


    Oracle... /me shudders.

    Lol... Doesn't have to be a long look! :w00t:

Viewing 15 posts - 871 through 885 (of 1,193 total)