diff --git a/schemacrawler-website/src/site/markdown/database-support.md b/schemacrawler-website/src/site/markdown/database-support.md index 4f7fd926c3..381c55cec2 100644 --- a/schemacrawler-website/src/site/markdown/database-support.md +++ b/schemacrawler-website/src/site/markdown/database-support.md @@ -6,7 +6,7 @@ SchemaCrawler is bundled with JDBC drivers for some commonly used relational dat The JDBC drivers for database systems commonly used with SchemaCrawler are included with the SchemaCrawler download: -- [SQLite](https://www.sqlite.org/) [Xerial SQLite JDBC driver](https://github.com/xerial/sqlite-jdbc) +- [SQLite](https://www.sqlite.org/) [Xerial SQLite JDBC driver](https://github.com/xerial/sqlite-jdbc) - [Oracle](https://www.oracle.com/) [JDBC driver](https://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html) - [Microsoft SQL Server](https://www.microsoft.com/sqlserver/) [JDBC driver](https://github.com/Microsoft/mssql-jdbc) - [IBM DB2](https://www.ibm.com/software/data/db2/) [JDBC driver](https://www.ibm.com/support/pages/db2-jdbc-driver-versions-and-downloads) @@ -17,7 +17,7 @@ The JDBC drivers for database systems commonly used with SchemaCrawler are inclu - Offline database support does not need any JDBC driver For any other database that includes a compliant JDBC driver, place the JDBC in the -SchemaCrawler `lib` directory. [Amazon Aurora](https://aws.amazon.com/rds/aurora/) is supported +SchemaCrawler `lib` directory. [Amazon Aurora](https://aws.amazon.com/rds/aurora/) is supported in MySQL and PostgreSQL modes. @@ -90,14 +90,14 @@ You can also pass connection properties using the `--urlx` command-line switch. If your Microsoft SQL Server instance is set up with instance names, named pipes, or Windows authentication, you will need to use a database connection URL. See the [documentation for the Microsoft JDBC Driver for SQL Server](https://docs.microsoft.com/sql/connect/jdbc/connecting-to-sql-server-with-the-jdbc-driver) -for details. If you are using the URL version of the command-line, it may be a good idea to include the database name as one of +for details. If you are using the URL version of the command-line, it may be a good idea to include the database name as one of the connection URL property (`databaseName`). Typical command-line arguments for connecting to SQL Server with Windows authentication will look like: ``` --server=sqlserver \ ---url= \ +--url=jdbc:sqlserver://db.example.com:1433;databaseName=master;encrypt=false \ --schemas=schemacrawler.dbo \ --user= \ --password= \ @@ -130,7 +130,7 @@ are interested in, for Oracle. You can use a query similar to `SELECT GLOBAL_NAME FROM GLOBAL_NAME` to find the Oracle Service Name. - + Typical command-line arguments will look like: ``` diff --git a/schemacrawler-website/src/site/markdown/docker-image.md b/schemacrawler-website/src/site/markdown/docker-image.md index 2d1f88abcb..c5b5a3c88d 100644 --- a/schemacrawler-website/src/site/markdown/docker-image.md +++ b/schemacrawler-website/src/site/markdown/docker-image.md @@ -34,8 +34,8 @@ connect --server=sqlite --database=sc.db load --info-level=minimum execute --command list ``` -The easiest way to learn how to use the SchemaCrawler Interactive Shell is by doing the -[live online tutorial](https://killercoda.com/schemacrawler/scenario/schemacrawler-shell). The tutorial works from within +The easiest way to learn how to use the SchemaCrawler Interactive Shell is by doing the +[live online tutorial](https://killercoda.com/schemacrawler/scenario/schemacrawler-shell). The tutorial works from within any browser with no software or plugins needed. @@ -49,8 +49,8 @@ schemacrawler \ --info-level=maximum --command=schema ``` -The easiest way to learn how to use the SchemaCrawler command-line is by doing the -[live online tutorial](https://killercoda.com/schemacrawler/scenario/schemacrawler). The tutorial works from within +The easiest way to learn how to use the SchemaCrawler command-line is by doing the +[live online tutorial](https://killercoda.com/schemacrawler/scenario/schemacrawler). The tutorial works from within any browser with no software or plugins needed.