You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/ROOT/pages/database-administration/standard-databases/create-databases.adoc
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ Replaced by `existingDataSeedServer`.
95
95
| `seedURI`
96
96
| URI to a backup or a dump from an existing database.
97
97
|
98
-
Defines an identical seed from an external source which will be used to seed all servers.
98
+
Defines a seed from an external source which will be used to seed all servers.
99
99
100
100
| `seedConfig`
101
101
| Comma-separated list of configuration values.
@@ -148,12 +148,11 @@ The `CREATE DATABASE [OR REPLACE]` command can have a map of options, e.g. `OPTI
148
148
|
149
149
Defines which server is used for seeding the data of the created database.
150
150
The server ID can be found in the `serverId` column after running `SHOW SERVERS`.
151
-
Replaced by `existingDataSeedServer`.
152
151
153
152
| `seedURI`
154
153
| URI to a backup or a dump from an existing database.
155
154
|
156
-
Defines an identical seed from an external source which will be used to seed all servers.
155
+
Defines a seed from an external source which will be used to seed all servers.
157
156
158
157
| `seedConfig`
159
158
| Comma-separated list of configuration values.
@@ -176,6 +175,13 @@ For more information on store formats, see xref::database-internals/store-format
176
175
177
176
If the store is seeded with `seedURI` or `existingDataSeedServer`, or if the command is used to mount pre-existing store files already present on the disk, they will retain their current store format without any modifications.
178
177
178
+
| `seedRestoreUntil`
179
+
|
180
+
| Datetime or transaction id. E.g. `datetime("2025-01-01T12:15:00.000+0100")` or `123456`
181
+
If you are passing a `seedURI` that leads to a backup chain, including differential backups, you can choose to not apply all the transactions in the differential backups.
182
+
To seed up to a specific date, specify a `datetime` and this will seed the database with transactions committed before the provided timestamp.
183
+
To seed up to a specific transaction ID, specify a transaction id, and this will seed the database with transactions up to, but not including the specified transaction.
0 commit comments