473,513 Members | 2,463 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Generate Statistics With the OpenSchema Method

ADezii
8,834 Recognized Expert Expert
In last week's Tip, I showed you how to use the ISAMStats Method of the DBEngine (DAO) to return vital statistics concerning Query executions such as: Disk Reads and Writes, Cache Reads and Writes, and Locks placed and released. As promised, in this week's Tip I'll demonstrate how to accomplish parallel functionality within the context of ADO using the OpenSchema Method of the Connection Object.

We indicate to the OpenSchema Method that we would like a Provider-specific set of information by providing it a magic number called a GUID instead of the traditional Constant value indicating a specific Schema. A Recordset is subsequently filled with the information that we need.

Unlike the ISAMStats Method, we can Reset all the statistics at once. Once we've Reset the statistics, we can then execute a Query to refill the statistics and then retrieve them. To do this, we use the OpenSchema Method of the Connection Object, which returns a one-row Recordset Object filled with the statistics in various Fields.

I know you are all anxiously waiting, so let's get to the meat-and-potatoes of this Tip. I've encapsulated all logic in a Sub-Routine Procedure called GetADO_ISAMStats which has two Arguments. In this specific case, I'll pass to the Routine the name of a Stored Query (qrySelect) and a Boolean Value (True) indicating that the code will attempt to open a Recordset instead of executing a Query. I could very well have passed the Routine an SQL Statement reflecting an Action Query (Update, Delete, Append, Make Table) and then the value False to execute the SQL Statement.

qrySelect is a simple Select Query which returns values from a Table containing 1,101,764 Records. Criteria are set on two Fields just to make things a little interesting.

The Sub-Routine code, the Call to the Routine, and the generated statistics are listed below for your viewing pleasure. See last week's Tip for reference if you so desire.
Expand|Select|Wrap|Line Numbers
  1. Public Sub GetADO_ISAMStats(strQuery As String, Optional blnUseRecordset As Boolean)
  2. '1st set a Reference to the 'Microsoft ActiveX Data Objects X.X Library'
  3. Dim cnn As ADODB.Connection
  4. Dim rst As ADODB.Recordset
  5.  
  6. Set cnn = CurrentProject.Connection
  7.  
  8. Const conDisk_Reads As Integer = 0
  9. Const conDisk_Writes As Integer = 1
  10. Const conReads_From_Cache As Integer = 2
  11. Const conReads_From_Read_Ahead_Cache As Integer = 3
  12. Const conLocks_Placed As Integer = 4
  13. Const conLocks_Released As Integer = 5
  14.  
  15. Dim lngDiskReads As Long, lngDiskWrites As Long, lngReadsFromCache As Long
  16. Dim lngReadsFromReadAheadCache As Long, lngLocksPlaced As Long
  17. Dim lngLocksReleased As Long
  18.  
  19. DoCmd.Hourglass True
  20.  
  21. 'Reset the Statistics all at once
  22. cnn.Properties("Jet OLEDB:Reset ISAM Stats") = 1
  23.  
  24. If blnUseRecordset Then
  25.   Set rst = cnn.Execute(strQuery)     'used for this Tip
  26. Else
  27.   cnn.Execute (strQuery)
  28. End If
  29.  
  30. Set rst = cnn.OpenSchema(Schema:=adSchemaProviderSpecific, SchemaID:="{8703b612-5d43-11d1-bdbf-00c04fb92675}")
  31.  
  32. lngDiskReads = rst.Fields(conDisk_Reads)
  33. lngDiskWrites = rst.Fields(conDisk_Writes)
  34. lngReadsFromCache = rst.Fields(conReads_From_Cache)
  35. lngReadsFromReadAheadCache = rst.Fields(conReads_From_Read_Ahead_Cache)
  36. lngLocksPlaced = rst.Fields(conLocks_Placed)
  37. lngLocksReleased = rst.Fields(conLocks_Released)
  38.  
  39. Debug.Print "==========================================="
  40. Debug.Print "Statistics for (" & strQuery & ") - [" & IIf(blnUseRecordset, "Recordset", "Query") & "]"
  41. Debug.Print "[ADO Method] - Number of Records: " & Format$(DCount("*", "tblMain"), "#,#,#")
  42. Debug.Print "==========================================="
  43. Debug.Print "Disk Reads                     : " & Format$(lngDiskReads, "#,#,#")
  44. Debug.Print "Disk Writes                    : " & Format$(lngDiskWrites, "#,#,#")
  45. Debug.Print "Reads From Cache               : " & Format$(lngReadsFromCache, "#,#,#")
  46. Debug.Print "Reads From Read-Ahead Cache    : " & Format$(lngReadsFromReadAheadCache, "#,#,#")
  47. Debug.Print "Locks Placed                   : " & Format$(lngLocksPlaced, "#,#,#")
  48. Debug.Print "Locks Released                 : " & Format$(lngLocksReleased, "#,#,#")
  49. Debug.Print "==========================================="
  50.  
  51. DoCmd.Hourglass False
  52. End Sub
