Viewing 15 posts - 61 through 75 (of 1,654 total)
You can use you're own custom style sheets.
This article explains how:
June 20, 2013 at 2:27 am
Here's a good article which might help you:
You might also want to check out the Snippets generator utility
June 20, 2013 at 2:24 am
Yes you can use one dataset for several items (tablix, charts, sparklines etc.) in a report.
If you're using SSRS 2008 R2 or 2012 you can also create a shared...
June 17, 2013 at 8:23 am
Looks like you're using a maintenance plan for your backups. In that case check the maintenance plan history or the maintenance plan logfile for the exact error details.
June 17, 2013 at 8:18 am
Not sure if I understand your requirement correctly but I think this should work:
SELECT
CASE WHEN DATEDIFF(hh,[WalkinTime],[Validated AppointmentContactEnded]) < 4
THEN 1
ELSE 0
END
April 27, 2012 at 6:01 am
Just use the COLLATE function.
http://msdn.microsoft.com/en-us/library/ms184391(v=sql.105).aspx
April 24, 2012 at 1:54 am
deebabat (4/19/2012)
insert into tblDownload_Import
(Description) values ('error: ' + ERROR_Number() + ' msg: ' + ERROR_Message())
...
April 20, 2012 at 3:16 am
Yes, I think it's still a little bit early for some books.
But if you're interested in getting an overview aboout the new features in 2012, this might be interesting...
April 19, 2012 at 4:24 am
Select the "SeriesProperties" for your chart, Go to "Fill"
Under "Pick color" enter an expression similar to this:
=Switch(Fields!InstanceStatus.Value="Failes", "Red", Fields!InstanceStatus.Value="Pending", "Yellow", Fields!InstanceStatus.Value="Pass", "Green")
April 19, 2012 at 4:19 am
This script might help
http://www.sqlservercentral.com/scripts/Administration/61219/
March 28, 2012 at 2:49 am
Yes it is possible and if you search around on the internet or the script seection of this site, you should find lots of examples.
March 28, 2012 at 1:03 am
ravinderm2003 (3/14/2012)
Hi Markus, Thanks for the reply.If you do not mind, can I see what you have written.
As I said, it was something "similar". My need was to find...
March 14, 2012 at 8:39 am
I agree with Sean, you could do this using dynamic SQL. In fact I myself just wrote something very similar today.
But there might be another, smarter way of doing...
March 14, 2012 at 8:01 am
Sailor (3/13/2012)
When I right mouse click on a Data Collector, I just see Custom Report. How do I get them installed or configured?
First of all then you right-click on...
March 14, 2012 at 6:46 am
Viewing 15 posts - 61 through 75 (of 1,654 total)