Skip to content

HammerDb doesn't like database names with dots or only digits. #85

Answered by sm-shaw
i25652 asked this question in Q&A
Discussion options

You must be logged in to vote

This is the same as the with the Server name which is handled differently:
As a workaround you can wrap the name in curly braces as follows:
{[1234.5678]}
This will work in the build script without any further work. For the driver script you need to edit the driver script that is loaded and remove the double quotes, so change this:
set database "{[1234.5678]}";# Database containing the TPC Schema
to this:
set database {[1234.5678]};# Database containing the TPC Schema
This is essentially what the Server name already does so HammerDB wraps it in curly braces in the background and removes the quotes in the driver script.
Is this something that would be considered needed for the database nam…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by abondvt89
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #85 on December 16, 2020 18:14.