Viewing 15 posts - 6,316 through 6,330 (of 13,874 total)
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
Well done on sorting that out.
Presumably the package was originally developed for a 2012 back-end (using Native Client 10.1) which was migrated to 2014 (NCLI 11)?
November 16, 2016 at 2:04 pm
Jerid421 (11/16/2016)
[Execute SQL Task] Error: There...
November 16, 2016 at 1:57 pm
Add a data conversion task to make your data types match.
November 16, 2016 at 9:53 am
GilaMonster (11/16/2016)
November 16, 2016 at 7:17 am
Viewing 15 posts - 6,316 through 6,330 (of 13,874 total)