DDReservedWords

This is a helper table that is used in several of our internal scripts. Nothing to see here. Move along

 

if exists (select 1 from INFORMATION_SCHEMA.tables where table_name = 'DDReservedWords') begin
    drop table DDReservedWords
end
 
CREATE TABLE dbo.DDReservedWords
    (
    RowID int NOT NULL IDENTITY (1, 1),
    FieldName varchar(255) NOT NULL
    ON [PRIMARY]
GO
ALTER TABLE dbo.DDReservedWords ADD CONSTRAINT
    PK_DDReservedWords_1 PRIMARY KEY CLUSTERED
    (
    RowID
    ) WITH( STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
 
GO
 
insert into DDReservedWords(FieldName) values ('USER')
insert into DDReservedWords(FieldName) values ('END')
insert into DDReservedWords(FieldName) values ('OPTION')


RealWorldCode gives developers practical, real‑world solutions with clean, working code — no fluff, no theory, just answers.
Links
Home
Knowledge Areas
Sitemap
Contact
Et cetera
Privacy Policy
Terms and Conditions
Cookie Preferences