Language: 中文 | English
This page is the reviewer-facing demo entry point. It explains what the project does without requiring access to private enterprise SQL assets.
The system parses Oracle and enterprise data warehouse SQL, builds field-level lineage, and renders the result as an interactive graph for governance, impact analysis, and audit review.
Given a target field such as ICL.CUSTOMER_DAILY_SNAPSHOT.CUSTOMER_TIER, the analyzer can trace where the value comes from, which upstream tables contribute to it, and which transformation expression produced it.
Pipeline:
- Source SQL, procedure, control, and spreadsheet files are discovered from configured data sources.
- Parser registry routes each file to the correct parser.
- Parse results are cached and indexed.
- Lineage, caliber, and indicator services answer API queries.
- The frontend renders the graph with D3.js.
python3.11 -m venv .venv
source .venv/bin/activate
python3.11 -m pip install -r requirements.txt
python3.11 run_app.pyOpen http://localhost:8899/static/index.html.


