Viewing 15 posts - 1 through 15 (of 20 total)
Phil Parkin (1/12/2016)
I just read through the link you suggested. It suggests that the parallel loading of a table will work if that table is a heap. Otherwise it suggests...
January 12, 2016 at 2:20 pm
Lynn Pettis (1/12/2016)
Make it easier for others to read the blog: http://blogs.msdn.com/b/sqlperf/archive/2011/05/25/the-balanced-data-distributor-for-ssis.aspx
Ahh Thanks Lynn!! I just hyperlinked it.
January 12, 2016 at 2:17 pm
JustMarie (1/11/2016)
One package to populate the parameters.
One package to pick up the parameters and perform...
January 12, 2016 at 11:18 am
Eric M Russell (1/11/2016)
January 11, 2016 at 2:02 pm
Phil Parkin (1/11/2016)
I do not think that Oracle implements ROWVERSION.
Right Phil... I think Eric meant to actually implement the physical column on the source tables. Oracle does have a...
January 11, 2016 at 1:57 pm
Phil Parkin (1/11/2016)
...that would be the most efficient, but the only problem is that if there was an issue with a load that day where it failed, manual intervention would...
January 11, 2016 at 11:26 am
Phil Parkin (1/11/2016)
Is the load time spread evenly across all of the processes, or is there one particular bottleneck?
The load times vary depending on the table being loaded. As...
January 11, 2016 at 11:18 am
Phil Parkin (1/11/2016)
Regarding the incremental load, have you considered using a pattern like this?
- Query target table for MaxDate = max(datecreated,datemodified)
- Select from source table where date >= MaxDate
This would...
January 11, 2016 at 11:10 am
Thanks a bunch Ed. I'll give that a try. That makes sense to me.
Letron
May 29, 2015 at 11:00 am
Hmmm... No I'm not including the schema when passing the table name. Could that be the issue?
How did you determine whether the permissions persisted after the rename? Was...
May 29, 2015 at 9:24 am
Thanks for working with me on this guys. Below is the code for the usp_RenameTable stored proc.
CREATE PROCEDURE [dbo].[usp_RenameTable]
-- Add the parameters for the stored procedure here
@t1 nvarchar(50) =...
May 29, 2015 at 7:29 am
Hey Ed,
Yes the procedure is using the sp_rename proc. Also both tables are in the dbo schema.
Letron
May 28, 2015 at 2:01 pm
I appreciate anything you can do Lynn. I'll do some testing on my side as well.
Thanks again!
Letron
May 28, 2015 at 1:53 pm
Yeah I did say that ... :Whistling:
Actually the real table is not. That's why we are doing the rename. Also both tables are partitioned with the same scheme...
May 28, 2015 at 1:49 pm
Yes I've thought about ALTER SWITCH but if I'm not mistaken, one of the requirements for ALTER SWITCH is that the target table has to be empty.
May 28, 2015 at 1:45 pm
Viewing 15 posts - 1 through 15 (of 20 total)