I am working on a Windows 7 machine and need to update a mySql row on an Ubuntu server. I open Workbench and run "show grants;" and it returns with GRANT ALL
I have a column in the database that shows as xml in the Workbench viewer when I run:select UNCOMPRESS(data) from database.detail where file_id = 57;
I need to update that row, I tried to save the blob as xml on disk and run: select LOAD_FILE('C:\Trash\544357.xml'); but that returns nothing so: UPDATE database.detail SET data = LOAD_FILE("C:\Trash\544357.xml") where file_id = 57; does not work either.