atl_geek,
for each disk array create file system and then mount one file system to another one. The main idea is DB2 will have two physical paths to store data to disk (in case of two disk arrays). In version 8.2.2 (v8.1 fixpack 9) and above you can create database using the following syntax:
Code:
CREATE DATABASE <database-name> AUTOMATIC STORAGE YES
ON DRIVE /path_to_first_disk_array_file_system,
/path_to_second_disk_array_file_system
The above DB2 command will tell DB2 you have two physical storage paths that can be used in parallel. DB2 creates one tablespace and two containers, each containers points to one disk array.
Can you please write your version of database, execute 'db2level' command and tell as more about your database type, execute: 'db2limc -l' command.
Hope this helps,
Grofaty