cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Does anyone know how to set the DBConsole to use a mono-spaced font?

0 Likes
View Entire Topic

Obviously this is not a direct answer to your question, but you could either output the log to a text file with the startup switches on the DB or alternatively write the messages that would go into the log to a text file bypassing the log altogether using string variables and unload selects. You would have much more control over formatting at that point, but you would also have external files to deal with.

Former Member
0 Likes

Agree. Especially if you run db server as windows service then there are no GUI console at all. So logfile is a good choice.

These are the startup switches to write the log to a file.
Quoting Breck's comment from this question

-o filespec1.txt -oe filespec2.txt -os 1M is a good combination for production. The -os 1M keeps the file size manageable for browsing with Wordpad etcetera. For a service the filespecs probably have to have the full path.

Writing just your messages to an alternate file would be coded by you for each thing that you wanted to track using string variables and then unload select.