Skip to main content

A short description of the awali_db_mapping package.

Project description

SQL Server Schema Exporter

This project provides a tool to connect to a Microsoft SQL Server database, extract the definitions of stored procedures, views, and tables, and save them into a structured directory layout (sprocs/, views/, tables/) as individual .sql files.

The primary goal is to facilitate version control, code review, and offline browsing of database schema objects. See system_knowledge/project_goal.md for more details.

The project uses a Behavior-Driven Development (BDD) approach with the Behave framework.

Setup and Installation

1. Clone the Repository

git clone <your-repository-url>
cd <your-repository-directory>

2. System Dependencies (ODBC Driver)

This tool uses the pyodbc Python library, which requires a system-level ODBC driver for SQL Server to be installed.

On macOS (using Homebrew):

# Tap the Microsoft repository (if you haven't already)
brew tap microsoft/mssql-release https://github.com/Microsoft/homebrew-mssql-release

# Update brew and install the driver (e.g., version 17)
brew update
brew install msodbcsql17
# Note: mssql-tools (sqlcmd, bcp) are optional for this script but often installed alongside
# brew install mssql-tools
  • Verify the driver installation by checking your odbcinst.ini file (e.g., cat $(brew --prefix)/etc/odbcinst.ini). You should see an entry like [ODBC Driver 17 for SQL Server].
  • The Python code in sql_schema_exporter/core.py specifies the driver name in the connection string (DRIVER={ODBC Driver 17 for SQL Server}). Ensure this matches the name registered in your odbcinst.ini.

On other systems (Linux/Windows):

Follow Microsoft's official documentation to install the appropriate ODBC driver for your operating system. Ensure the driver is correctly registered so pyodbc can find it.

3. System Dependencies (Graphviz - for Lineage)

To generate the visual lineage graph image (.png), the Graphviz command-line tools (dot, etc.) must be installed and available in your system's PATH.

On macOS (using Homebrew):

brew install graphviz

On Debian/Ubuntu Linux:

sudo apt update && sudo apt install graphviz

On Windows: Download from the official Graphviz website or use a package manager like Chocolatey (choco install graphviz). Ensure the bin directory of the Graphviz installation is added to your system's PATH environment variable.

Note: If Graphviz is not installed or found, the tool will still generate the .gv (DOT source) file, but it will report an error and skip rendering the image.

4. Python Dependencies

It's recommended to use a Python virtual environment.

# Create a virtual environment (optional but recommended)
python3 -m venv .venv

# Activate the virtual environment BEFORE installing packages
# On macOS/Linux:
source .venv/bin/activate
# On Windows:
# .venv\Scripts\activate

# Install required Python packages inside the active environment
pip install -r features/requirements.txt

The features/requirements.txt file includes:

  • pyodbc: For connecting to the database.
  • behave: For running the BDD tests.
  • graphviz: Python interface for creating Graphviz DOT files and rendering them.

Configuration (for Tests)

The Behave tests (features/steps/sql_schema_exporter_steps.py) require connection details for a test SQL Server database. These are read from environment variables to avoid hardcoding credentials. Set the following variables in your shell before running behave:

  • TEST_DB_SERVER: The server name/address of your test SQL Server instance.
  • TEST_DB_DATABASE: The name of the test database.
  • TEST_DB_USER: (Optional) The username for SQL Server authentication. Leave unset or empty to use Windows/Trusted Authentication.
  • TEST_DB_PASSWORD: (Optional) The password for SQL Server authentication. Leave unset if using Windows/Trusted Authentication.

Example (using SQL Authentication):

export TEST_DB_SERVER="your_test_server.database.windows.net"
export TEST_DB_DATABASE="MyTestDatabase"
export TEST_DB_USER="testuser"
export TEST_DB_PASSWORD="yoursecurepassword"

Example (using Windows/Trusted Authentication):

export TEST_DB_SERVER="localhost\\SQLEXPRESS"
export TEST_DB_DATABASE="MyTestDatabase"
# Leave TEST_DB_USER and TEST_DB_PASSWORD unset

Usage

Running the Exporter Tool

Execute the tool as a Python module from the root directory of the project (the directory containing the sql_schema_exporter folder). This ensures Python correctly recognizes the package structure.

# Make sure you are in the project's root directory
python -m sql_schema_exporter.cli

The tool will prompt you interactively for the connection details (server, database, authentication method, credentials). The extracted schema files will be placed in an output directory named after the database (e.g., YourDatabaseName/). After extracting the schema, the tool will also attempt to query database dependencies and generate a data lineage graph (YourDatabaseName_lineage.gv and YourDatabaseName_lineage.gv.png) in the same output directory.

Running the Tests

Ensure your test database environment variables are set (see Configuration section).

behave

This will run all scenarios defined in the features directory (including schema export and data lineage tests) against your test database. Test output files are temporarily created in features/test_output_data/YourTestDatabaseName/ and cleaned up afterwards.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

awali_db_mapping-0.0.3.tar.gz (16.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

awali_db_mapping-0.0.3-py3-none-any.whl (18.6 kB view details)

Uploaded Python 3

File details

Details for the file awali_db_mapping-0.0.3.tar.gz.

File metadata

  • Download URL: awali_db_mapping-0.0.3.tar.gz
  • Upload date:
  • Size: 16.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for awali_db_mapping-0.0.3.tar.gz
Algorithm Hash digest
SHA256 0f7aa787fe130d0fe99e049c64e8d1d9bb5c41e80a7e076dde3b7590251d2fef
MD5 f287a2a7d1572bbc6334be602947e15d
BLAKE2b-256 13b100534bc96306b567c260d6952d46a7a87dd20b40bb4c51d0d74bc31eb123

See more details on using hashes here.

Provenance

The following attestation bundles were made for awali_db_mapping-0.0.3.tar.gz:

Publisher: workflow.yml on AwaliTechnology/awali_db_mapping

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file awali_db_mapping-0.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for awali_db_mapping-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 ac3527e499ca98bdfa4ecad509a084529d5c0130df6c92e239332bcdbc2b69ce
MD5 151dd0ebdf76e8d711dda78093565cdd
BLAKE2b-256 b7e719ac9d8fad265c49a86814408d061bf192586ca24c9a0dc42c8591a54a8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for awali_db_mapping-0.0.3-py3-none-any.whl:

Publisher: workflow.yml on AwaliTechnology/awali_db_mapping

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page