1

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?

4

1 に答える 1

0

(ボタンクリック)のような1回のアクションで9つのテーブルを更新すると仮定すると、トランザクションを維持することが要件になる可能性があるため、9つの異なる手順ではなく、1つのストアドプロシージャを作成してトランザクションを維持することをお勧めします..

于 2013-07-02T05:49:41.960 に答える