SQL Toolbelt Lite brings Redgate-inspired productivity features directly into Visual Studio Code. It layers intelligent completions, metadata-rich hovers, wildcard expansion, snippets, history, and scripting utilities on top of the official MSSQL extension—no external tools required.
- VS Code 1.85.0+
- MSSQL extension installed and connected to a SQL Server instance. SQL Toolbelt Lite reuses its active connection for every feature.
- Schema-aware completions – Suggest schemas, tables, views, columns, stored procedures, and functions from the active database. After typing
FROM, tables surface; afteralias., only relevant columns appear. Optional JOIN hints draw from foreign key metadata. - Parameter hints & hovers – Hover any identifier to view column data types, extended descriptions, or summarized routine definitions and signatures.
- Expand wildcard – Command palette entry and
Ctrl+Alt+W(Cmd+Alt+Won macOS) replace*with a formatted column list, optionally filtered through a Quick Pick. - Snippets – Built‑in patterns (
ssf,ii,ue,ct) accelerate SELECT, INSERT, UPDATE, and CREATE TABLE boilerplate. Add custom snippets via configuration or the global storage file. - SQL history & recovery – Every executed query is logged with timestamp and connection details. Browse, search, favorite, reopen, copy, or delete items from the SQL History view. Optionally restore unsaved editors on startup.
- Script objects – Script objects under the cursor as
ALTERorCREATEstatements in fresh untitled editors. Works for procedures, functions, and views viaOBJECT_DEFINITION.
| Command | Description |
|---|---|
sqlToolbelt.expandWildcard |
Expand SELECT * into an explicit column list. |
sqlToolbelt.scriptAsAlter |
Script the object beneath the caret as ALTER. |
sqlToolbelt.scriptAsCreate |
Script the object beneath the caret as CREATE. |
sqlToolbelt.openHistory |
Focus the SQL Toolbelt activity view and show history. |
sqlToolbelt.reopenFromHistory |
Open the highlighted history entry in a new editor. |
sqlToolbelt.toggleFavoriteHistory |
Star or unstar a history entry. |
sqlToolbelt.copyHistory |
Copy the selected history query to the clipboard. |
sqlToolbelt.deleteHistory |
Remove the selected history entry. |
sqlToolbelt.clearHistory |
Remove all history entries after confirmation. |
sqlToolbelt.history.search |
Prompt for filter text applied to the SQL history view. |
| Setting | Default | Purpose |
|---|---|---|
sqlToolbelt.history.maxItems |
1000 |
Cap the number of history entries retained. |
sqlToolbelt.history.restoreOnStartup |
true |
Reopen unsaved SQL buffers logged on shutdown. |
sqlToolbelt.snippets.customFile |
"" |
Absolute path to a JSON file describing additional snippets. Leave blank to use the auto-managed file in extension storage. |
sqlToolbelt.completion.enableJoinHints |
false |
Offer JOIN snippets inferred from foreign keys. |
sqlToolbelt.expandWildcard.quickPick |
false |
Ask which columns to insert when expanding wildcards (recommended for wide tables). |
Point sqlToolbelt.snippets.customFile to a JSON object shaped like the VS Code snippet schema:
{
"SelectTopCustomers": {
"body": "SELECT TOP (10) * FROM Sales.Customers;",
"description": "List top 10 customers"
}
}If you omit the setting, SQL Toolbelt Lite creates custom-snippets.json under the extension’s global storage folder. Populate it with the same structure.
- Activate the extension by opening a
.sqldocument connected through the MSSQL extension. - Use the SQL History tree view (Activity Bar → SQL Toolbelt) to browse, search, and manage previously executed statements. Favorites surface in a dedicated group.
- Unsaved SQL editors closed during the last session are restored automatically when
restoreOnStartupis enabled. - Script commands rely on
OBJECT_DEFINITION. Ensure the executing account has sufficient permissions to inspect metadata.
- Install dependencies:
npm install - Compile the extension:
npm run compile - Launch the extension host (F5) and choose “SQL Toolbelt Lite” when prompted.
- Initial release with intelligent completions, hovers, wildcard expansion, history view, scripting commands, and snippet enhancements.