mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
Update README.md
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user