Viewing 12 posts - 1 through 12 (of 12 total)
Thanks a lot. Comprehension is vital for me to make the correct conclusions after running my baseline tests on different setups. I conclude SQL Server is cool in...
March 5, 2015 at 2:11 am
Hello Gail,
I could not move my mind away from this topic. After my last reply, I kept thinking about the statement "checkpoints can write uncommitted dirty pages to disk"...
March 4, 2015 at 3:56 am
Hello Gail,
Thank you for the extensive answer.
It makes sense to me that 5.000.000 transactions in the logfile instead of 1 transaction (for inserting 5.000.000 rows) might have impact on the...
March 3, 2015 at 5:00 pm
Hello Gail,
Thanks for clarifying that. Now I wonder whether you can have two versions of the same page in a datafile? In my insert test that will not...
March 3, 2015 at 10:03 am
Thanks a lot for this link!
The article contains some technical aspects I have never looked at so far, so I'll have to invest some time to completly understand the process,...
March 3, 2015 at 7:46 am
I found the cause.
Each 10.000 rows I execute select count(*) on table in which I insert the 5.000.000 rows.
This causes the enormous number of reads and explains why the lead...
March 3, 2015 at 3:50 am
Hi,
Does the database on SQL2014 has compatibility level 120?
In that case you may want to change it to 110 or 100 and run your test again, since 2014 uses other...
June 11, 2014 at 4:08 am
I have added the complete sql script here ...
http://www.hoveseliga.be/images/perftest.txt
so you can copy/paste it into SSMS.
http://www.hoveseliga.be/images/perftest.txt
It consists of several steps
- CREATING TEST DATABASE
- CORRECTING DATABASE SETTINGS
-...
June 5, 2014 at 9:27 am
A screenshot of the script to complete my post.
Kind regards
Peter
June 3, 2014 at 2:11 pm
So this will the do it for me ...
FETCH ... @key, @f1, @2, ...
IF NOT EXISTS (SELECT ... WHERE = @key)
BEGIN
INSERT ...
END
ELSE
BEGIN
...
April 12, 2010 at 2:51 am
Hi,
To NULL or not to NULL. Its perhaps my IQ, but after years I'm still struggling with nulls. I consequently used to implement default values instead of NULLs,...
April 1, 2010 at 4:30 am
Hi,
I just had the same issue and it was caused by a trigger that stores all updates in an audit table. The audit table stores some additional information as...
January 21, 2010 at 9:52 am
Viewing 12 posts - 1 through 12 (of 12 total)