Skip to content

Instantly share code, notes, and snippets.

@statique
Created November 2, 2012 20:42
Show Gist options
  • Star 21 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save statique/4004202 to your computer and use it in GitHub Desktop.
Save statique/4004202 to your computer and use it in GitHub Desktop.
PostgreSQL Convert Rails serialized YAML to JSON query
-- replace table_name with the name of your database table, e.g. users
-- replace data with the serialized field in the table, e.g. nicknames
-- output generates serialized data that decrypts to a Ruby array.
-- data with quotes, hyphens, or spaces will have issues with this query.
-- preview the YAML to JSON to confirm the conversion is working.
SELECT data, REPLACE(REPLACE(REPLACE(REPLACE(REGEXP_REPLACE(REPLACE(REPLACE(REPLACE(data,
' ', ''),
'...', ''),
'---', '["'),
E'[\\n\\r]+', '"', 'g'),
'''''', ''),
'-', ',"'),
'"",', ''),
'""', '')
|| ']' FROM table_name;
-- convert the YAML to JSON. (destructive)
UPDATE table_name SET data =
REPLACE(REPLACE(REPLACE(REPLACE(REGEXP_REPLACE(REPLACE(REPLACE(REPLACE(data,
' ', ''),
'...', ''),
'---', '["'),
E'[\\n\\r]+', '"', 'g'),
'''''', ''),
'-', ',"'),
'"",', ''),
'""', '')
|| ']';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment