Not getting proper format in email [message #359077] |
Thu, 13 November 2008 12:25 |
sonumalhi
Messages: 62 Registered: April 2008
|
Member |
|
|
Hi Guys
I have written the following the script to monitor the ASM diskgroups and send the email to the group about the current usage of Diskgroups.
Scripts is working fine but the only problem I am facing is the format is not proper in the email which makes us very hard to read it.
Here is scripts which I am using..
. ./.profile
ORACLE_SID='+ASM1'; export ORACLE_SID
sqlplus -s / as sysdba << EOF
set echo off pages 30 feed off lines 200
spool asm.txt
set lines 100
col "% Used" format 999
col "TOTAL GB" format 99999
SELECT name,
trunc(free_mb/1024) as "FREE GB",
trunc((total_mb/1024)) as "TOTAL GB"
FROM V\$ASM_DISKGROUP order by 2 desc;
spool off
EOF
mailx -s "ASM STATUS ON GRID " "xxx@yy.com" > /dev/null < /export/home/oracle/asm.txt
I am attachiung the o/p for both asm.txt and mail.
NAME FREE GB TOTAL GB
------------------------------ ---------- --------
ARCH 1418 1542
INDIGO_UNDO 383 384
INDIGO_PARAMETRIC_INDEXES 301 1923
PDCA_INDEX 268 449
ZFRC_INDEX 211 386
ZV_DATA 189 192
ZV_INDEX 189 192
INDIGO_DATA 175 5386
INDIGO_TEMP 160 384
INDIGO_SYSAPP 150 577
INDIGO_INDEX 137 3847
DATA 93 545
INDIGO_PARAMETRIC_DATA 84 1667
INDEX 69 193
PDCA_DATA 58 449
ZFRC_DATA 40 161
TEMP 6 99
INDIGO_REDO 3 24
REDO_LOGS 0 8
Mail 0/p
NAME FREE GB TOTAL GB
------------------------ ---------- --------
ARCH 1418 1542
INDIGO_UNDO 383 384
INDIGO_PARAMETRIC_INDEXES 301 1923
PDCA_INDEX 268 449
ZFRC_INDEX 211 386
ZV_DATA 189 192
ZV_INDEX 189 192
INDIGO_DATA 175 5386
INDIGO_TEM 160 384
INDIGO_SYSAPP 150 577
INDIGO_INDEX 137 3847
DATA 93 545
INDIGO_PARAMETRIC_DATA 84 1667
INDEX 69 193
PDCA_DATA 58 449
ZFRC_DATA 40 161
TEMP 6 99
INDIGO_REDO 3 24
REDO_LOGS 0 8
Anything that we are missing here.
Thanks In Advance.
Mehtab
|
|
|
|
|
Re: Not getting proper format in email [message #359324 is a reply to message #359081] |
Fri, 14 November 2008 15:32 |
ThomasG
Messages: 3212 Registered: April 2005 Location: Heilbronn, Germany
|
Senior Member |
|
|
The reason is the same both for the mail program and for the forum.
If you only display the spool file in programs that can't handle plain text correctly because they default displaying everything as HTML, you could add an
before the spool command.
|
|
|