1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00

ReadMe updates

This commit is contained in:
tarasha
2016-12-07 19:16:09 -08:00
parent 63acb6fcf6
commit 973bfed9c5
6 changed files with 10 additions and 10 deletions

View File

@ -59,13 +59,13 @@ ALTER DATABASE CURRENT SET MEMORY_OPTIMIZED_ELEVATE_TO_SNAPSHOT=ON ;
3. When the script completes, observe that 334 rows were returned.Take note of how long the query took to execute. Query time is shown in the bottom right of the document window in Visual Studio.
![alt text][Disk Based Results]
[Disk Based Results]: images/DiskBasedResults.png "Disk Based Results"
[Disk Based Results]: Images/DiskBasedResults.png "Disk Based Results"
4. Now, execute the script to summarize the time series data stored in the memory-optimized table, in "SampleQueries - InMemory.sql".
When the script completes, observe that 334 rows were returned.Take note of how long the query took to execute.
You should notice that the performance of the query against the memory-optimized table runs between 2x-10x faster than the same query, running against the same data stored in a disk based table. Query time is shown in the bottom right of the document window in Visual Studio.
![alt text][In-Memory Results]
[In-Memory Results]: images/InMemoryResults.png "In-Memory Results"
[In-Memory Results]: Images/InMemoryResults.png "In-Memory Results"
## Execute the queries under load