Update README.md

This commit is contained in:
Danimir Ljepava
2021-01-25 20:37:09 +01:00
committed by GitHub
parent 5365da1b9d
commit 140bb604e7
@@ -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