{{theTime}}

Search This Blog

Total Pageviews

Stored Procedure to fetch all orders created today

CREATE PROCEDURE todays_orders
AS
BEGIN
SELECT * FROM order_table where  order_date = DATEADD(DAY,-1,GETDATE())
END

No comments:

Saga Design Pattern

The Saga design pattern is a way to manage distributed transactions in a microservices architecture. In a microservices environment, where d...