Collections:
No Reads on SELECT with CURSOR on Azure SQL Database
Why is there no reads recorded by fn_virtualfilestats() on SELECT statements with CURSOR on Azure SQL Database?
✍: FYIcenter.com
If you run the SQL script, fyi_select_cursor.sql, presented in the last tutorial
with different @Count and @Size on Azure SQL Database, you will see that
the fn_virtualfilestats() function view is not reporting any reads at all.
The following table shows the summary of the test results. Some fields are removed to save space. additional fields are added with calculations on existing fields.
@@version = Microsoft SQL Azure (RTM) - 12.0.2000.8 May 2 2019 SIZE COUNT DURATION BYTES FILE_ID READS BYTES READ Throughput MB/s 256 100 10 25600 1 0 0 2.44 256 500 37 128000 1 0 0 3.30 256 1000 50 256000 1 0 0 4.88 256 5000 360 1280000 1 0 0 3.39 256 10000 754 2560000 1 0 0 3.24 512 10000 754 5120000 1 0 0 6.48 1024 10000 740 10240000 1 0 0 13.20 2048 10000 780 20480000 1 0 0 25.04 4096 10000 890 40960000 1 0 0 43.89 8192 10000 1173 81920000 1 0 0 66.60 16384 10000 1173 163840000 1 0 0 133.21 32768 10000 1160 327680000 1 0 0 269.40 32768 20000 2690 655360000 1 0 0 232.34
As you can see:
⇒ Test Script for SELECT with BIGINT
⇐ No Reads on SELECT with CURSOR on SQL Server 2016
2019-04-25, ∼2152🔥, 0💬
Popular Posts:
How to generate user birthday dates? Test user birthday dates are frequently needed in testing appli...
How to expand IPv6 addresses? In order to help your programming or testing tasks, FYIcenter.com has ...
Where to find tutorials on Apache JMeter test tool? I want to know how to use Apache JMeter. Here is...
What is this Website about? Welcome to the Software Quality Assurance (QA) and Testing Information C...
How to generate date and time test values? Timestamp values are frequently needed in testing almost ...