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

updates to ReadMe file

This commit is contained in:
tarasha
2016-12-07 19:40:11 -08:00
parent 973bfed9c5
commit 9b264123e9
2 changed files with 8 additions and 8 deletions

View File

@ -89,13 +89,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