Does anyone know of a freeware to generate SQL Server stored procedure (ie trigger) from a SQL statement?
I mean I don't want the just basic CRUD stored procedures... What I'm looking for is something like this:
Taking a SQL statement like:
INSERT INTO TableB (ColumnA, ColumnB...)
(SELECT Distinct ValueA,ValueB FROM someTable where someColumn = someValue)
And issuing the complete stored procedure statements...