Re: Help to find-the-maximum-length-of-field-in-a-particular-column-in-all the tables

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Thu, Apr 2, 2020 at 10:15 PM postgann2020 s <postgann2020@xxxxxxxxx> wrote:
We are trying to findout the max size of the data in columns for all tables to resize the width of the assigned columns.

If you forgo brute force you will need to combine catalog access with dynamic SQL.  I'm not offering to work out the specific syntax for you.  If you've no better place to start the pl/pgsql documentation works as a language that provides this capability.  The main problem you are solving is that identifiers (e.b., table and column names) in select queries must be provided in the query text so you need to insert them (ideally using the "format()" function and "%I (eye)" placeholder.

I feel it bears repeating that this exercise seems like a poor one to perform (admittedly with zero actual knowledge as to the underlying situation).  Resizing them to "no size restriction" (i.e., "col_name text") would be my preference.  Higher risk fields might warrant constraints that check content in addition to (or in lieu of) length.  That fact that you are wanting to perform this exercise in the first place would be sufficient evidence that the previous decision to have field length limits was a poor one.  That my 0.02

David J.


[Index of Archives]     [KVM ARM]     [KVM ia64]     [KVM ppc]     [Virtualization Tools]     [Spice Development]     [Libvirt]     [Libvirt Users]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite Questions]     [Linux Kernel]     [Linux SCSI]     [XFree86]

  Powered by Linux