| AUTOEXTEND |
The keyword that marks the beginning of the clause. |
| "off" |
Turns autoextend off. This is the default behavior when you create a new data file. |
| NEXT nextsize |
Specifies the size by which the file will extend each time space is needed. This may be expressed in bytes, kilobytes (K), or megabytes (M). |
| MAXSIZE |
Allows you to specify a maximum size for the file. |
| UNLIMITED |
Places no limit on the maximum size. |
| maxsize |
Specifies an upper limit on file size. This may be expressed in bytes, kilobytes (K), or megabytes (M). |