Viewing 3 posts - 1 through 3 (of 3 total)
Peter,
how do you deal with referencial integrity, or don't you have any FK-references to that table? That's the reason why we couldn't apply partitioning and chose to copy/delete old data.
March 6, 2013 at 8:44 am
You could also select all the targeted EventIDs into a temp table (with a clustered index if you want to delete in order). That's important if you don't want to...
March 6, 2013 at 8:18 am
hi,
if you want to use a join in this case, be careful and define a unique primary key constraint on your temp table(heap!). Joins on heaps are potential inefficient operations.
ciao,
jack
March 6, 2012 at 4:24 am
Viewing 3 posts - 1 through 3 (of 3 total)