Skip to content

Commit

Permalink
README updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Arenas authored and Diego Arenas committed Apr 29, 2019
1 parent e99673e commit b0cca2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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(<YOUR_SERVER>)`.
* Edit the two connection strings and then the call of `describe_server(<YOUR_SERVER>)` in [`explorer.py`](src/explorer.py).
* Run it with `python explorer.py`

## To Do
Expand Down
2 changes: 2 additions & 0 deletions src/explorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/<YOUR_SOURCE_STRING_CONNECTION>'
metadata_connection_params = 'string_connections/<YOUR_METADATA_STRING_CONNECTION>'

Expand All @@ -13,4 +14,5 @@
aeda.test_source_connection()
aeda.test_metadata_connection()

# Edit with your server name
aeda.describe_server('<YOUR_SERVER_NAME>')

0 comments on commit b0cca2f

Please sign in to comment.