Viewing 12 posts - 1 through 12 (of 12 total)
Noted. Thanks for your reply. Appreciate it very much.
June 13, 2014 at 4:04 am
Im using native compiler procedures vs normal procedures. my script as below.
--- Normal SP
CREATE PROCEDURE xx_insert_Normal
AS
BEGIN TRAN
DECLARE @i INT = 1
WHILE @i...
June 13, 2014 at 3:58 am
May i know how is your test script? have you try the while loop vs normal insert statement for 10k?
June 12, 2014 at 9:58 pm
I also using SQLIO to test it, below is my result. Any other IO performance tool that i can use to test the disk 64KB?
D:\testfile.dat (4096 bytes)F:\testfile.dat (64 kilobytes)
File size...
June 24, 2013 at 5:34 am
I was expecting at least 10-20% improvement. However the result is worst than the 4096bytes. It is degraded the performance. please see my test result using SQLIOSIm. What's wrong for...
June 24, 2013 at 5:22 am
I get a solution from this article, seems faster abit, but not very useful.
November 8, 2012 at 1:11 am
If assume the server, disk , index are all same. Just use different SQL version, SQL 2012 vs SQL 2008, why the SQL 2012 will take longer time to insert...
November 7, 2012 at 8:00 pm
Ok. After do some testing on it, the caching in SQL 2012 is very fast gone if compare to SQL 2008 R2. Can you explain why? Is it the Memory...
November 5, 2012 at 10:46 pm
Feel that the cache query in SQL 2012 very fast gone. I also suspect is the memory pressure issue. Where to check the cache memory pressure limit and how...
November 5, 2012 at 9:24 pm
Eh, just wonder why the equal operator can make the execution plan shows that the index was used.
declare @todaydate datetime
set @todaydate = getdate()
select * from tbl
where col =...
October 29, 2012 at 9:35 pm
Okay, this is because the engine simply ignores the local variable value and compiles a plan based on general statistics assumptions. 🙂
October 25, 2012 at 4:33 am
Viewing 12 posts - 1 through 12 (of 12 total)