From 18bbafea0a2548fb99d12845b85af959e2aa9369 Mon Sep 17 00:00:00 2001 From: theaspect Date: Sat, 15 Mar 2025 18:40:57 +0700 Subject: [PATCH] Add readme file --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..85da893 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# Apex DDL Splitter + +Oracle APEX could export Schema DDL. +The problem is the order of objects in sql file is unstable. +You can't effectively compare dump files between each other in version control system like git. + +This app split a single SQL file into many small sql files and in each file exactly one object stored. + +To run it you can just + +`java -jar apex-ddl-splitter.java your-dump.sql` +or +`apex-ddl-splitter.exe your-dump.sql` + +The result will be in `your-dump/` folder relative to input sql + +Optionally you can provide output folder as a second parameter