We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5365da1 commit 140bb60Copy full SHA for 140bb60
1 file changed
samples/tutorials/c#/Windows/SqlMIResilientCloudApp/README.md
@@ -15,11 +15,13 @@ The accompanying article to this source code is the following: here: http://aka.
15
16
On SQL MI (e.g. using SSMS) you will need to create a failoverDB. Use the follwing t-sql script:
17
18
+```t-sql
19
CREATE DATABASE failoverDB;
20
USE failoverDB;
21
CREATE TABLE timetable (datestamp datetime);
22
INSERT INTO timetable (datestamp) VALUES (CURRENT_TIMESTAMP);
23
SELECT * FROM timetable;
24
+```
25
26
# Demo
27
0 commit comments