From b0cca2f6ea53d5618a314aa3adc13ae929b7cd70 Mon Sep 17 00:00:00 2001 From: Diego Arenas Date: Mon, 29 Apr 2019 20:18:42 +0100 Subject: [PATCH] README updated --- README.md | 2 +- src/explorer.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fbbe4d6..b3567f5 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ The metadata from the `source` database will be stored in a `metadata` database * Create two connections as described [here](docs/Connections.md) to a source database and to the metadata database. * Source database: This is the DB you want to explore. You don't need any additional information, just a valid connection to the database. * Metadata database: It can be created if not exists. This database will store the information from the source databases. -* Edit the call of `describe_server()`. +* Edit the two connection strings and then the call of `describe_server()` in [`explorer.py`](src/explorer.py). * Run it with `python explorer.py` ## To Do diff --git a/src/explorer.py b/src/explorer.py index bdcc32b..40709f0 100644 --- a/src/explorer.py +++ b/src/explorer.py @@ -4,6 +4,7 @@ SOURCE_ENGINE = 'mssqlserver' # or one of the above METADATA_ENGINE = 'mssqlserver' # or one of the above +# Edit with your connections source_connection_params = 'string_connections/' metadata_connection_params = 'string_connections/' @@ -13,4 +14,5 @@ aeda.test_source_connection() aeda.test_metadata_connection() +# Edit with your server name aeda.describe_server('') \ No newline at end of file