Skip to content

Commit 700862d

Browse files
author
qwazer
committed
scheme2ddl-28 replace-sequence-values option
1 parent 456a47c commit 700862d

File tree

2 files changed

+19
-17
lines changed

2 files changed

+19
-17
lines changed

README.md

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,23 @@ More command line options
3939
java -jar scheme2ddl.jar -help
4040
...
4141
Options:
42-
-help, -h print this message
43-
-url, DB connection URL
44-
example: scott/tiger@localhost:1521:ORCL
45-
-o, --output, output dir
46-
-p, --parallel, number of parallel thread (default 4)
47-
-s, --schemas, a comma separated list of schemas for processing
48-
(works only if connected to oracle as sysdba)
49-
-c, --config, path to scheme2ddl config file (xml)
50-
-f, --filter, filter for specific DDL objects
51-
every LIKE wildcard can be used
52-
-tf, --type-filter, filter for specific DDL object types
53-
-tfm, --type-filtermode, mode for type filter: include(default) or exclude
54-
--stop-on-warning, stop on getting DDL error (skip by default)
55-
-tc,--test-connection, test db connection available
56-
-version, print version info and exit
42+
-help, -h print this message
43+
-url, DB connection URL
44+
example: scott/tiger@localhost:1521:ORCL
45+
-o, --output, output dir
46+
-p, --parallel, number of parallel thread (default 4)
47+
-s, --schemas, a comma separated list of schemas for processing
48+
(works only if connected to oracle as sysdba)
49+
-c, --config, path to scheme2ddl config file (xml)
50+
-f, --filter, filter for specific DDL objects
51+
every LIKE wildcard can be used
52+
-tf, --type-filter, filter for specific DDL object types
53+
-tfm, --type-filtermode, mode for type filter: include(default) or exclude
54+
--stop-on-warning, stop on getting DDL error (skip by default)
55+
-rsv, replace actual filter values with 1
56+
--replace-sequence-values,
57+
-tc,--test-connection, test db connection available
58+
-version, print version info and exit
5759

5860

5961

src/main/java/com/googlecode/scheme2ddl/Main.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,8 @@ private static void printUsage() {
259259
msg.append(" -tf, --type-filter, filter for specific DDL object types" + lSep);
260260
msg.append(" -tfm, --type-filtermode, mode for type filter: include(default) or exclude" + lSep);
261261
msg.append(" --stop-on-warning, stop on getting DDL error (skip by default)" + lSep);
262-
msg.append(" -rsv, replace actual filter values with 1 " +
263-
" --replace-sequence-values, " + lSep);
262+
msg.append(" -rsv, replace actual filter values with 1 " + lSep);
263+
msg.append(" --replace-sequence-values, " + lSep);
264264
msg.append(" -tc,--test-connection, test db connection available" + lSep);
265265
msg.append(" -version, print version info and exit" + lSep);
266266
System.out.println(msg.toString());

0 commit comments

Comments
 (0)