Viewing 15 posts - 61 through 75 (of 230 total)
That all makes good sense.
I'll look into 6NF, but I think that may over-complicate things (as you suggested).
The real goal here is just to store the data. Since new...
September 14, 2013 at 3:14 pm
True.
This is a non-production "research" ETL database.
The table in question won't ever be updated by a "end user" so to speak.
However, your point is valid...
I may look at dropping the...
July 25, 2013 at 4:06 pm
Well adding an index will take forever, just dropped them. Did the deletes then re-created.
Since this table will have deletes perhaps once per quarter, I think that's the way...
July 25, 2013 at 10:19 am
Erland Sommarskog (7/25/2013)
July 25, 2013 at 8:01 am
As I mentioned I took a backup of the database before dropping that table.
I restored that backup to my local, same problem persists there.
So I can examine the issue now...
July 24, 2013 at 5:08 pm
arnipetursson (7/24/2013)
Is there a foreign key constraint, where this table is referenced?It looks like it may be doing a cascading delete on another large table.
CXPACKET wait indicates paralellism.
Now that's a...
July 24, 2013 at 4:16 pm
Interesting point about pre-generating the values.
That does make sense about getting the job done.
I'll play around with that and post back a sample table structure and some data later.
As for...
June 2, 2012 at 1:00 pm
Apologies, I should have been more clear. I wasn't hoping for a tsql direct solution, more just a general discussion.
As for it being "random", I agree it makes no...
June 1, 2012 at 5:32 pm
I basically gave up on the RunID approach. Spoke with businesses users, just signing off in a test environment is good enough. Will use snapshots to allow for...
May 3, 2012 at 6:13 pm
Thanks for the link!
I understand the backing out of the run for insert only, but if we also updated records... We couldn't back those out (without an audit log of...
May 2, 2012 at 7:01 pm
Sean Lange (5/1/2012)
Do you have a different code base for these users so they can view...
May 1, 2012 at 4:05 pm
Maxer (5/1/2012)
Start snapshot, run load, then let users poke aroind for an hour amd...
May 1, 2012 at 4:03 pm
How crazy is using a snapshot? Data diff will only be a few gigs per load.
Start snapshot, run load, then let users poke aroind for an hour amd lastly...
May 1, 2012 at 3:36 pm
Well, No Lock could really screw up your results though if dirty reads are not acceptable (exact counts, financial related work, multiple queries that rely on related results to tally/total/sum...
February 13, 2012 at 10:21 am
I was wondering about that.
From what I understand it will basically just take a snapshot/temp-copy of the data in a differential sense. So other operations can be performed against...
February 13, 2012 at 8:56 am
Viewing 15 posts - 61 through 75 (of 230 total)