That still seems like a lot of work to me, to have to alias all your
columns that are over 27 characters (or 26 if you ever do a join where
you end up with a t10 or higher! :) How about if the QueryBuilder
just truncates the unique aliases to a maximum of 30 total characters
when querying Oracle?
-John
We're just talking about the column aliases used in the generated SQL.
They shouldn't affect the objects or data returned.
> The only problem I see with the simple truncate is if two columns have the
> same first 26 or 27 characters. I don't believe I have anything like this
> right now, but I guess it could happen.
Hm, maybe I should check for a column alias first, and only truncate
if one is not found?
-John