Generate cleaner SQL
It would be really nice if dbForgeStudio generated cleaner SQL code. Currently, the code generated by dbForge is very confusing and differs too much from the code generated by hand. There is no option to turn some settings off.
This is a problem if we need to maintain SQL scripts that are manually edited later. Everytime we need to export a script, we need to manually format the code and remove all the unecessary stuff.
Some of the issues are:
1) Every identifier is escaped even if it is plain english text. View generation gets really confusing by escaping every letter. Escaping should be done only if the word requires it.
2) Columns created as "int" are generated as "int(11)". It could just verify if the field is using the maximum size allowed, omit it.
3) Fields that allow NULL shouldn't have "default null" unless manually specified, that is already the default value.
4) Allow to avoid generating initial auto increment and row size. Sometimes we need a clean "create table" script, not a script to copy the existing table.
The ideal would be that cleaner code was the default, but if that is not possible for some reasons, these things should have settings to change.