WordPress database error: [Disk full (/tmp/#sql-temptable-1-258533-4e9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")]
SHOW FULL COLUMNS FROM `markjacobsen_options`

{"id":1986,"date":"2019-01-03T12:02:00","date_gmt":"2019-01-03T17:02:00","guid":{"rendered":"http:\/\/markjacobsen.net\/?p=1986"},"modified":"2019-01-03T12:02:07","modified_gmt":"2019-01-03T17:02:07","slug":"update-modification-timestamp-on-db2-table-automatically","status":"publish","type":"post","link":"https:\/\/markjacobsen.net\/2019\/01\/update-modification-timestamp-on-db2-table-automatically\/","title":{"rendered":"Update modification timestamp on DB2 table automatically"},"content":{"rendered":"\n

Ever want to update your modification timestamp field any time an update is made to the row without having to add application logic? Well, DB2 makes it relatively painless…<\/p>\n\n\n\n

alter table XX.MY_TABLE add column last_updated_ts timestamp not null\ngenerated by default for each row on update as row change timestamp<\/code><\/pre>\n\n\n\n

Check out these resources for additional information…<\/p>\n\n\n\n