Viewing 15 posts - 4,321 through 4,335 (of 5,111 total)
SELECT T1.ID,T1.NUMBER,T1.DESCRIPTION,
CASE WHEN T2.GRADE='0000000822' THEN T2.VALUE END AS GRADE_LENGTH,
CASE WHEN T2.GRADE='0000000823'...
February 2, 2017 at 7:25 am
What have you tried so far to achieve your result?
February 2, 2017 at 6:16 am
If you have to do it with an expression, this should work:SUBSTRING( @[User::XML], FINDSTRING( @[User::XML],"<double>", 1) + 8, FINDSTRING( @[User::XML],"</double>", 1) - (FINDSTRING( @[User::XML],"<double>", 1) + 8))
Where...
February 2, 2017 at 3:42 am
This is totally dependant on your data, but as we have such a small sample, then who knows. As John said though, you're better off doing it in a presentation...
February 2, 2017 at 3:31 am
let's start off by making that into something usable for other members of the community. Have a read of the link in my signature, however, I've done it for you...
February 2, 2017 at 3:11 am
How are you getting the value from your table. Could you not instead retreive the value straight from your SQL table? For example:CREATE TABLE #Sample (ID INT...
February 2, 2017 at 2:28 am
Do all the tables have an identical structure? Doing a UNION removes all duplicates from a dataset so...INSERT INTO MainTable
SELECT *
FROM Table1
UNION
SELECT *
February 1, 2017 at 11:31 am
IF both tables have identical DDL, AND you're not using an IDENTITY Column, you could simply do:INSERT INTO dbo.emp
SELECT *
FROM dbo.emptemp et
WHERE et.empid...
February 1, 2017 at 11:28 am
Yep, that's the problem! 🙂 As January doesn't exist for that row, it isn't displayed in the chart.
You'll need to use some kind of Date or reference table....
February 1, 2017 at 11:03 am
If you were to run the query in SSMS, would a row actually be returned for say, January for that specific description?
February 1, 2017 at 10:40 am
Simply doing:SELECT *
FROM emptemp et
WHERE et.empid NOT IN (SELECT sq.empid FROM emp sq)
Would work to get the list.
You could, however, use a
February 1, 2017 at 10:03 am
I can;I've tried to replicate your problem, however, I get 0 values showing fine.
As it's only a picture of your report in Preview I can't tell, but is...
February 1, 2017 at 9:41 am
Click your Connection manager in your Connectin manager pane and hit F4. This'll display the Connection Manager's Property pane. On there, DelayValidation will be one of the properties. From recollection,...
February 1, 2017 at 8:36 am
Change the value of the Connection managers DelayValidation property to TRUE. This will stop pre package execution validation on it, and instead it will be validated when/if it is required.
February 1, 2017 at 8:12 am
Viewing 15 posts - 4,321 through 4,335 (of 5,111 total)