Skip to content

Commit

Permalink
First attempt at Oracle's comment SQL.
Browse files Browse the repository at this point in the history
  • Loading branch information
johncurrier committed May 3, 2006
1 parent 812c683 commit 33b7cb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/net/sourceforge/schemaspy/dbTypes/ora.properties
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ selectIndexesSql=select null as table_cat, owner as table_schem, table_name, 0 a

# return table_name, comments for a specific :schema
# useful if db driver doesn't return this info
#selectTableCommentsSql=
selectTableCommentsSql=select table_name, comments from all_tab_comments where owner=:owner

# return table_name, column_name, comments for a specific :schema
# useful if db driver doesn't return this info
#selectColumnCommentsSql=
selectColumnCommentsSql=select table_name, column_name, comments from all_col_comments where owner=:owner


# regular expression used in conjunction with -all (and can be command line param '-schemaSpec')
Expand Down

0 comments on commit 33b7cb9

Please sign in to comment.