From 140bb604e7ee566efaf4b29a82dd05279bf171ac Mon Sep 17 00:00:00 2001 From: Danimir Ljepava Date: Mon, 25 Jan 2021 20:37:09 +0100 Subject: [PATCH] Update README.md --- samples/tutorials/c#/Windows/SqlMIResilientCloudApp/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/samples/tutorials/c#/Windows/SqlMIResilientCloudApp/README.md b/samples/tutorials/c#/Windows/SqlMIResilientCloudApp/README.md index f5b9ffc1..c19a45ce 100644 --- a/samples/tutorials/c#/Windows/SqlMIResilientCloudApp/README.md +++ b/samples/tutorials/c#/Windows/SqlMIResilientCloudApp/README.md @@ -15,11 +15,13 @@ The accompanying article to this source code is the following: here: http://aka. On SQL MI (e.g. using SSMS) you will need to create a failoverDB. Use the follwing t-sql script: +```t-sql CREATE DATABASE failoverDB; USE failoverDB; CREATE TABLE timetable (datestamp datetime); INSERT INTO timetable (datestamp) VALUES (CURRENT_TIMESTAMP); SELECT * FROM timetable; +``` # Demo