Table A has an AFTER DELETE trigger which performs an update to Table B. Table B has an AFTER INSERT,UPDATE,DELETE trigger which inserts a record to a log file. When I execute an update statement to Table B in Query Analyzer, its trigger functions properly. When I delete a record in Table A, the trigger on A fires and its update of Table B works, but the Table B trigger does not fire.
I did a sp_configure 'nested_triggers' which returned the values:
minimum - 0
maximum - 1
config_value 0
run_value - 0
I figured that the NESTING was set off so I did a sp_configure 'nested_triggers', 1 and then checked the values which were:
minimum - 0
maximum - 1
config_value 1
run_value - 0
I thought that would take care of my problem, but the 2nd trigger is still not firing. My SQL Server 7.0 documentation says that for changes to the nested_triggers properties, you do NOT need to restart the server.
Any suggestions?
I did a sp_configure 'nested_triggers' which returned the values:
minimum - 0
maximum - 1
config_value 0
run_value - 0
I figured that the NESTING was set off so I did a sp_configure 'nested_triggers', 1 and then checked the values which were:
minimum - 0
maximum - 1
config_value 1
run_value - 0
I thought that would take care of my problem, but the 2nd trigger is still not firing. My SQL Server 7.0 documentation says that for changes to the nested_triggers properties, you do NOT need to restart the server.
Any suggestions?