Skip to content

Commit 140bb60

Browse files
authored
Update README.md
1 parent 5365da1 commit 140bb60

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

  • samples/tutorials/c#/Windows/SqlMIResilientCloudApp

samples/tutorials/c#/Windows/SqlMIResilientCloudApp/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ The accompanying article to this source code is the following: here: http://aka.
1515

1616
On SQL MI (e.g. using SSMS) you will need to create a failoverDB. Use the follwing t-sql script:
1717

18+
```t-sql
1819
CREATE DATABASE failoverDB;
1920
USE failoverDB;
2021
CREATE TABLE timetable (datestamp datetime);
2122
INSERT INTO timetable (datestamp) VALUES (CURRENT_TIMESTAMP);
2223
SELECT * FROM timetable;
24+
```
2325

2426
# Demo
2527

0 commit comments

Comments
 (0)