Expand|Select|Wrap|Line Numbers
  1. 'Procedure Call
  2. Call GetADO_ISAMStats("qrySelect", True)
OUTPUT:
Expand|Select|Wrap|Line Numbers
  1. ===========================================
  2. Statistics for (qrySelect) - [Recordset]
  3. [ADO Method] - Number of Records: 1,101,764
  4. ===========================================
  5. Disk Reads                     : 6,970
  6. Disk Writes                    :    22
  7. Reads From Cache               : 7,546
  8. Reads From Read-Ahead Cache    :   968
  9. Locks Placed                   :    31
  10. Locks Released                 :    28
  11. ===========================================
Dec 17 '07 #1
0 5939

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

Similar topics

2
3590
by: Dan | last post by:
Environment: Windows XP Pro, IIS 5, SQL Server 2000 oConnectionString = 'driver={SQL Server};server=(local);uid=sa;pwd=;database=mydatabase;' Relationships are setup on all the tables. EOF is...
2
4006
by: Joe User | last post by:
QUESTION for the experts out there :) Is it possible to write a query that would list the datafields by each table in a database? How would I do that?!?! TIA Joe
4
2037
by: Irena | last post by:
Hi all there, I have developed an ASP script that is able to read the structure of an Ms Access database ( via object objConn.OpenSchema(27) ) and to identify the foreign Keys columns and tables...
0
2716
by: Denis ERCHOFF | last post by:
Hi, The OpenSchema method (ADODB._Connection object) seems to work fine in VB but not with C# .... Why? Someone have a solution? My code :
0
1465
by: Marcin Grzębski | last post by:
Hi All! I can't find any good equivalent of VB6 params from samples which should be used as a 2nd and 3rd parameter in method: Connection.OpenSchema(ADODB.SchemaEnum schema , object criteria...
4
4736
by: abcd | last post by:
I have a small VB code which retrives the table names from the access DSN. my code is something like this Set objRs = objConn.OpenSchema(adSchemaTables) If objRs("TABLE_TYPE") = "TABLE" or...
17
5030
by: romixnews | last post by:
Hi, I'm facing the problem of analyzing a memory allocation dynamic and object creation dynamics of a very big C++ application with a goal of optimizing its performance and eventually also...
4
2421
by: fAnSKyer | last post by:
When using random we can get a uniform data sample. But how to transfer this sample in to a Guassion Sample? Thanks? Did C or C++ provide any function to do this? Thanks a lot. Cheers....
30
37001
ADezii
by: ADezii | last post by:
For this Tip, we will show you an extremely handy, multi-user, feature of Jet that allows you to manage Users more effectively. You can create a special, provider-specific Recordset in ADO that...
0
7161
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7539
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...
1
7101
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7525
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
5089
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
3234
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3222
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1596
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
456
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.