Viewing 15 posts - 121 through 135 (of 226 total)
The issue you're facing is that subtracting dates returns a timespan, not an int or a date. As you have discovered, the format function doesn't work with timespans.
You could investigate...
February 9, 2009 at 3:12 pm
That's it....
SELECT
[Catalog].Name,
Report_OID, LastRunTime, SubscriptionID
FROM Subscriptions inner join [Catalog] on
Report_OID = ItemID
WHERE InactiveFlags = 0
February 9, 2009 at 3:02 pm
Looks like, match subscription report_oid with catalog.itemid? I'm off to a meeting....let me know if you get...I'll play around with it also
February 9, 2009 at 2:56 pm
Try:
=formatdatetime(Fields!TimeFrom.Value) & " - " & formatdatetime(Fields!TimeTo.Value)
You may have to play with the optional 'type' parameter to get it just right....
February 9, 2009 at 2:52 pm
IsEmpty doesn't check for null...
from BOL:
Dealing with Empty Values in MDX Statements and Cubes
In Multidimensional Expressions (MDX) statements, you can look for empty values and then perform certain calculations on...
February 9, 2009 at 11:45 am
I think this will answer your question:
http://msdn.microsoft.com/en-us/library/ms155391(SQL.90).aspx
February 6, 2009 at 3:08 pm
Maybe this helps:
My Subscriptions Page
Use the My Subscriptions page to view all of your subscriptions in one place. From this page, you can access and modify or delete any subscription...
February 6, 2009 at 3:05 pm
Would duplicates affect your query? In other words does "support" include duplicate items?
February 6, 2009 at 3:01 pm
Very nice.
February 6, 2009 at 2:44 pm
I believe BIDS is included with SSRS. That maybe all you need.
February 6, 2009 at 2:41 pm
Make sure you are adjusting the "Body" layout size of the report. You may also consider shrinking the table or matrix padding. I've had good luck eliminating blank...
February 5, 2009 at 1:33 pm
Found this...looks like this feature will be enabled in the next version?
February 5, 2009 at 10:45 am
You can create a simple report based on that query...It's nice to get an idea of your report services utilization.........
February 5, 2009 at 10:07 am
If you run the raw sql output, does it show the duplicates? You may need to share your select statement with us....
February 5, 2009 at 10:02 am
Viewing 15 posts - 121 through 135 (of 226 total)