473,413 Members | 1,757 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes and contribute your articles to a community of 473,413 developers and data experts.

The ISAMStats Method

ADezii
8,834 Expert 8TB
This week's Tip is basically geared to Power Access Users and Gurus who demand the ultimate in efficiency within their Applications. It involves an undocumented feature of Jet 4, and is a technique you can use to return a variety of pieces of information relating to Disk Reads and Writes. It is a Method of the DBEngine Object, and as such is restricted to DAO. Next week, we will discuss comparable functionality in ADO.

The ISAMStats Method is useful when you use it to compare two possible ways of doing something. Using this Method, you can retrieve information on six important statistics:
  1. Disk Reads - [0]
  2. Disk Writes - [1]
  3. Reads from Cache - [2]
  4. Reads from Read-Ahead Cache - [3]
  5. Locks placed - [4]
  6. Locks released - [5]
The basic syntax for the ISAMStats Method is as follows:
Expand|Select|Wrap|Line Numbers
  1. lngReturn = DBEngine.ISAMStats(option, [reset])
where option is a Long Integer representing one of the above listed values for each reported statistic, and reset is an optional Boolean value that, when set to True, tells Jet to reset the counter for this particular option.

I will not demonstrate this Method via a Sub-Routine Procedure, GetDAO_ISAMStats(), which accepts the name of a Query or SQL String to execute, and an Optional Argument indicating whether the code should attempt to open a Recordset or Open a Query.

For purposes of this demonstration, I've chosen to Execute a Stored Query (strQuery = qryISAMStats, blnUseRecordset = False). This Query is an Update Query, and is based on a Table consisting of 520,000 Records, 342,000 of which are updated in the process. I will also show you the Statistics generated from the Function, and hopefully, you will see how valuable this Method can be in analyzing various Query Execution Plans.
Expand|Select|Wrap|Line Numbers
  1. Public Sub GetDAO_ISAMStats(strQuery As String, Optional blnUseRecordset As Boolean)
  2. Const conDisk_Reads As Integer = 0
  3. Const conDisk_Writes As Integer = 1
  4. Const conReads_From_Cache As Integer = 2
  5. Const conReads_From_Read_Ahead_Cache As Integer = 3
  6. Const conLocks_Placed As Integer = 4
  7. Const conLocks_Released As Integer = 5
  8.  
  9. Dim dbISAM As DAO.Database, rstISAM As DAO.Recordset
  10.  
  11. Dim lngDiskReads As Long, lngDiskWrites As Long, lngReadsFromCache As Long
  12. Dim lngReadsFromReadAheadCache As Long, lngLocksPlaced As Long
  13. Dim lngLocksReleased As Long
  14.  
  15. DoCmd.Hourglass True
  16.  
  17. Set dbISAM = CurrentDb()
  18.  
  19. 'Reset all Meters
  20. Call DAO.DBEngine.ISAMStats(conDisk_Reads, True)
  21. Call DAO.DBEngine.ISAMStats(conDisk_Writes, True)
  22. Call DAO.DBEngine.ISAMStats(conReads_From_Cache, True)
  23. Call DAO.DBEngine.ISAMStats(conReads_From_Read_Ahead_Cache, True)
  24. Call DAO.DBEngine.ISAMStats(conLocks_Placed, True)
  25. Call DAO.DBEngine.ISAMStats(conLocks_Released, True)
  26.  
  27. If blnUseRecordset Then
  28.   Set rstISAM = dbISAM.OpenRecordset(strQuery, dbOpenSnapshot)
  29. Else
  30.   dbISAM.Execute strQuery
  31. End If
  32.  
  33. lngDiskReads = DAO.DBEngine.ISAMStats(conDisk_Reads)
  34. lngDiskWrites = DAO.DBEngine.ISAMStats(conDisk_Writes)
  35. lngReadsFromCache = DAO.DBEngine.ISAMStats(conReads_From_Cache)
  36. lngReadsFromReadAheadCache = DAO.DBEngine.ISAMStats(conReads_From_Read_Ahead_Cache)
  37. lngLocksPlaced = DAO.DBEngine.ISAMStats(conLocks_Placed)
  38. lngLocksReleased = DAO.DBEngine.ISAMStats(conLocks_Released)
  39.  
  40. Debug.Print "==========================================="
  41. Debug.Print "Statistics for (" & strQuery & ") - [" & IIf(blnUseRecordset, "Recordset", "Query") & "]"
  42. Debug.Print "Number of Records: " & Format$(DCount("*", "tblMain"), "#,#,#")
  43. Debug.Print "==========================================="
  44. Debug.Print "Disk Reads                     : " & Format$(lngDiskReads, "#,#,#")
  45. Debug.Print "Disk Writes                    : " & Format$(lngDiskWrites, "#,#,#")
  46. Debug.Print "Reads From Cache               : " & Format$(lngReadsFromCache, "#,#,#")
  47. Debug.Print "Reads From Read-Ahead Cache    : " & Format$(lngReadsFromReadAheadCache, "#,#,#")
  48. Debug.Print "Locks Placed                   : " & Format$(lngLocksPlaced, "#,#,#")
  49. Debug.Print "Locks Released                 : " & Format$(lngLocksReleased, "#,#,#")
  50. Debug.Print "==========================================="
  51.  
  52. If blnUseRecordset Then
  53.   rstISAM.Close
  54.   Set rstISAM = Nothing
  55. End If
  56.  
  57. DoCmd.Hourglass False
  58.  
  59. End Sub
