For jbenson001:
I have a Table where storage the parameters that can be defined by users, and this parameters are classified in simples or complex. The Table A storage all parameters defined by users without its relations; and the Table B the storage relations into parameters for example:
- User1 define following parameters:
param1 (simple)
param2 (simple)
- User2 define following parameters:
param3 (complex), and formed by
i) param1
ii) param2
- User3 define following parameters:
param4 (complex), and formed by
i) param 2
ii)param 3
therefore i need this scheme of tables and Sql Server 2000 not allow me set up both ntegrity referencial with cascade update action, in order to obtain this behaivor i see the TRIGGERs like solution
|