Viewing 15 posts - 4,576 through 4,590 (of 5,111 total)
Your image shows that these are two different rows. We're missing a piece of logic here that connects the two. Your statement above will update a column with the value...
January 6, 2017 at 7:04 am
bzoom100 (1/5/2017)
January 6, 2017 at 6:17 am
Have at look at your Reporting Services Log, this should give a reason as to why the service didn't start.If you're unsure after looking at them, postt he part of...
January 6, 2017 at 3:23 am
This sound like what you're after are cascading parameters, which is easily possible in SSRS, yes. Note, however, that your report would only have one format. if you want to...
January 6, 2017 at 3:19 am
bzoom100 (1/5/2017)
The report parameters allow me to choose multiple applications types and multiple status types.
If I select one of each it runs ok. If I select one application...
January 5, 2017 at 9:59 am
Jeff Moden (1/5/2017)
Why not just replace the embedded carriage returns with an empty string?
Would that not just provide one continuous string instead?
I'm sure sure this is particularly pretty, and it...
January 5, 2017 at 8:22 am
You need to use a LEFT JOIN instead. Taken from FROM (Transact-SQL):
msdn
Specifies that all rows from the left table not meeting the join condition are included in...
January 5, 2017 at 7:46 am
When you say not responding what do you mean? Do you mean that a report isn't loading, or that the service isn't starting up?
If the report isn't loading, that would...
January 5, 2017 at 3:24 am
The PDF export is awful at best for alignment. I tend to have to create a different report if I want one that is web based, and one that is...
January 5, 2017 at 3:23 am
A better solution for you:
DECLARE @StartDate DATE, @EndDate DATE;
SET @StartDate = '01-Apr-2016';
SET @EndDate = '30-Apr-2016';
DECLARE @Weekdays INT;
WITH
L0 AS(SELECT 1 AS c UNION ALL SELECT...
January 5, 2017 at 2:30 am
This is an awful way to do this. Loop structures are incredibly slow in SQL.
Also, I would expect your dataset be different with the while block, you're changing your start...
January 5, 2017 at 2:20 am
Without having sample data that includes the problem this is going to be very difficult for any of us to trouble shoot.
All I can tell you is that somewhere you...
January 5, 2017 at 2:10 am
Can you provide DDL and DLM. Your sample data has a varying amount of columns. You can't have a table which has different numbers of columns for different rows, SQL...
January 5, 2017 at 2:04 am
Luis Cazares (1/4/2017)
Thom A (1/4/2017)
Eric M Russell (1/4/2017)
January 4, 2017 at 10:40 am
We definitely need DDL and DLM for this one and more logic. As Kevin said, why Adam 1 - 5. What about Adam 6?
I've given you a sample DDL, which...
January 4, 2017 at 10:14 am
Viewing 15 posts - 4,576 through 4,590 (of 5,111 total)