Skip to content

Commit

Permalink
minor modification in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Peihan Wang committed Aug 25, 2017
1 parent 3f76a4e commit 6b7bb63
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions README.md
Expand Up @@ -56,11 +56,13 @@ eg : -L usr/passwd@sid:dbhost -q "select x,y,z from some_view" -D #EOR# -O tab
##### simple dump (most common usage)

```
## for branch v-0.1
# for branch v-0.1
$ java -cp orauld.jar:../lib/ojdbc14.jar \
## for branch v-0.2 (Gradle shadow fat-jar)
$ java -cp orauld.jar \
> github.peihanw.orauld.OrauldMain \
# for branch v-0.2 (Gradle shadow fat-jar)
$ java -jar orauld.jar \
> -L scott/tiger@orcl:192.168.200.88 \
> -q "select * from rqst_log where yyyymm=201601" \
> -o rqst_log_201601.bcp -v 1
Expand All @@ -69,11 +71,13 @@ $ java -cp orauld.jar \
##### generate a control file according to the table schema

```
## for branch v-0.1
# for branch v-0.1
$ java -cp orauld.jar:../lib/ojdbc14.jar \
## for branch v-0.2 (Gradle shadow fat-jar)
$ java -cp orauld.jar \
> github.peihanw.orauld.OrauldMain \
# for branch v-0.2 (Gradle shadow fat-jar)
$ java -jar orauld.jar \
> -L scott/tiger@orcl:192.168.200.88 \
> -q "select * from rqst_log" \
> -O rqst_log.ctl
Expand All @@ -88,5 +92,5 @@ $ java -cp orauld.jar \
#### TODO

- Replace JDK LinkedBlockingQueue with com.conversantmedia:disruptor to impove performance. (implemented in branch v-0.2)
- Support DATE/TIMESTAMP WITH TIMEZONE.
- Support DATE/TIMESTAMP WITH TIMEZONE. (canceled: no documents for internal timezone codes, please use to_char())

0 comments on commit 6b7bb63

Please sign in to comment.