{"id":18451201,"url":"https://github.com/avodonosov/fix-ora-output","last_synced_at":"2026-01-23T18:31:38.140Z","repository":{"id":4180712,"uuid":"5297473","full_name":"avodonosov/fix-ora-output","owner":"avodonosov","description":"Utility to pretty reformat SQL query output generated by Oracle development tools like SQL*Plus or TOAD, when the default value of the LINESIZE system variable was used.","archived":false,"fork":false,"pushed_at":"2012-08-06T11:45:32.000Z","size":104,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-05T07:56:14.354Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Common Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/avodonosov.png","metadata":{"files":{"readme":"README.markdown","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-08-04T18:04:55.000Z","updated_at":"2013-12-22T02:59:56.000Z","dependencies_parsed_at":"2022-09-10T13:02:26.653Z","dependency_job_id":null,"html_url":"https://github.com/avodonosov/fix-ora-output","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/avodonosov/fix-ora-output","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avodonosov%2Ffix-ora-output","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avodonosov%2Ffix-ora-output/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avodonosov%2Ffix-ora-output/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avodonosov%2Ffix-ora-output/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/avodonosov","download_url":"https://codeload.github.com/avodonosov/fix-ora-output/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avodonosov%2Ffix-ora-output/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28697428,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T17:25:48.045Z","status":"ssl_error","status_checked_at":"2026-01-23T17:25:47.153Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-06T07:27:52.707Z","updated_at":"2026-01-23T18:31:38.113Z","avatar_url":"https://github.com/avodonosov.png","language":"Common Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"The output produced by SQL*Plus or TOAD with the default value of the LINESIZE \r\nsystem variable is quite nasty. Similar to the following:\r\n```\r\nSQL\u003e select * from users;\r\n\r\n        ID\r\n----------\r\nNAME                                                                            \r\n--------------------------------------------------------------------------------\r\nSURNAME                                                                         \r\n--------------------------------------------------------------------------------\r\nLOGIN                                                                           \r\n--------------------------------------------------------------------------------\r\nPASSWORD                                                                        \r\n--------------------------------------------------------------------------------\r\nREGISTRATION_TIME            \r\n-----------------------------\r\n         1\r\nivan                                                                            \r\nivanov                                                                          \r\nvanya                                                                           \r\n123                                                                             \r\n26.06.08 21:16:12,000000     \r\n                                                                                \r\n         2\r\npetr                                                                            \r\npetrov                                                                          \r\npetya                                                                           \r\n\r\n        ID\r\n----------\r\nNAME                                                                            \r\n--------------------------------------------------------------------------------\r\nSURNAME                                                                         \r\n--------------------------------------------------------------------------------\r\nLOGIN                                                                           \r\n--------------------------------------------------------------------------------\r\nPASSWORD                                                                        \r\n--------------------------------------------------------------------------------\r\nREGISTRATION_TIME            \r\n-----------------------------\r\nqwerty                                                                          \r\n26.06.08 21:16:12,000000     \r\n                                                                                \r\n         3\r\nsidor                                                                           \r\nsidorov                                                                         \r\nsid                                                                             \r\npassword                                                                        \r\n26.06.08 21:16:12,000000     \r\n                                                                                \r\n\r\n\r\n3 rows selected.\r\n\r\nSQL\u003e spool off;\r\n\r\n```\r\n\r\nSometimes we need to deal with such data when we have no direct access to the database,\r\nfor example when the output is sent to you by customer.\r\n\r\nThe ```fix-ora-output``` utility converts such an output to a pretty thing like this:\r\n```\r\nID         NAME                                                                             SURNAME                                                                          LOGIN                                                                            PASSWORD                                                                         REGISTRATION_TIME             \r\n---------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- ----------------------------- \r\n         1 ivan                                                                             ivanov                                                                           vanya                                                                            123                                                                              26.06.08 21:16:12,000000      \r\n         2 petr                                                                             petrov                                                                           petya                                                                            qwerty                                                                           26.06.08 21:16:12,000000      \r\n         3 sidor                                                                            sidorov                                                                          sid                                                                              password                                                                         26.06.08 21:16:12,000000      \r\n\r\n```\r\nUsage instructions are at the top of the _fix-ora-output.lisp_.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favodonosov%2Ffix-ora-output","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Favodonosov%2Ffix-ora-output","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favodonosov%2Ffix-ora-output/lists"}