Viewing 15 posts - 1,321 through 1,335 (of 13,838 total)
Does this help?
SELECT ItemParam = T.c.value('Item[1]/@param', 'nvarchar(50)')
,ItemValue = T.c.value('Item[1]/@value', 'nchar(10)')
,DefaultRpx = T.c.value('DefaultRpx[1]/@value', 'nvarchar(40)')
FROM @XML.nodes('/SelectionCriteria') T(c);
June 23, 2022 at 8:00 am
I've tried everything I can think of and I can't figure it out, either!
June 22, 2022 at 8:44 pm
Phil Parkin wrote:Can you confirm the exact format of JObject? It looks like
{"View"true,"Edit"true,"Admin"true}
Is that right?
It's real fuzzy, but the colons are there. Another reason images of data are bad, Jeffs.
Blimey....
June 22, 2022 at 3:15 pm
Can you confirm the exact format of JObject? It looks like
{"View"true,"Edit"true,"Admin"true}
Is that right?
June 22, 2022 at 3:11 pm
OK, weird. If you run the package manually from SSISDB, by right click and Execute, does the problem still occur?
June 22, 2022 at 2:35 pm
I cannot see any difference between the data. Its consistence with the ignore list of the data.
You mean exactly the same rows are selected and ignored every time?
June 22, 2022 at 2:17 pm
I had checked the data.
When I run the ssis package via SSIS package it runs without any issues.
But the same package I am running, its not getting the full...
June 22, 2022 at 1:59 pm
I suggest you identify the 10 missing rows and look for something that differentiates them from the 9 that make it. Also confirm that the data source and target are...
June 22, 2022 at 1:44 pm
Yes, parameters.
OK, please provide a couple of examples, along with the desired result.
June 22, 2022 at 10:11 am
Just to be clear, you are comparing the values of two parameters, is that right? Because you also mention 'fields', and it's not clear whether you mean values in a...
June 22, 2022 at 8:42 am
Ok, this actually works I must have run the wrong query 🙂
But, why "mx" and "mn" and what does the WITH function dos in this case?
I suppose it's max...
June 21, 2022 at 3:16 pm
Another version.
WITH mx
AS (SELECT TOP (1)
Dsc = 'Max Vacation Hours'
...
June 21, 2022 at 1:58 pm
That will give you the same result twice. There is another solution, hopefully someone else will provide it as I am going to be busy for a while. By the...
June 21, 2022 at 11:44 am
Maybe this?
Select TOP (1) 'Max Vacation Hours', *
From [HumanResources].[Employee]
ORDER BY vacationhours DESC
Union
Select TOP (1) 'Min Vacation Hours', *
From [HumanResources].[Employee]
ORDER BY vacationhours
June 21, 2022 at 10:50 am
Getting the below error.
Msg 127, Level 15, State 1, Line 62
If you are looking for sympathy. poor you!
If you want help resolving the error, please post the problematic query...
June 20, 2022 at 12:00 pm
Viewing 15 posts - 1,321 through 1,335 (of 13,838 total)