Hi
I am looking through my stored procedures on my server and I got alot of them. The thing is I only made like 10 of the 100 there.
These stored procedures are not system ones(that has its own folder).
They seem to be stored procedures for every table I have.
Example of one
USE [DB]
GO
/****** Object: StoredProcedure [dbo].[usp_SomeDelete] Script Date: 06/17/2010 11:58:39 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROC [dbo].[usp_SomeDelete]
@UserId uniqueidentifier
AS
SET NOCOUNT ON
SET XACT_ABORT ON
BEGIN TRAN
DELETE
FROM [dbo].[MyTable]
WHERE [UserId] = @UserId
COMMIT