Viewing 15 posts - 6,316 through 6,330 (of 13,877 total)
@Patrick123 (11/17/2016)
sorry i didn't get u
Before you call sp_ExecuteSQL, you need to populate @ParmDefinition with, somewhat unsurprisingly, given its name, the definitions of all the parameters.
November 17, 2016 at 12:40 pm
You do not appear to have populated @ParmDefinition.
November 17, 2016 at 12:26 pm
This appears to be a blog post. Please add some descriptive text, if you think that this will assist others.
November 17, 2016 at 11:56 am
I compared execution plans ... my version seems significantly less expensive, at least on this tiny amount of data.
November 17, 2016 at 11:45 am
jasona.work (11/17/2016)
Phil Parkin (11/17/2016)
jasona.work (11/17/2016)
Hugo Kornelis (11/17/2016)
November 17, 2016 at 10:59 am
Does this get you any closer?
WITH ApplicationReplyNames AS
(
SELECT u.c.value('@Name', 'varchar(100)') as ApplicationReplyName,u.c.value('../../@MerchantReferenceNumber', 'varchar(100)') as MerchantReferenceNumber
from @xml_data.nodes('/Report/Requests/Request/ApplicationReplies/ApplicationReply') u(c)
)
select t.c.value('../../../../@MerchantID', 'int') as MerchantID,
t.c.value('../../@MerchantReferenceNumber', 'varchar(100)') as MerchantReferenceNumber,
t.c.value('(@Number)[1]', 'int') as LineNumber,
t.c.value('(UnitPrice)[1]', 'decimal(18,2)') as...
November 17, 2016 at 10:35 am
jasona.work (11/17/2016)
Hugo Kornelis (11/17/2016)
November 17, 2016 at 9:50 am
That screen shot shows that the service is running. Can you explain why you think that it is a problem?
November 17, 2016 at 9:48 am
kathy.plamann 36011 (11/17/2016)
I've install SQL Server Reporting Services 2014 and I have the following image that appears under SQL Server Services. I installed Reporting services to install and configure. I...
November 17, 2016 at 9:31 am
Jerid421 (11/17/2016)
November 17, 2016 at 8:57 am
Jerid421 (11/17/2016)
There is no Result_Set_Type property, but I imagine that it is referring to the Result Set valueLooks like it's: Full Result Set.
Try changing this to None.
November 17, 2016 at 7:47 am
BWFC (11/17/2016)
There is an OnError event handler in place and it's that that stops the job. It...
November 17, 2016 at 7:43 am
spin (11/17/2016)
ok, so i have managed to get it to run.
The package is deployed to SSISDB.
If i manually run the package it fails.
I discovered an option in Advanced tab...
November 17, 2016 at 5:54 am
Gaja (11/17/2016)
I am inserting data from customer table to fact_customer
customer table has duplicate records with Customer ids but some of columns having different data i want to combine this...
November 17, 2016 at 5:45 am
BWFC (11/17/2016)
November 17, 2016 at 5:43 am
Viewing 15 posts - 6,316 through 6,330 (of 13,877 total)