标签:
When a new SAP IQ database is created we can use the MESSAGE PATH clause to specify the path where the message trace file will be stored; if you omit the MESSAGE PATH clause, the message trace file is created in the same directory of the .db file.
Sometimes it is necessary to later relocate the message trace file to a different location.
Here is a simple procedure to reallocate the message trace file.
select file_name from sysfile
where dbspace_name = ‘IQ_SYSTEM_MSG’
file_name
—————————-
devDwIqDb.iqmsg
ALTER DBSPACE IQ_SYSTEM_MSG RENAME ‘/log_vol/dev/devDwIqDb.iqmsg’
select file_name from sysfile
where dbspace_name = ‘IQ_SYSTEM_MSG’
file_name
—————————-
/log_vol/dev/devDwIqDb.iqmsg
Done!
SAP IQ: Relocate the Message Trace File to a Different?Location
标签:
原文地址:http://www.cnblogs.com/iathena/p/0b13a1572abcda46f3d668ce50903149.html