| 12345678910111213141516171819202122232425262728 | ## see http://schemaspy.sourceforge.net/dbtypes.html# for configuration / customization details#description=IBM DB2 with the 'App' DriverconnectionSpec=jdbc:db2:<db>db=database namedriver=COM.ibm.db2.jdbc.app.DB2Driver# you can use the -cp command line option if you preferdriverPath=c:/Program Files/IBM/SQLLIB/java/db2java.zip# return text that represents a specific :view / :schemaselectViewSql=select text from syscat.views where viewname=:view and viewschema=:schema# return table_name, constraint_name and text for a specific :schemaselectCheckConstraintsSql=select constname constraint_name, tabname table_name, text from syscat.checks where tabschema=:schemaselectTableIdsSql=select tableid table_id, tabname table_name from syscat.tables where tabschema=:schemaselectIndexIdsSql=select iid index_id, indname index_name, tabname table_name from syscat.indexes where tabschema=:schema# regular expression used in conjunction with -all (and can be command line param '-schemaSpec')# this says which schemas to include in our evaluation of "all schemas"# basically .* (at the end) matches anything and the rest of it says "except schemas starting with SYS"schemaSpec=(?!^SYS.*$).*
 |