SQL-Hero: Better Data Tools... Saving time and money.
Ready to receive up to a $350 benefit?
Plus: Exclusive content, tips and tools

What is SQL-Hero?
SQL-Hero is a tool suite that enhances productivity for developers and DBA's who use Microsoft SQL Server. It includes tool such as: an advanced SQL editor, code generator, compare tools (both schema and data), audit history (schema), unit testing, monitoring, tracing and data generation. It also includes xSkrape for SQL Server and xSkrape for SQL Server Integration Services.
How's that special? There's a lot of SQL tools on the market today...
There are a number of important differences that make SQL-Hero unique... and very powerful.
- The code generator addresses many, many use cases that others can't. We're working on extensive on-line documentation to help you create your own templates to do amazing things!
- xSkrape technology enables access to a nearly unlimited universe of data, right within SQL Server.
- Archive millons of data points related to monitoring and performance and report against these using an Analysis Services model using any visualization tool of your choice or a number of canned reports.
- Compare SQL-Hero with other technologies on our comparisons page: both from a technical and business perspective.
- Expect new capabilities in up-coming releases, based on your real-world feedback.
Watch a self-guided tour of SQL-Hero...
(click image to enlarge)














Learn more...
- Videos: a 6 minute high-level overview, plus a 36 minute deeper dive into individual features.
- More in-depth examination of SQL-Hero features
- Product family feature matrix
- What is xSkrape?
- SQL-Hero on-line documentation
- xSkrape for Excel Add-in
- xSkrape for SQL Server
- xSkrape for SQL Server Integration Services (SSIS)
- Product family overview
- Download software (30 day free evaluation)
- Order software
Spotlight Feature:
Substitute Parameters in a Query with Minimal Effort
Suppose you have the following SQL:
DECLARE @i int DECLARE @d datetime DECLARE @s varchar(100) SELECT * FROM SomeTable WHERE IntVal = @i AND DateVal >= @d AND StringVal LIKE @sIf you wanted to run the SELECT statement on its own with your own constant values for the parameters @i, @d and @s, one option is to copy-and-paste the statement text and change the parameters to your constants. SQL-Hero offers a way to perform this kind of substitution with very little effort. Hightlight the SELECT statement in the SQL-Hero editor and press F4. A pop-up window appears asking for parameter values for each of the 3 parameters. Once you provide values and press OK, a new editor is opened with the values properly substituted, including the necessary quoting, etc.