Viewing 15 posts - 871 through 885 (of 1,193 total)
Ok, I see. What values are listed in the OwnerId field of the subscriptions table?
Thanks
July 31, 2012 at 4:54 am
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...
July 30, 2012 at 9:46 am
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...
July 30, 2012 at 9:10 am
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.
July 30, 2012 at 8:29 am
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.
July 30, 2012 at 6:42 am
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...
July 30, 2012 at 5:14 am
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...
July 30, 2012 at 4:55 am
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)')
July 30, 2012 at 3:27 am
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...
July 27, 2012 at 1:28 pm
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...
July 27, 2012 at 10:52 am
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
July 27, 2012 at 10:44 am
jdbrown239 (7/26/2012)
The problem now is is the column headers do not show on each...
July 27, 2012 at 10:36 am
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.
July 27, 2012 at 10:28 am
Scott D. Jacobson (7/27/2012)
Oracle... /me shudders.
Lol... Doesn't have to be a long look! :w00t:
July 27, 2012 at 10:24 am
Viewing 15 posts - 871 through 885 (of 1,193 total)