I have a stored procedure which needs to sequentially execute one after another (after completion of one and it should go for next stored procedure execution).
For example:
Exec [dbo].[usp_UpdateUTCDateForCustom] CacheExpirationPolicy , ModifiedOn
GO
Exec [dbo].[usp_UpdateUTCDateForCustom] Consumable , CreatedOn
GO
Exec [dbo].[usp_UpdateUTCDateForCustom] Consumable , ModifiedOn
How can I run the above stored procedures to run sequentially?