// TODO ORA-00972: identifier is too long

I just ran into the ORA-000972 error that you note in CreateTableGenerator today and used the following code in OracleDatabase to work around it.  Is this an acceptable fix, and if so, could you patch it in?


<span + tableName.toUpperCase();
        }
    }

I think it looks good. I included it in OracleDatabase


Nathan