I have 5 tables that are connected together:
Table A
Table B
Table C
Table D
Table E
- Table A
PKisCodecolumn. - Table B
PKisCodecolumn. - Table C
PKisNumbercolumn. - Table D
PKisNumbercolumn. - Table E
PKisNamecolumn.
Relationship between the tables above is next:
- Table A
PKhasFKin Table BACodecolumn - Table A
PKhasFKin Table CACodecolumn Table A
PKhasFKin Table EACodecolumnTable B
PKhasFKin Table CBCodecolumnTable B
PKhasFKin Table EBCodecolumnTable C
PKhasFKin Table DCNumbercolumn
This part above was pretty simple to organize in Microsoft SQL Server Management Studio. Now I would like to create CASCADE on Update on all FK columns. For example if PK in Table A gets updated all other FK in other columns (B,C and E) should update as well. Is this something that would be recommended and how I can achieve this in SQL Server 2008?