Sub-Routine Call:
Expand|Select|Wrap|Line Numbers
  1. 'Code will Execute the Query - (blnUseRecordset = False)
  2. Call GetDAO_ISAMStats("qryISAMTest", False)
Generated Statistics:
Expand|Select|Wrap|Line Numbers
  1. ===========================================
  2. Statistics for (qryISAMTest) - [Query]
  3. Number of Records: 520,000
  4. ===========================================
  5. Disk Reads                     :    21,499
  6. Disk Writes                    :    17,862
  7. Reads From Cache               : 2,046,721
  8. Reads From Read-Ahead Cache    :    32,873
  9. Locks Placed                   :    16,514
  10. Locks Released                 :    16,256
  11. ===========================================
Dec 10 '07 #1
2 6091
dima69
181 Expert 100+
Ok - so we can see the statistics on running that query.
So what is your conclusion ? Is running stored query more efficient than using DAO recordset ?
Dec 10 '07 #2
ADezii
8,834 Expert 8TB
Ok - so we can see the statistics on running that query.
So what is your conclusion ? Is running stored query more efficient than using DAO recordset ?
A comparative analysis between the two methodologies yielded very similar results on certain Query types. There is no conclusion, I had to leave something up to you guys to figure out (LOL). The number of Variables involved would be quite large, and it would be up to you, as the Developer, to figure out the Optimal solution for your specific set of circumstances.
Dec 10 '07 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

11
by: Dave Rahardja | last post by:
OK, so I've gotten into a philosophical disagreement with my colleague at work. He is a proponent of the Template Method pattern, i.e.: class foo { public: void bar() { do_bar(); } protected:...
5
by: Chris | last post by:
Hi I have a scenario where I've created another AppDomain to dynamically load a DLL(s) into. In this newly loaded DLL I want to call a static method on a class. The problem arise is that I have...
4
by: daniel.w.gelder | last post by:
I wrote a template class that takes a function prototype and lets you store and call a C-level function, like this: inline string SampleFunction(int, bool) {..} functor<string (int, bool)>...
7
by: greenflame | last post by:
I am trying to make a matrix object. I have given it some properites. I am trying to add a method. When I call the method by Test.showDims(...) I want to only enter one input, that is the method by...
5
by: Nick Flandry | last post by:
I'm running into an Invalid Cast Exception on an ASP.NET application that runs fine in my development environment (Win2K server running IIS 5) and a test environment (also Win2K server running IIS...
18
by: JohnR | last post by:
From reading the documentation, this should be a relatively easy thing. I have an arraylist of custom class instances which I want to search with an"indexof" where I'm passing an instance if the...
10
by: Mihai Osian | last post by:
Hi everyone, Given the code below, can anyone tell me: a) Is this normal behaviour ? b) If it is, what is the reason behind it ? I would expect the A::method(int) to be inherited by B. ...
9
by: Steve Richter | last post by:
in a generic class, can I code the class so that I can call a static method of the generic class T? In the ConvertFrom method of the generic TypeConvert class I want to write, I have a call to...
3
by: allendowney | last post by:
Hi All. In a complex inheritance hierarchy, it is sometimes difficult to find where a method is defined. I thought it might be possible to get this info from the method object itself, but it...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.