How do I generate CRUD stored procedures from a table in SQL Server Management Studio

crud, sql, sql-server, ssms, t-sql

Solution

SSMS doesn't have the capability to generate CRUD procedures. You can generate INSERT, UPDATE statements etc. by right-clicking, Script Table As > but I think you will have better luck with Mladen Prajdic's SSMS Tools Pack.

Problem

How do I take a table, and auto-gen CRUD stored procs for it in SSMS?

Original source

Related problems