Calvin <calvinsmith266(at)hotmail(dot)com> writes:
> Is there any way to keep varying character fields from being padded out to their
> maximum length.
I suspect that your "varying" fields are in fact declared as just
CHAR(n). Use VARCHAR(n), or if there isn't a particularly good reason
to have a specific length limit, use TEXT.
regards, tom lane