I need to update 9 Tables. These tables should be updated by Stored Procedure.
There are pair of three dependent tables in a group. The rest of others (3 more tables) they don have any dependency.
Here is the question: It is more efficient to write 1 store procedure and update all tables or Write 9 SP or Write 6 SP (1 SP for each independent table and for group of dependent tables 1 SP for each then 1 SP to call all)
What is the best way?