# Sample Structure Description File: largedb.st
# # largedb.st to create database largedb with large file processing enabled. # # A fixed length bi file of 1GB and a variable length bi file with a maximum # size of 4GB. # b tests/largedb.b1 f 1048576 b tests/largedb.b2 v 4194304 # # SCHEMA AREA with a fixed length file of 3GB and a variable length file with # a maximum size of 3GB. # d "Schema Area":6,64 tests/largedb.d1 f 3145728 d "Schema Area":6,64 tests/largedb.d2 v 3145728 # # TABLE AREA with a fixed length file of just over 2GB and a variable length # file with a maximum size of 1TB. # d "Table Area":7,64 tests/largedb_7.d1 f 2097280 d "Table Area":7,64 tests/largedb_7.d2 # # A fixed length ai file of 2GB and a variable length file with a maximum size # of 1TB. a tests/largedb.a1 f 2097152 a tests/largedb.a2 # |