On UNIX, you can store data in chunks that use either unbuffered (raw) disks or operating-system files, also known as buffered or cooked files.
UNIX provides unbuffered disk access using character-special devices (also known as raw disk devices). To create raw disk devices on UNIX, follow the instructions provided with your operating system.
The database server uses raw disk access to improve the speed and reliability of disk I/O operations. Raw disk access bypasses the file-buffering mechanism that the operating system provides. The database server itself manages the data transfers between disk and memory. The database server optimizes table access by guaranteeing that rows are stored contiguously.
If optimum performance is unimportant, you can configure the database server to store data in cooked files. Cooked files are easier to set up than raw disk devices.
Home | [ Top of Page | Previous Page | Next Page | Contents | Index ]