YOU ARE ADMINISTRATING A SYSTEM THAT WAS UPGRADED FROM A SINGLE-US...

17. You are administrating a system that was upgraded from a single-user Microsoft Access database to a multi-user inventory application using SQL Server 2008 as the backend. Users are complaining that the inventory is no longer accurate. You examine the stored procedure that updates the inventory and you find the following stored procedure: CREATE PROCEDURE UpdateInventory@Sku VARCHAR(50), @InventoryAmount INTASUPDATE InventorySET Inventory = @InventoryAmountWHERE Sku = @SkuGOHow should you change this procedure in order to correct the problem?A. CREATE PROCEDURE UpdateInventory@Sku VARCHAR(50),@AmountSold INTSET Inventory = Inventory - @AmountSoldB. CREATE PROCEDURE UpdateInventorySET Inventory = Inventory + @AmountSoldC. CREATE PROCEDURE UpdateInventory@Sku VARHCAR(50),@InventoryAmount INTSET Inventory = Inventory - @InventoryAmountD. CREATE PROCEDURE UpdateInventorySET Inventory = Inventory + @InventoryAmount