Viewing 15 posts - 9,466 through 9,480 (of 13,880 total)
Jeff Moden (12/30/2013)
Phil Parkin (12/30/2013)
In short, Dynamic mapping is possible in xml & ssis?
Not out of the box.
In the case you've mentioned, it's probably easiest to set up two data...
December 30, 2013 at 8:39 am
Try running this to check the account that xp_cmdshell is using - it probably is not yours:
xp_cmdshell 'whoami.exe'
December 30, 2013 at 6:56 am
In short, Dynamic mapping is possible in xml & ssis?
Not out of the box.
In the case you've mentioned, it's probably easiest to set up two data flows which separately handle...
December 30, 2013 at 3:58 am
DaveDB (12/27/2013)
December 27, 2013 at 9:29 am
Also, I think your parameter should be called '0' rather than 'code'.
December 27, 2013 at 1:19 am
Try using an OLEDB connection instead.
December 27, 2013 at 1:17 am
Please implement Chris' suggestion and see whether that helps.
I've just noticed that your WHILE loop does not appear to do anything, because the 'TOP' clause has been commented out.
My transaction...
December 23, 2013 at 6:36 am
Also, you mentioned that this will be an 'ongoing process'. Yet your method does not deal with updates or deletes, is that OK?
December 23, 2013 at 5:47 am
You could also try forcing transaction commits in your WHILE loop:
WHILE @@rowcount > 0
BEGIN
begin tran
INSERT INTO tblPricingExc2 --table tblPricingExc2 has an Identity column as PK.
( Key ,
Flag ,
Id
)
SELECT --TOP (10000)
tmpExc.Key...
December 23, 2013 at 5:44 am
After creating your temp table, try putting an index on its Id column.
December 23, 2013 at 5:25 am
shalini.doss (12/22/2013)
Thanks for the reply,I forgot to mentioned one thing,my source date format is 22-Feb-13.i need to convert this to YYYY-MM-DD.Sorry i should have mentioned this correctly first.
You should still...
December 23, 2013 at 1:17 am
Nomvula (12/20/2013)
i'm going to create different sources but on each i need to select values withing the date range variable i'm declaring in the beginning.
Easy enough - just use start...
December 20, 2013 at 4:07 am
Nomvula (12/20/2013)
i've created sql task with the following query 'SELECT MAX(wwo.StatusChangedOn) AS MaxDate
FROM wrkWorkOrders AS wwo where wwo.Description = 'Completed Costing' and set up Result...
December 20, 2013 at 3:31 am
Karen A. Ferrara-426245 (12/17/2013)
December 20, 2013 at 12:06 am
Viewing 15 posts - 9,466 through 9,480 (of 13,880 total)