Viewing 15 posts - 9,466 through 9,480 (of 13,874 total)
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
chaseurpuli (12/19/2013)
Phil Parkin (12/19/2013)
chaseurpuli (12/18/2013)
Phil Parkin (12/18/2013)
Phil Parkin (12/18/2013)
Sounds like you need an asynchronous script component.But why do you care what the column name is?
Thanks for your reply Phil. Unfortunately,...
December 19, 2013 at 11:29 pm
sharmili.net (12/19/2013)
Thanks for your quick response on this.I understood it was question to check how much I am strong in that.But honestly speaking I don't have experience in ssis...
December 19, 2013 at 1:00 pm
Raunak Jhawar (12/17/2013)
Create Dynamic File Connection Manager for all...
December 19, 2013 at 3:16 am
chaseurpuli (12/18/2013)
Phil Parkin (12/18/2013)
Phil Parkin (12/18/2013)
Sounds like you need an asynchronous script component.But why do you care what the column name is?
Thanks for your reply Phil. Unfortunately, the destination table...
December 19, 2013 at 12:00 am
Koen Verbeeck (12/18/2013)
Phil Parkin (12/18/2013)
Phil Parkin (12/18/2013)
Sounds like you need an asynchronous script component.But why do you care what the column name is?
Are you talking to yourself now? 🙂
I get...
December 18, 2013 at 3:07 am
Phil Parkin (12/18/2013)
Sounds like you need an asynchronous script component.
But why do you care what the column name is?
December 18, 2013 at 2:53 am
Viewing 15 posts - 9,466 through 9,480 (of 13,874 total)