donalexander
MIS
Hello,
I want to create a store procedure, which I have never done before and intimidating. I want to delete all the rows in a table my coding will be below
USE [ATAS00_app]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
--Delete rows in General Ledger table
DELETE dbo.GLDetl
Do I need to add/code anything else will the table be close automatically? Do I have to worry about anything maintenance on the table? Thank you in advance
I want to create a store procedure, which I have never done before and intimidating. I want to delete all the rows in a table my coding will be below
USE [ATAS00_app]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
--Delete rows in General Ledger table
DELETE dbo.GLDetl
Do I need to add/code anything else will the table be close automatically? Do I have to worry about anything maintenance on the table? Thank you in advance