Getting Started¶
Follow these three steps to start analysing your SQL scripts with Gudu SQLImpact.
1. Download the JAR¶
Grab the latest gudu-sqlimpact.jar
from the Download page.
2. Prepare Your SQL¶
Place your SQL files in a directory. Nested folders are fine; wildcards are supported.
1 2 3 4 5 6 |
|
3. Run SQLImpact¶
1 2 3 4 5 |
|
--dialect
– Database dialect of the SQL to parse.--in
– File or glob pattern to analyse.--summary
– (Optional) Produce aggregated view instead of per-statement detail.--out
– Output file path.
When the command finishes you will find summary.json
ready for inspection.
For Windows users, use the following command in Command Prompt (cmd.exe). Note the caret (^) is used for line continuation instead of backslash:
1 2 3 4 5 |
|
Next Steps¶
- Explore all options in the CLI Reference.
- Check Examples for common scenarios.