Generate safe T-SQL stored-procedure debug harness scripts (analyze, DML previews, EXEC stubs)
Project description
sql-sp-harness
T-SQL Stored Procedure Debug Harness — turn SQL Server stored procedures into safe, runnable debug scripts you can execute on a pre-production database without writing to real tables.
Documentation site: https://deeprajdeveloper.github.io/sql-sp-harness/ (GitHub Pages). Site styles live in docs/scss/; compile with npx sass docs/scss/styles.scss docs/scss/css/styles.css. CI syncs docs/version.json from the package via python3 scripts/sync_docs_version.py before each Pages deploy.
Not a live debugger. This tool generates a static test harness (DML previews + EXEC PRINT stubs + variable traces), not breakpoints or step-into debugging.
Not affiliated with Microsoft. "SQL Server" and T-SQL are used descriptively only.
What it does
| Command | Purpose |
|---|---|
analyze |
See what keyword elements that procedure contains along with counts — DML, TRY/CATCH, loops, SET, line-level detail |
generate |
Create a debug harness: real-table DML → SELECT previews, nested EXEC → PRINT stubs, PRINT traces on variables |
Output includes a banner on the top of the procedure stating: DEBUG HARNESS — DO NOT RUN ON PRODUCTION.
Install
macOS / Linux:
pip install sql-sp-harness
# or: pip3 install sql-sp-harness
Windows:
py -m pip install sql-sp-harness
Requires Python 3.10+.
Verify (console script or module):
sql-sp-harness version
# alias: sp-harness version
python3 -m sql_sp_harness version # macOS / Linux
py -m sql_sp_harness version # Windows
Quick start
sql-sp-harness analyze -i MyProc.sql
sql-sp-harness generate -i MyProc.sql -o MyProc_debug.sql
With traces in the Messages tab (default):
sql-sp-harness generate -i MyProc.sql -o MyProc_debug.sql --trace-style print
By default, generate removes original line (--) and block (/* */) comments from the output. Use --keep-comments to preserve them (harness [DBG-*] markers are always added).
Script preparation
Deploy preamble (IF EXISTS … DROP PROCEDURE, standalone DROP PROCEDURE, SET ANSI_NULLS, SET QUOTED_IDENTIFIER) is removed for both analyze and generate. Only SSMS-style deploy blocks are stripped — in-procedure IF EXISTS (SELECT … FROM …) checks (including multi-line predicates) are kept.
generate also rewrites CREATE PROCEDURE into DECLARE parameters so the script does not create the procedure on the server.
Nested EXEC stubbing
generate replaces in-procedure EXEC / EXECUTE calls (including multi-line parameter lists) with [DBG-EXEC] PRINT stubs that show:
- which stored procedure would run
- the full runnable
EXEC …command with parameter assignments - runtime values for
@parameters viaPRINT CONCAT
Example output:
-- [DBG-EXEC] Would have executed stored procedure dbo.proc_name2
PRINT N'[DBG-EXEC] Procedure: dbo.proc_name2';
PRINT N'[DBG-EXEC] Command: EXEC dbo.proc_name2 @fld1 = @fld1, @fld2 = @fld2';
PRINT N'[DBG-EXEC] Parameters:';
PRINT CONCAT(N'[DBG-EXEC] @fld1 = ', CAST(@fld1 AS NVARCHAR(4000)));
--no-stub-dml skips DML replacement but still stubs nested EXEC calls. Dynamic SQL (EXEC(@sql), sp_executesql) is not rewritten.
Analyze options
sql-sp-harness analyze -i MyProc.sql --report MyProc.txt # plain-text file
sql-sp-harness analyze -i MyProc.sql --plain # no ANSI colors on terminal
sql-sp-harness analyze -i MyProc.sql --full # show zero-count sections
Step log (audit trail)
Use --log to write a timestamped log beside the input (MyProc.log), or --log-file path/to/run.log for a custom path. Works with both analyze and generate.
Each line uses the format [datetime] [function_name] [LEVEL] message. INFO lines mark milestones (file read, preamble strip, transform complete); DEBUG lines list per-line edits (comment removal, DML stubs, EXEC stubs, trace injection, preamble removal). Functions include strip_deploy_preamble, strip_comments, _apply_line_edits, inject_traces, and others.
sql-sp-harness generate -i MyProc.sql -o MyProc_debug.sql --log
sql-sp-harness analyze -i MyProc.sql --log-file /tmp/myproc-analyze.log
With --log, progress still prints to stderr unless you also pass --quiet (the log file always receives full detail).
Development
git clone https://github.com/DeeprajDeveloper/sql-sp-harness.git
cd sql-sp-harness
pip install -e ".[dev]"
pytest
Sample SQL files for manual testing live under samples/ (e.g. samples/sample1.sql, samples/sql/enterprise_complex_proc.sql).
Build for PyPI:
./scripts/publish-pypi.sh
./scripts/publish-pypi.sh upload
When bumping the package version, also run python3 scripts/sync_docs_version.py so the docs site version badge stays in sync.
File encoding
SSMS often saves scripts as UTF-16 LE (Unicode). Older Windows exports may use Windows-1252 (smart quotes, en-dashes). The CLI auto-detects these; output is always UTF-8. Override with --encoding if needed:
sql-sp-harness generate -i MyProc.sql -o MyProc_debug.sql --encoding utf-16-le
Limitations
| Pattern | Behavior |
|---|---|
| Dynamic SQL | Not analyzed |
| Encrypted procedures | No source |
| Cursors | Not rewritten |
| DDL inside proc | Not stubbed |
Dynamic EXEC (EXEC(@sql), sp_executesql) |
Not rewritten |
| Nested EXEC calls | Replaced with [DBG-EXEC] PRINT stubs |
| SSMS deploy preamble | Stripped; in-procedure IF EXISTS preserved |
Always review generated scripts before running them on the database server.
License
MIT
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sql_sp_harness-1.0.6.tar.gz.
File metadata
- Download URL: sql_sp_harness-1.0.6.tar.gz
- Upload date:
- Size: 33.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3b6e22ee6263056c51b759cea9e8cc86e86d1baf3a56654789de6eecd6e826c
|
|
| MD5 |
030bb7039c9a30cf85532ef4e63e0382
|
|
| BLAKE2b-256 |
e9914e90585fa268b1b0ae6f0f1a7dc5076c184baffa8f58d2db2150bc2b656f
|
Provenance
The following attestation bundles were made for sql_sp_harness-1.0.6.tar.gz:
Publisher:
publish-pypi.yml on DeeprajDeveloper/sql-sp-harness
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sql_sp_harness-1.0.6.tar.gz -
Subject digest:
d3b6e22ee6263056c51b759cea9e8cc86e86d1baf3a56654789de6eecd6e826c - Sigstore transparency entry: 1740309976
- Sigstore integration time:
-
Permalink:
DeeprajDeveloper/sql-sp-harness@1438a743236df60f0a8074ba69697828a9dc595b -
Branch / Tag:
refs/heads/master - Owner: https://github.com/DeeprajDeveloper
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1438a743236df60f0a8074ba69697828a9dc595b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file sql_sp_harness-1.0.6-py3-none-any.whl.
File metadata
- Download URL: sql_sp_harness-1.0.6-py3-none-any.whl
- Upload date:
- Size: 37.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
155b7a869731aa819f123f4a57aef1c81794ce1c071eed0a9a45d7823a299a49
|
|
| MD5 |
569de59e63fce16e46c9c4acb5f2b174
|
|
| BLAKE2b-256 |
433ed68bc8bc77e48ae000c11facd62c70badc179d984b60ada8b13289a26cf8
|
Provenance
The following attestation bundles were made for sql_sp_harness-1.0.6-py3-none-any.whl:
Publisher:
publish-pypi.yml on DeeprajDeveloper/sql-sp-harness
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sql_sp_harness-1.0.6-py3-none-any.whl -
Subject digest:
155b7a869731aa819f123f4a57aef1c81794ce1c071eed0a9a45d7823a299a49 - Sigstore transparency entry: 1740309982
- Sigstore integration time:
-
Permalink:
DeeprajDeveloper/sql-sp-harness@1438a743236df60f0a8074ba69697828a9dc595b -
Branch / Tag:
refs/heads/master - Owner: https://github.com/DeeprajDeveloper
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1438a743236df60f0a8074ba69697828a9dc595b -
Trigger Event:
workflow_dispatch
-
Statement type: