好的,所以有一点背景......作为一名程序员优先,数据库设计经验有限,我犯了几个新手错误,即统一代码查找表和另一个表上的 EAV 实现。我目前正在尝试将它们改造成更多的传统 RDBMS,但我想绝对确定这次我做对了。
我的大问题表是一个包含 150 列左右的大表,其中包含我们必须向州报告的客户数据。这些数据中的大部分使用特定于状态的查找值,因此根据我当前的设计计划,我最终将获得 75-100 个 FK 到不同的查找表。
现在我们需要对这些数据进行报告,所以我需要能够轻松地引用每个属性的代码值和描述。我能想到的唯一选择是创建两个单独的视图(或者可能是一个大型视图),这将为我整理数据。创建和维护这似乎是一个相当乏味的过程,尤其是考虑到收集的数据可能会发生变化。如果这是标准做法,我可以做腿部工作,但我很好奇是否有更好的方法我只是不知道。
USE [TestCompany]
GO
/****** Object: Table [CLI].[AttributesTable] Script Date: 02/07/2013 15:01:34 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [CLI].[AttributesTable](
[AttributesTableID] [int] NOT NULL,
[ChartID] [int] NOT NULL,
[AdmitCounty] [int] NULL,
[AdmissionReason] [int] NULL,
[Gender] [int] NULL,
[Race] [int] NULL,
[Occupation] [int] NULL,
[MaritalStatus] [int] NULL,
[Education] [int] NULL,
[SpecialEducation] [int] NULL,
[Impairment] [int] NULL,
[Hispanic] [int] NULL,
[HearingStatus] [int] NULL,
[ExpectedPaysource] [int] NULL,
[PublicAssistance] [int] NULL,
[Dietary] [int] NULL,
[EmploymentStatus] [int] NULL,
[LivingArrangements] [int] NULL,
[IncomeSource] [int] NULL,
[LegalStatus] [int] NULL,
[CommitType] [int] NULL,
[EnrolledInSchool] [nchar](10) NULL,
[GradePointAverage] [int] NULL,
[EducationProgram] [int] NULL,
[HIV] [int] NULL,
[SelfHelpPrograms] [int] NULL,
[MediationPrescribed] [int] NULL,
[DischargeReason] [int] NULL,
[DischargeReferral] [int] NULL,
CONSTRAINT [PK_AttributesTable] PRIMARY KEY CLUSTERED
(
[AttributesTableID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AdmissionReason_Code] FOREIGN KEY([AdmissionReason])
REFERENCES [LKP].[AdmissionReasonCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AdmissionReason_Code]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_CommitType_Code] FOREIGN KEY([CommitType])
REFERENCES [LKP].[CommitTypeCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_CommitType_Code]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_Dietary_Code] FOREIGN KEY([Dietary])
REFERENCES [LKP].[DietaryCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_Dietary_Code]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_DischargeReason_Code] FOREIGN KEY([DischargeReason])
REFERENCES [LKP].[DischargeReasonCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_DischargeReason_Code]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_DischargeReferral_Code] FOREIGN KEY([DischargeReferral])
REFERENCES [LKP].[DischargeReferralCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_DischargeReferral_Code]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_Chart] FOREIGN KEY([ChartID])
REFERENCES [CLI].[Chart] ([ChartID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_Chart]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_CommitTypeCode] FOREIGN KEY([CommitType])
REFERENCES [LKP].[CommitTypeCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_CommitTypeCode]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_EducationCode] FOREIGN KEY([Education])
REFERENCES [LKP].[EducationCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_EducationCode]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_EducationProgramIndicatorCode] FOREIGN KEY([EducationProgram])
REFERENCES [LKP].[EducationProgramIndicatorCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_EducationProgramIndicatorCode]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_EmploymentStatusCode] FOREIGN KEY([EmploymentStatus])
REFERENCES [LKP].[EmploymentStatusCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_EmploymentStatusCode]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_GenderCode] FOREIGN KEY([Gender])
REFERENCES [LKP].[GenderCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_GenderCode]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_GPACode] FOREIGN KEY([GradePointAverage])
REFERENCES [LKP].[GPACode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_GPACode]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_HearingStatusCode] FOREIGN KEY([HearingStatus])
REFERENCES [LKP].[HearingStatusCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_HearingStatusCode]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_HispanicCode] FOREIGN KEY([Hispanic])
REFERENCES [LKP].[HispanicCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_HispanicCode]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_HIVTestCode] FOREIGN KEY([HIV])
REFERENCES [LKP].[HIVTestCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_HIVTestCode]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_ImpairmentCode] FOREIGN KEY([Impairment])
REFERENCES [LKP].[ImpairmentCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_ImpairmentCode]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_IncomeSourceCode] FOREIGN KEY([IncomeSource])
REFERENCES [LKP].[IncomeSourceCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_IncomeSourceCode]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_LegalStatusCode] FOREIGN KEY([LegalStatus])
REFERENCES [LKP].[LegalStatusCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_LegalStatusCode]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_LivingArrangementCode] FOREIGN KEY([LivingArrangements])
REFERENCES [LKP].[LivingArrangementCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_LivingArrangementCode]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_MaritalStatusCode] FOREIGN KEY([MaritalStatus])
REFERENCES [LKP].[MaritalStatusCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_MaritalStatusCode]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_MedicationPrescribedCode] FOREIGN KEY([MediationPrescribed])
REFERENCES [LKP].[MedicationPrescribedCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_MedicationPrescribedCode]
GO
ALTER TABLE [CLI].[AttributesTable] WITH CHECK ADD CONSTRAINT [FK_AttributesTable_PaySourceCode] FOREIGN KEY([ExpectedPaysource])
REFERENCES [LKP].[PaySourceCode] ([CodeID])
GO
ALTER TABLE [CLI].[AttributesTable] CHECK CONSTRAINT [FK_AttributesTable_PaySourceCode]
GO