diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2017-06-02 18:35:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-02 18:35:56 +0200 |
| commit | 516b7664dcc7dc5a8f40afde38cc892446ead5b4 (patch) | |
| tree | f067017aa9f0f1f886e89ffce0db79f66bd48ee6 /docs/ref | |
| parent | 8149bd00d8b8af816a683e5ecc0e204f344616f5 (diff) | |
Fixed #28260 -- Allowed customizing the test tablespace initial and autoextend size on Oracle.
Thanks Tim Graham for the review.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/settings.txt | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index c0d19a59db..70402b1fc4 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -911,6 +911,58 @@ This is an Oracle-specific setting. The maximum size that the DATAFILE_TMP is allowed to grow to. +.. setting:: DATAFILE_SIZE + +``DATAFILE_SIZE`` +^^^^^^^^^^^^^^^^^ + +.. versionadded:: 2.0 + +Default: ``'50M'`` + +This is an Oracle-specific setting. + +The initial size of the DATAFILE. + +.. setting:: DATAFILE_TMP_SIZE + +``DATAFILE_TMP_SIZE`` +^^^^^^^^^^^^^^^^^^^^^ + +.. versionadded:: 2.0 + +Default: ``'50M'`` + +This is an Oracle-specific setting. + +The initial size of the DATAFILE_TMP. + +.. setting:: DATAFILE_EXTSIZE + +``DATAFILE_EXTSIZE`` +^^^^^^^^^^^^^^^^^^^^ + +.. versionadded:: 2.0 + +Default: ``'25M'`` + +This is an Oracle-specific setting. + +The amount by which the DATAFILE is extended when more space is required. + +.. setting:: DATAFILE_TMP_EXTSIZE + +``DATAFILE_TMP_EXTSIZE`` +^^^^^^^^^^^^^^^^^^^^^^^^ + +.. versionadded:: 2.0 + +Default: ``'25M'`` + +This is an Oracle-specific setting. + +The amount by which the DATAFILE_TMP is extended when more space is required. + .. setting:: DATA_UPLOAD_MAX_MEMORY_SIZE DATA_UPLOAD_MAX_MEMORY_SIZE |
