Viewing 15 posts - 16 through 30 (of 124 total)
Yes and you will join the update with the contactid (you have to add the contactid on the select of the CTE)
I think this will do the job
If still slow...
July 30, 2015 at 9:49 am
Ok.
I think the join key was not correct on the CTE.
What does this query returns ?
SELECT cb.fullname, STUFF(
(SELECT '; ' + lb.ListName
FROM xxx.dbo.ListMemberBase lmb
INNER JOIN xxx.dbo.ListBase lb ON lb.listid...
July 30, 2015 at 9:26 am
Can you post sample lines for each table please ?
Is ListBase a 1-N relation to ListMemberBase?
How do you connect to your final table ?
July 30, 2015 at 8:59 am
Mohamed I. (7/30/2015)
okdid you try the expression with "?"
FieldValue == "" ? (DT_I4) 0 : (DT_I4) FieldValue
And with this :
(ISNULL(FieldValue) OR (DT_WSTR,50) (TRIM(FieldValue))) == "" ? (DT_I4) 0 : (DT_I4)...
July 30, 2015 at 8:52 am
Maybe you have to invert b and c position ?
I see that the c table appears to be the base table :
WITH CTE_Concat AS (
SELECT c.ListID,t.EntityID, STUFF(
(SELECT '; ' +...
July 30, 2015 at 7:59 am
Ok.
sorry I effectively did not understand your problem
I apologize
Can you post your query please ?
I want to see how you display data.
Can you solve your problem by using the ranking...
July 30, 2015 at 7:45 am
Hi,
You can join only on table valued
Your expression is not correct you forgot the .value at the end of Fields!FieldName.Value
But as you are now the join will not work
What you...
July 30, 2015 at 7:18 am
Ok.
Can you tell me if you page break follow a specific rule ?
you said first page show rows from 1 to 17
then page 2 shows rows 18 to 30
and...
July 30, 2015 at 6:15 am
what is the error message ?
maybe you also have to handle NULL Values ?
July 30, 2015 at 6:10 am
ok
did you try the expression with "?"
FieldValue == "" ? (DT_I4) 0 : (DT_I4) FieldValue
July 30, 2015 at 3:54 am
Hi
What is the expression on your derived column transformation ?
Maybe it is better to use the Convert transformation ?
If it does not work you can handle blank value with the...
July 30, 2015 at 3:32 am
Hi
I think you will have no choice but to convert your nvarchar(max) to a compatible format
But what you can do to take 100% of the cases, is to determine the...
July 30, 2015 at 3:12 am
Hi
Maybe you can try to split your query and use a cte ?
for example:
WITH CTE_Concat AS (
SELECT b.ListID,b.EntityID, STUFF(
(SELECT '; ' + c.ListName
FROM [server].[xxxxx_MSCRM].[dbo].ListBase c with (nowait)
WHERE b.ListID =...
July 30, 2015 at 2:37 am
lskidgel (7/29/2015)
My matrix column grouping include 4 sections; 'week 1', 'week...
July 30, 2015 at 2:17 am
Hi
did you put the option ShowColumnAs = Pareto on the Custom Attributes ?
July 29, 2015 at 2:28 am
Viewing 15 posts - 16 through 30 (of 124 total)