-
I am looking for Database test matrix specifically for SQL 2019 . So i was wondering if SQL 2019 has been tested for any of the Hammer DB version. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
The test matrix is updated for each release so will be updated for the next version. Having said that SQL 2019 on Linux has been tested with v3.3 and no specific issues have been identified. It is strongly recommended to use v3.3, in particular this changed the underlying interface from ODBC v1 to ODBC v3 and resolved Issue #72 - also there was a fix for a NUMA issue where prior to and including v3.2 connections could be made to one NUMA node. The results should not be directly compared between versions - in testing v3.3 performs slightly better than v3.2 as a result of the updated ODBC interface. If you do compare v3.3 results with earlier versions then only NOPM should be used as the TPM values are different due to a change in the number of commits as a result of changing the interface. |
Beta Was this translation helpful? Give feedback.
-
Well i was referring this https://www.hammerdb.com/docs/ch01s02.html and got confuse. There is a huge difference for V 3.1 and V3.3 transaction numbers. |
Beta Was this translation helpful? Give feedback.
-
Yes, that matrix is the versions that were specifically tested before release, however that doesn't mean that other versions are not supported or even have not been tested since release. Yes for SQL Server between v3.2 and v3.3 the compiled interface between HammerDB and ODBC changed from tclodbc to tdbc::odbc (Note tdbc::odbc is modified from what is available included with the standard TCL release). With tclodbc (up to 3,.2) there was an additional external commit to the stored procedures - you can see this line as " |
Beta Was this translation helpful? Give feedback.
-
closed as no further update |
Beta Was this translation helpful? Give feedback.
Yes, that matrix is the versions that were specifically tested before release, however that doesn't mean that other versions are not supported or even have not been tested since release. Yes for SQL Server between v3.2 and v3.3 the compiled interface between HammerDB and ODBC changed from tclodbc to tdbc::odbc (Note tdbc::odbc is modified from what is available included with the standard TCL release). With tclodbc (up to 3,.2) there was an additional external commit to the stored procedures - you can see this line as "
odbc commit
". However if this was removed or commented out the sessions would hang with the error “connection is busy with results for another command
”. The newer interface …