Viewing 15 posts - 106 through 120 (of 141 total)
If REPLICATE ('x', LEN(<columnname>)) is returning 'x' repeated to the field's maximum length, I'd check your data doesn't have trailing or leading spaces, and the data type is actually...
September 4, 2015 at 8:25 pm
You'll need to either group by all of the items you don't want summed (added together) or run a separate subquery to get the summed values as required, which would...
August 26, 2015 at 4:12 pm
I would set the row filter property on your table (or the row hidden property) to the expression
=TimeSpan.Parse("23:59:59.990") = CDate(Fields!item.Value).TimeOfDay
That is easy to read, and shouldn't be too bad...
August 25, 2015 at 3:27 pm
Unless there's reason behind the code you've used, for readability I would change
=IIF(First(Fields!FirmID.Value, "dsDataset1") = 1, "Logo1", "Logo2") .
to
Parameters!FirmID.Value
To answer your question, I suggest adding another parameter for selecting...
August 24, 2015 at 3:34 pm
That error message doesn't give enough information about the issue. It does suggest you're using Microsoft SQL Server 2012. Try running SQL Profiler on the server, re-attempt the backup, get...
August 16, 2015 at 6:55 pm
GonnaCatchIT (8/9/2015)
This is the code
System.Diagnostics.Process objProcess = new System.Diagnostics.Process();
objProcess.StartInfo.FileName = "abc.rdl";
...
August 10, 2015 at 1:23 am
You haven't posted enough information about how you connect to the report server. Are you using URL parameters, the Reporting Services Web Service, or some feature in the Report Viewer...
August 9, 2015 at 5:44 pm
I don't think you need that COALESCE call. NULL > 0 is not true, so [ID] > 0 should be equivalent. My memory is a little rusty on this, so...
August 6, 2015 at 5:07 pm
The wiki your link points to can be viewed here, and the file itself is downloadable here (Source)[/url].
August 5, 2015 at 1:19 am
For some companies, for example those dealing in health, I'd need to know how old a client is on a certain date, to identify that I would need to store...
July 20, 2015 at 9:17 pm
Brilliant - thanks for the replies. I've investigated using Azure Data Factory and Data Sync, but decided to implement a SSIS solution due to the service costs of Azure Data...
July 20, 2015 at 7:35 pm
That basically means it can't see the SQL Server. Can you ping the server?
Is the SQL Server service running on the WIN-4K server? To check this, log in to the...
June 21, 2015 at 2:32 pm
Thanks Thomas - I appreciate the offer, but not at the moment. I've had a read through the TimeXtender 2014 user guide and have somewhat of an idea of what...
June 17, 2015 at 3:31 pm
That information is stored in the columns starting with "notify_level_" in the msdb.dbo.sysjobs system database, and the text that is displayed in the drop-down box does not show up in...
June 14, 2015 at 7:27 pm
This is another question that is perhaps too generic for a good answer. A basic method of analyzing the data in an employee table would be a statement like below,...
June 4, 2015 at 4:48 pm
Viewing 15 posts - 106 through 120 (of 141 total)