简体   繁体   中英

Schemacrawler is not fetching the data from oracle

I tried to fetch Mysql table details as below, it is fetching all the table detail but it is not fetching any data from oracle using below sc commands. Is it required any additional configuration for oracle.

MySql sc -driver=com.mysql.jdbc.Driver -url=jdbc:mysql://localhost:3306/doctool -user=root -password=password -schemas=doctool -infolevel=standard -command=list

Oracle sc -driver=oracle.jdbc.driver.OracleDriver -url=jdbc:oracle:thin:@localhost:1521:orcl -user=certus2713 -password=certus2713 -schemas=certus2713 -infolevel=standard -command=list

Venkatesan,

The Oracle driver and database may be case-sensitive. Please try -schemas=CERTUS2713 Or, you can try to drop the -schemas altogether.

Sualeh Fatehi, SchemaCrawler

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM