WordPress database error: [Disk full (/tmp/#sql-temptable-1-2604b2-6cf.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")]SHOW FULL COLUMNS FROM `markjacobsen_options`
Building off of yesterdays lesson on how to determine how much space a table is using (including LOBs and Indexes)<\/a>, there may come a time when you need to determine how much space 1 or more specific records are taking up. To do that, use the LENGTH() function which will return you how many bytes the field is using. Simply do some math to get a more useful value (like KB).<\/p>\n Building off of yesterdays lesson on how to determine how much space a table is using (including LOBs and Indexes), there may come a time when you need to determine how much space 1 or more specific records are taking up. To do that, use the LENGTH() function which will return you how many bytes … Continue reading How Much Space Is Being Used by 1 LOB \/ CLOB \/ BLOB in DB2<\/span> SELECT length(LOB_DATA_X) BYTE_A, length(LOB_DATA_X) \/ 1024 KB_A\r\nFROM XX.MY_TABLE\r\nFETCH FIRST 10 ROWS ONLY WITH UR FOR READ ONLY;<\/code><\/pre>\nPlease remember to subscribe to the newsletter<\/a> to stay up to date!<\/i>
\n
\nYou or someone you know looking to buy or sell?<\/i>\n<\/a>
\nDisclaimer: Thoughts and opinions are my own, and do not reflect the views of any employer, family member, friend, or anyone else. Some links may be affiliate links, but I don't link to anything I don't use myself. You would think this should be self evident these days, but apparently not...<\/small><\/i>","protected":false},"excerpt":{"rendered":"