Summary
The Drasi Server Configure Reactions documentation is missing a page for the Microsoft SQL Server (MSSQL) Stored Procedure reaction. This reaction ships in Drasi Server but has no how-to guide, so users have no documented way to configure it.
Add a new how-to page documenting the MSSQL Stored Procedure reaction, following the structure and style of the existing Drasi Server reaction pages (e.g. the HTTP reaction page).
Background / References
What the reaction does
Invokes Microsoft SQL Server stored procedures when a continuous query's results change. It executes a different, configurable stored procedure for Added, Updated, and Deleted result changes, and maps query result fields into procedure parameters using the @ template syntax. SQL Server uses EXEC proc_name @param, ... command syntax (rather than CALL). It supports SSL/TLS encryption, configurable command timeout, and automatic retries with exponential backoff.
Scope / Tasks
Success Criteria
Summary
The Drasi Server Configure Reactions documentation is missing a page for the Microsoft SQL Server (MSSQL) Stored Procedure reaction. This reaction ships in Drasi Server but has no how-to guide, so users have no documented way to configure it.
Add a new how-to page documenting the MSSQL Stored Procedure reaction, following the structure and style of the existing Drasi Server reaction pages (e.g. the HTTP reaction page).
Background / References
storedproc-mssqldocs/content/drasi-kubernetes/how-to-guides/configure-reactions/configure-sql-stored-proc-reaction/_index.mdWhat the reaction does
Invokes Microsoft SQL Server stored procedures when a continuous query's results change. It executes a different, configurable stored procedure for Added, Updated, and Deleted result changes, and maps query result fields into procedure parameters using the
@template syntax. SQL Server usesEXEC proc_name @param, ...command syntax (rather thanCALL). It supports SSL/TLS encryption, configurable command timeout, and automatic retries with exponential backoff.Scope / Tasks
docs/content/drasi-server/how-to-guides/configuration/configure-reactions/configure-storedproc-mssql-reaction/_index.md.docs/content/drasi-server/how-to-guides/configuration/configure-reactions/_index.md(match the existing card-grid pattern).kind,id,queries, and plugin fields below).EXEC proc @p1, @p2command syntax used in templates (contrast with theCALLsyntax used by Postgres/MySQL).CREATE PROCEDURE ... AS BEGIN ... END; GO), adapted from the README's MSSQL examples.routesoverride example), adapted from the README.Success Criteria
hugo/existing docs build passes).type,title,linkTitle,weight,description,related).1433), and thekindvalue match the source implementation.EXECcommand syntax (vsCALL) is clearly documented.routes/multi-query example are present and syntactically valid YAML.