sparks
2012-04-05 13:48:01 UTC
I finished all the merging and inserting of the database I have been
working on and made a copy of the final and a backup
anyway I was trying compare from redcraft
I found this comparing the empty database I started with and the
final.
ALTER TABLE [dbo].[QuestionnaireData] ADD CONSTRAINT
[FK_QuestionnaireData_ClientID] FOREIGN KEY ([ClientID]) REFERENCES
[dbo].[Client] ([ClientID])
ALTER TABLE [dbo].[QuestionnaireData] ADD CONSTRAINT
[QuestionnaireData_ClientID_FK] FOREIGN KEY ([ClientID]) REFERENCES
[dbo].[Client] ([ClientID])
I don't know much about this but why is FK at the start of the
statement in the original FK_QuestionnaireData_ClientID
and at the end in the final QuestionnaireData_ClientID_FK
working on and made a copy of the final and a backup
anyway I was trying compare from redcraft
I found this comparing the empty database I started with and the
final.
ALTER TABLE [dbo].[QuestionnaireData] ADD CONSTRAINT
[FK_QuestionnaireData_ClientID] FOREIGN KEY ([ClientID]) REFERENCES
[dbo].[Client] ([ClientID])
ALTER TABLE [dbo].[QuestionnaireData] ADD CONSTRAINT
[QuestionnaireData_ClientID_FK] FOREIGN KEY ([ClientID]) REFERENCES
[dbo].[Client] ([ClientID])
I don't know much about this but why is FK at the start of the
statement in the original FK_QuestionnaireData_ClientID
and at the end in the final QuestionnaireData_ClientID_FK