I should probably start a new topic for this, but what do you think of the following database layout?
create table supportRequest_ID (
req_id int not null primary key IDENTITY(1,1),
req_type char(3) not null check(req_type in('HDR', 'SCR', '400'),
dep_nameShort char(3) not null...