Please enter search query.
Search <book_title>...
InfoScale™ 9.0 Storage and Availability Management for DB2 Databases - AIX, Linux
Last Published:
2025-04-13
Product(s):
InfoScale & Storage Foundation (9.0)
Platform: AIX,Linux
- Section I. Storage Foundation High Availability (SFHA) management solutions for DB2 databases
- Overview of Storage Foundation for Databases
- About Veritas File System
- Overview of Storage Foundation for Databases
- Section II. Deploying DB2 with InfoScale products
- Deployment options for DB2 in a Storage Foundation environment
- Deploying DB2 with Storage Foundation
- Deploying DB2 in an off-host configuration with Storage Foundation
- Deploying DB2 with High Availability
- Deployment options for DB2 in a Storage Foundation environment
- Section III. Configuring Storage Foundation for Database (SFDB) tools
- Configuring and managing the Storage Foundation for Databases repository database
- Configuring the Storage Foundation for Databases (SFDB) tools repository
- Configuring authentication for Storage Foundation for Databases (SFDB) tools
- Configuring and managing the Storage Foundation for Databases repository database
- Section IV. Improving DB2 database performance
- About database accelerators
- Improving database performance with Quick I/O
- About Quick I/O
- Improving DB2 database performance with Veritas Concurrent I/O
- Section V. Using point-in-time copies
- Understanding point-in-time copy methods
- Volume-level snapshots
- Storage Checkpoints
- Considerations for DB2 point-in-time copies
- Administering third-mirror break-off snapshots
- Administering Storage Checkpoints
- Database Storage Checkpoints for recovery
- Backing up and restoring with Netbackup in an SFHA environment
- Understanding point-in-time copy methods
- Section VI. Optimizing storage costs for DB2
- Section VII. Storage Foundation for Databases administrative reference
- Storage Foundation for Databases command reference
- Tuning for Storage Foundation for Databases
- Troubleshooting SFDB tools
Preallocating space for Quick I/O files using the setext command
As an alternative to using the qiomkfile command, you can also use the VxFS setext command to preallocate space for database files.
Before preallocating space with setext, make sure the following conditions have been met:
Prerequisites |
|
Usage notes |
To create a Quick I/O database file using setext
- Access the VxFS mount point and create a file:
# cd /mount_point
# touch .filename
- Use the setext command to preallocate space for the file:
# /opt/VRTS/bin/setext -r size -f noreserve -f chgsize \ .filename
- Create a symbolic link to allow databases or applications access to the file using its Quick I/O interface:
# ln -s .filename::cdev:vxfs: filename
- Change the owner and group permissions on the file.
For example, for DB2:
# chown user:group .filename
# chmod 660 .dbfile
For example, for Sybase:
# chown sybase:sybase .filename
# chmod 660 .filename
- To access the mountpoint for the database:
For example, for /db01, create a container, preallocate the space, and change the permissions:
# cd /db01 # touch .dbfile # /opt/VRTS/bin/setext -r 100M -f noreserve -f chgsize .dbfile # ln -s .dbfile::cdev:vxfs: dbfile
For DB2:
# chown db2inst1:db2iadm1 .dbfile
# chmod 660 .dbfile
For Sybase:
# chown sybase:sybase .dbfile
# chmod 660 .dbfile