<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: UNIX Scripting (KSH) and Oracle in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156430#M455545</link>
    <description>Hein,&lt;BR /&gt;&lt;BR /&gt;when I run I got this output but I got one error also. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;/dev/vg00/lvol4 1048576 314096 728792 30 /&lt;BR /&gt;/dev/vg00/lvol1 1014648 65224 847952 7 /stand&lt;BR /&gt;/dev/vg00/lvol8 4194304 1463624 2710720 35 /var&lt;BR /&gt;/dev/vg3psw/lvol12 3145728 1221234 1804232 40 /var/mqm&lt;BR /&gt;/dev/vg00/lvol10 4194304 3749008 441888 89 /var/adm/sw&lt;BR /&gt;/dev/vg00/lvol9 4194304 16744 4144936 0 /var/adm/crash&lt;BR /&gt;/dev/vg00/lvol7 5242880 1871472 3345104 36 /usr&lt;BR /&gt;/dev/vg3psw/lvol1 4194304 3883768 308128 93 /usr/local&lt;BR /&gt;/dev/vg3psw/lvol7 10338304 8812630 1430332 86 /usr/local/vertex&lt;BR /&gt;/dev/vg3psw/lvol2 12738560 8080712 4622152 64 /usr/local/oracle&lt;BR /&gt;/dev/vg3psw/lvol9 5120000 1286387 3594077 26 /usr/local/g1_3.2_SE&lt;BR /&gt;Can't call method "line" on an undefined value at ./hein.pl line 10.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;and also when I tried to print the value of those variables &lt;BR /&gt;$fs, $kbytes, $used, $avail, $pct_used, $mount&lt;BR /&gt;I dint get anything the output dint change than the above one.&lt;BR /&gt;&lt;BR /&gt;Looks like the variable doesnt hold anything. &lt;BR /&gt;&lt;BR /&gt;Any suggestion?</description>
    <pubDate>Mon, 16 Feb 2009 18:47:53 GMT</pubDate>
    <dc:creator>pareshan</dc:creator>
    <dc:date>2009-02-16T18:47:53Z</dc:date>
    <item>
      <title>UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156413#M455528</link>
      <description>Hi Guys,&lt;BR /&gt;I haven't worked on oracle much but I have a situation where I have to do df in all the servers and insert that information into oracle table. I have already created table which have 7 columns, I can insert manually but I dont know how to insert that using Korn shell.&lt;BR /&gt;&lt;BR /&gt;SERVER_ID                                 NOT NULL NUMBER(6)&lt;BR /&gt; FS_LOCAL_NAME                             NOT NULL VARCHAR2(200)&lt;BR /&gt; LOCAL_MOUNT                               NOT NULL CHAR(1)&lt;BR /&gt; TOTAL_SPACE                               NOT NULL NUMBER(10)&lt;BR /&gt; USED_SPACE                                         NUMBER(10)&lt;BR /&gt; SPACE_AVAILABLE                                    NUMBER(10)&lt;BR /&gt; PERCENTAGE_USED                                    NUMBER(3,2)&lt;BR /&gt;&lt;BR /&gt;This is just a example I have done manually and its inserting data &lt;BR /&gt;&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;sqlplus pareshan/ac6e94aac5b1b979902c0b0b1f42621761c@let01a&amp;lt;&lt;EOF&gt;&lt;/EOF&gt;insert into unix_servers values (1,'superior','Y',89885485,858757,4657575,2);&lt;BR /&gt;EXIT&lt;BR /&gt;EOF&lt;BR /&gt;But the thing I need is I have to run df command and the outuput I have to insert into respective column in the oracle table.&lt;BR /&gt;&lt;BR /&gt;Plz Help, &lt;BR /&gt;Thanks In Advance</description>
      <pubDate>Wed, 11 Feb 2009 16:30:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156413#M455528</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-02-11T16:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156414#M455529</link>
      <description>&lt;!--!*#--&gt;&lt;BR /&gt;There are a lot of ways to do this, with varying degrees of efficiency and complexity.&lt;BR /&gt;&lt;BR /&gt;The simplest, and most appealing approach for SA's is probably by parsing df output and generating insert statements.&lt;BR /&gt;&lt;BR /&gt;Here is an example of just that, using PERL as a driver. This works on my laptop in c cygwin session against a local Oracle XE database:&lt;BR /&gt;&lt;BR /&gt;open SQL, "| sqlplus hein/password";&lt;BR /&gt;foreach (qx(df)) {&lt;BR /&gt;  my ( $fs, $total, $user, $avail, $pct, $mnt ) = split;&lt;BR /&gt;  next if /^File/ ;  # header line&lt;BR /&gt;  $pct =~ s/%//; # don't need no percent sign.&lt;BR /&gt;  print SQL q(insert into unix_servers values ) .&lt;BR /&gt;    qq( \( 1, '$fs', 'Y', $total, $user, $avail, $pct\);\n);&lt;BR /&gt;}&lt;BR /&gt;print SQL qq(commit;\n);&lt;BR /&gt;close SQL;&lt;BR /&gt;&lt;BR /&gt;Input:&lt;BR /&gt;&lt;BR /&gt;$ df&lt;BR /&gt;Filesystem           1K-blocks      Used Available Use% Mounted on&lt;BR /&gt;C:\cygwin\bin         58605088  49106180   9498908  84% /usr/bin&lt;BR /&gt;C:\cygwin\lib         58605088  49106180   9498908  84% /usr/lib&lt;BR /&gt;C:\cygwin             58605088  49106180   9498908  84% /&lt;BR /&gt;c:                    58605088  49106180   9498908  84% /cygdrive/c&lt;BR /&gt;&lt;BR /&gt;Output:&lt;BR /&gt;&lt;BR /&gt;SQL&amp;gt; select * from unix_servers;&lt;BR /&gt;&lt;BR /&gt; SERVER_ID FS_LOCAL_NAME        L TOTAL_SPACE USED_SPACE SPACE_AVAILABLE PERCENTAGE_USED&lt;BR /&gt;---------- -------------------- - ----------- ---------- --------------- ---------------&lt;BR /&gt;         1 C:\cygwin\bin        Y    58605088   49106180         9498908              84&lt;BR /&gt;         1 C:\cygwin\lib        Y    58605088   49106180         9498908              84&lt;BR /&gt;         1 C:\cygwin            Y    58605088   49106180         9498908              84&lt;BR /&gt;         1 c:                   Y    58605088   49106180         9498908              84&lt;BR /&gt;&lt;BR /&gt;This is just a sample. A lot of details need to be addressed of course. You probably want a DATE column there. And you probably do not want echoes. And I change the percentage column to a simple number(5).&lt;BR /&gt;&lt;BR /&gt;For Oracle it would be nicer to use BIND VARIABLES, but hey, for once or twice a day the above will work fine this will work fine.&lt;BR /&gt;&lt;BR /&gt;If I had to do this for real I might also look at 'EXTERNAL TABLES' to solve this.&lt;BR /&gt;This is where you define a table on a flat file, with separators and line terminators of your choice. Place it from teh servers, and uses with with basic oracle commands.&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;Hein van den Heuvel&lt;BR /&gt;HvdH Performance Consulting&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Feb 2009 18:42:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156414#M455529</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2009-02-11T18:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156415#M455530</link>
      <description>Thanks alot, I know this works but I am trying to do that in Hp-Unix using Korn Sheel not perl. &lt;BR /&gt;&lt;BR /&gt;I am thinking about using sql loader but I am having problem. Any idea?&lt;BR /&gt;If i use sql loader in the control file can i use the table which is already created ? if can then how coz I have error here&lt;BR /&gt;&lt;BR /&gt;this is controlfile&lt;BR /&gt;control_file&lt;BR /&gt;&lt;BR /&gt;LOAD DATA&lt;BR /&gt;INFILE '/home/gc1488/FST/input'&lt;BR /&gt;INTO TABLE unix_servers&lt;BR /&gt;FIELDS TERMINATED BY ','&lt;BR /&gt;(SERVER_ID,&lt;BR /&gt;SERVER_NAME,&lt;BR /&gt;MARKET,&lt;BR /&gt;SERVER_TYPE,&lt;BR /&gt;PROD_IND,&lt;BR /&gt;OWNER)&lt;BR /&gt;&lt;BR /&gt; already have input file in that location. One thing the table im going to use should already exist or doesnt matter because I have to insert into the table which is already there. so I am using unix_servers which is already there but I have an error  here.&lt;BR /&gt;&lt;BR /&gt;SQL*Loader-601: For INSERT option, table must be empty.  Error on table UNIX_SERVERS&lt;BR /&gt;&lt;BR /&gt;Is that mean I cannot use the existing table? because the table is empty and still it says table must be empty.&lt;BR /&gt;thank you very much&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Feb 2009 19:32:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156415#M455530</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-02-11T19:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156416#M455531</link>
      <description>Note: sorry I used different table in 2nd one but table structure really doesnt matter i guess. main thing is it should work</description>
      <pubDate>Wed, 11 Feb 2009 19:33:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156416#M455531</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-02-11T19:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156417#M455532</link>
      <description>&lt;BR /&gt;Just specify APPEND in the control file.&lt;BR /&gt;From the (9.2) Oracle Utilities Ref Man:&lt;BR /&gt;&lt;BR /&gt;SQL*Loader Control File Reference 5-33&lt;BR /&gt;&lt;BR /&gt;APPEND If data already exists in the table, SQL*Loader appends the new rows to it.&lt;BR /&gt;data does not already exist, the new rows are simply loaded. You must have&lt;BR /&gt;SELECT privilege to use the APPEND option. Case Study 3: Loading a Delimited,&lt;BR /&gt;Free-Format File on page 10-11 provides an example.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;On the perl versus Ksh.... IMHO... if you do not know how to map that perl script onto KSH actions, then you have no business using KSH as an implementation language. Just an opinion.&lt;BR /&gt;&lt;BR /&gt;Cheers!&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Feb 2009 20:39:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156417#M455532</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2009-02-11T20:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156418#M455533</link>
      <description>Thank you very much, I really appreciate and you are right I can do using that and I have done also but here is the twist.&lt;BR /&gt;&lt;BR /&gt;my bdf command gives me a bunch of output I think if I print it here it will be a long list but I am sure you are aware of that. It includes local file sytem + all the mounted file systems and of course I cant put that in one row of a table so I need to calcuate that using script and find out ( total, used, free and percentage used) and only that information I can enter in the table.&lt;BR /&gt;I tried to write korn shell script for that but Its not that easy but I am still trying.&lt;BR /&gt;&lt;BR /&gt;Anybody have some script already or have some idea about it.&lt;BR /&gt;&lt;BR /&gt;I hope I made it clear this time. if any queries please let me know. I will appreciate your help &lt;BR /&gt;thaks alot</description>
      <pubDate>Fri, 13 Feb 2009 16:59:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156418#M455533</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-02-13T16:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156419#M455534</link>
      <description>In my opinion, and it is just an opinion, the parsing of BDF output and doing some basic calculation is much easier on in AWK or PERL than shell code. &lt;BR /&gt;In my earlier perl example it would just be a few lines early in the df data loop, making it accumulate variables as it recognizes them and calling for 'next' until all values for a sql insert are available.&lt;BR /&gt;&lt;BR /&gt;While a full BDF output may be too much and show details you do not care to share, some reader migt be able to help you better if you provided say 2 or 3 example sections and the 2 or 3 rows of data from there that you woud want to push into Oracle. Yeah I know, it sounds like we should be able to figure out what you want, but why not make it as easy as possible for folks who are willing to help.&lt;BR /&gt;&lt;BR /&gt;If you chose to show an example, then please provide an attachment with a verbatim .TXT file in addition to a simple cut &amp;amp; paste to make sure we see spaces and line wraps as they really are.&lt;BR /&gt;&lt;BR /&gt;cheers,&lt;BR /&gt;Hein.&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Feb 2009 17:47:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156419#M455534</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2009-02-13T17:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156420#M455535</link>
      <description>&amp;gt; my bdf command gives me a bunch of output I think if I print it here it will be a long list but I am sure you are aware of that. It includes local file sytem + all the mounted file systems and of course I cant put that in one row of a table so I need to calcuate that using script and find out ( total, used, free and percentage used) and only that information I can enter in the table.&lt;BR /&gt; &lt;BR /&gt;Well, the first thing to do is to drop the mounted filesystems. Use: bdf -l&lt;BR /&gt; &lt;BR /&gt;However, if you need properly formatted bdf listing, use the attached bdfmegs script. It will never split a line and has a script-friendly -q to drop the header. You can also run it with -V VGname to select only filesystems from a specific volume group. It is very useful to find almost full filesystems -- use -P with a percentage like 95 or 98 to see only those filesystems. And the units of measure are megabytes, not Kbytes. You can also specify -g to see filesystems in gigabytes.&lt;BR /&gt;</description>
      <pubDate>Sat, 14 Feb 2009 00:34:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156420#M455535</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2009-02-14T00:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156421#M455536</link>
      <description>Hi Hien and everyone I have attached my bdf Output, as you can see there its not in good format, some have more space some have less and even some are in different lines I tried alot to make it right but im not able to. I just want to separate the values by single space so that I can populate that to database table easily, &lt;BR /&gt;&lt;BR /&gt;Another thing I found one old thread which is about more or less same and so many replied and sent the code which is attached but I am not able to view that attach file so anyone who have that code could you help me plz. this is the thread im talking about.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums13.itrc.hp.com/service/forums/questionanswer.do?admit=109447627+1234794464067+28353475&amp;amp;threadId=732203" target="_blank"&gt;http://forums13.itrc.hp.com/service/forums/questionanswer.do?admit=109447627+1234794464067+28353475&amp;amp;threadId=732203&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Steven E, protter, Sanjay and Sridhar Bhaskarla, If anyone of you are reading this please can you help me coz you guys replied me in that thread and gave solutions which I think will help me also.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;And Bill Hassell, I tried to use the code you have given but I dont know why its not working and its too long so I am not able to understand properly also, do you have any short version plz.&lt;BR /&gt;&lt;BR /&gt;Note: my problem is just i want to format the bdf output with the values separated by space and put that into text file so that i can fed that into oracle table. I use perl also to format but its not working for bdf properly and same script works for every other file which have random spaces or format.&lt;BR /&gt;&lt;BR /&gt;plz help guys&lt;BR /&gt;thanks in advance&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Feb 2009 15:27:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156421#M455536</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-02-16T15:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156422#M455537</link>
      <description>&lt;!--!*#--&gt;That's the standard df line-wrap problem which has been solved many times with many tools.&lt;BR /&gt;&lt;BR /&gt;Here is something I had floating around for that purpose:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/perl&lt;BR /&gt;use strict;&lt;BR /&gt;use warnings;&lt;BR /&gt;my $header = &amp;lt;&amp;gt;;  # Eat header line&lt;BR /&gt;while (&amp;lt;&amp;gt;) {&lt;BR /&gt;  if (!/% /) { # glue on next line, if no percentage on this line&lt;BR /&gt;     chomp; # clean of the new-line&lt;BR /&gt;     $_ .= &amp;lt;&amp;gt;; # add wrapped part&lt;BR /&gt;  }&lt;BR /&gt;  next if /^\w+:/; #skip NFS mount with ":" in first word&lt;BR /&gt;  chomp;&lt;BR /&gt;  s/% //; # strip percentage sign&lt;BR /&gt;  s/\s+/ /g; # replace all tabs and spaces with just 1 space&lt;BR /&gt;  my ($fs, $kbytes, $used, $avail, $pct_used, $mount) = split; # now have each column in a variable&lt;BR /&gt;  # do anything you like with the columns (like preparing an oracle insert)&lt;BR /&gt;  print $_, "\n" ; # just to prove new glued line&lt;BR /&gt;}&lt;BR /&gt; &lt;BR /&gt;Hope that helps some,&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Feb 2009 15:46:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156422#M455537</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2009-02-16T15:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156423#M455538</link>
      <description>&amp;gt;&amp;gt; s/% //; # strip percentage sign&lt;BR /&gt;&lt;BR /&gt;There should be a space in the replace part:&lt;BR /&gt;&lt;BR /&gt;s/% / /; # strip percentage sign&lt;BR /&gt;&lt;BR /&gt;Hein.</description>
      <pubDate>Mon, 16 Feb 2009 15:47:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156423#M455538</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2009-02-16T15:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156424#M455539</link>
      <description>Hein, In that script from where I am supposed to give bdf command or output?&lt;BR /&gt;&lt;BR /&gt;I tried to give from command line from file, nothign really working, could you tell me how to do that plz,&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Feb 2009 16:07:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156424#M455539</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-02-16T16:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156425#M455540</link>
      <description>&lt;!--!*#--&gt;Assume you pasted that script into a file called: bdf_format&lt;BR /&gt;The intend was to activate it with: bdf | bdf_format&lt;BR /&gt;&lt;BR /&gt;You could also use : ./bdf_format &lt;FILE_WITH_BDF_OUTPUT&gt;&lt;BR /&gt; &lt;BR /&gt;Now if you want to issue the BDF command in the script, which IMHO is a fine idea, then it needs a few modifications. For example as posted below my signature. That script is run 'stand-alone'. No pipe to feed.&lt;BR /&gt;&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/perl&lt;BR /&gt;use strict;&lt;BR /&gt;use warnings;&lt;BR /&gt;my ($filesystem) ;&lt;BR /&gt;&lt;BR /&gt;foreach (qx(bdf)) {   # executing command here!&lt;BR /&gt;&lt;BR /&gt;  next if /^Filesystem/;  # skip header line&lt;BR /&gt;  if (!/% /) { # remember for next line if no percentage on this line&lt;BR /&gt;     chomp; # clean of the new-line&lt;BR /&gt;     $filesystem = $_; # remember&lt;BR /&gt;     next;&lt;BR /&gt;  }&lt;BR /&gt;  $_ = $filesystem . $_ if /^\s/; # add filesystem for wrapped lines&lt;BR /&gt;  next if /^\w+:/; #skip NFS mount with ":" in first word&lt;BR /&gt;  chomp;&lt;BR /&gt;  s/% / /; # strip percentage sign&lt;BR /&gt;  s/\s+/ /g; # replace all tabs and spaces with just 1 space&lt;BR /&gt;  my ($fs, $kbytes, $used, $avail, $pct_used, $mount) = split; # now have each column in a variable&lt;BR /&gt;  # do anything you like with the columns (like preparing an oracle insert)&lt;BR /&gt;  print $_, "\n" ; # just to prove new glued line&lt;BR /&gt;}&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;/FILE_WITH_BDF_OUTPUT&gt;</description>
      <pubDate>Mon, 16 Feb 2009 16:29:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156425#M455540</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2009-02-16T16:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156426#M455541</link>
      <description>The file attached above (bdfmegs) is a complete script. You save the attachment as a file on your PC, then transfer it to your HP-UX system using ftp with the ASCII option. Once it is stored on your HP-UX system, set the file executable (chmod 755 bdfmegs) and you simply run it from your script.&lt;BR /&gt; &lt;BR /&gt;However, if you want verything to be in your script, here are the lines you would add to obtain each of the values with no extra line feeds:&lt;BR /&gt; &lt;BR /&gt;bdf | while read FS SZ USED AV PCT MNT&lt;BR /&gt;do&lt;BR /&gt;[ -z "$SZ" ] &amp;amp;&amp;amp; read SZ USED AV PCT MNT&lt;BR /&gt;#&lt;BR /&gt;# all the values are now present:&lt;BR /&gt;# $FS $SZ $USED $AV $PCT $MNT&lt;BR /&gt;# call sqlplus to add these values to your database&lt;BR /&gt;done&lt;BR /&gt; &lt;BR /&gt;You may want to take a class in shell scripting to help with these tasks.</description>
      <pubDate>Mon, 16 Feb 2009 16:30:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156426#M455541</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2009-02-16T16:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156427#M455542</link>
      <description>Bill, thanks alot and I know I need to brush on my korn shell because I have just been working on this field recently and Im trying hard. Thanks for the suggestion though and all the helps I really appreciate that.&lt;BR /&gt;&lt;BR /&gt;Here I am not looking for much Just I wanted to remove those spaces which I have put in my text file. or make into one line if the output is in two lines.&lt;BR /&gt;&lt;BR /&gt;for example&lt;BR /&gt;/dev/vg3psw/lvol9  5120000 1286387 3594077   26% /usr/local/g1_3.2_SE&lt;BR /&gt;/dev/vghome_old/lvol1&lt;BR /&gt;                   23552000 10375127 12353732   46% /usr/local/g1/dev/vgapp02/lvol1 153616384 100802161 49543296   67% /tuxappl&lt;BR /&gt;/dev/vg00/lvol6    1540096   44424 1488456    3% /tmp&lt;BR /&gt;/dev/vgapp-io/lvol1&lt;BR /&gt;                   199155712 153617264 45361864   77% /tlgvar&lt;BR /&gt;/dev/vgapp/lvol3   2097152   24344 2056680    1% /opcode&lt;BR /&gt;/dev/vgapp/lvol9   25624576 23454180 2138564   92% /mps&lt;BR /&gt;/dev/vghome_old/lvol5&lt;BR /&gt;                   5144576  185360 4649319    4% /lsms_tool&lt;BR /&gt;/dev/vgapp-io/lvol2&lt;BR /&gt;                   2097152    5208 2075800    0% /logs&lt;BR /&gt;/dev/vgdbcommon/lvol1&lt;BR /&gt;                   18432000 1517936 16786512    8% /logs/ORACLE&lt;BR /&gt;/dev/vghome/lvol1  62898176 54860264 8037912   87% /home&lt;BR /&gt;/dev/vgapp/lvol8    524288  290587  219125   57% /emc&lt;BR /&gt;/dev/vgd2bl12d_2/lvol3&lt;BR /&gt;                   20512768    6129 19224982    0% /csmtier1/logs&lt;BR /&gt;/dev/vgapp/lvol10  1048576    6334  977155    1% /csmscripts&lt;BR /&gt;/dev/vghome_old/lvol6&lt;BR /&gt;                   51707904    3864 51300112    0% /ora_D2BL12B_4&lt;BR /&gt;&lt;BR /&gt;/dev/vg27/lvol3    204865536 197661672 7147648   97% /ora_D2BL42A_3&lt;BR /&gt;/dev/vg27/lvol2    307232768   26120 304806672    0% /ora_D2BL42B_2&lt;BR /&gt;/dev/vg27/lvol1    307232768 287320072 19757192   94% /ora_D2BL43A_2&lt;BR /&gt;/dev/vg27/lvol4    20578304 9825080 10669224   48% /ora_fbf_1&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I am not really looking for those big scripts because I cant handle those kind of scripts right now. Just like in that example above if the output is in two lines then i want to shift that in one line rest removing spaces and all i can do it using perl. Just you can see some of them are in one line and some of then are in two lines just i need help with those whose result came in two lines. something like if the value is in two lines then shift it to one line and im not able to implement it thats my problem. can be in ksh or perl i dont care&lt;BR /&gt;&lt;BR /&gt;thanks alot &lt;BR /&gt;help plz</description>
      <pubDate>Mon, 16 Feb 2009 17:38:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156427#M455542</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-02-16T17:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156428#M455543</link>
      <description>HI:&lt;BR /&gt;&lt;BR /&gt;Bill gave you the solution to your last question if you will only _try_ it and _read_ his post!&lt;BR /&gt;&lt;BR /&gt;You would do well to at least try and examine Bill's script.  You will learn at great deal about good shell scripting and good shell scripting techniques from it.&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 16 Feb 2009 17:43:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156428#M455543</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-02-16T17:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156429#M455544</link>
      <description>I got this error while running bills script&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;File-System             Mbytes    Used   Avail %Used Mounted on&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg00/lvol4           1024     306     711   30% /&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg00/lvol1            990      63     828    7% /stand&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg00/lvol8           4096    1432    2644   35% /var&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg3psw/lvol12        3072    1192    1761   40% /var/mqm&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg00/lvol10          4096    3661     431   89% /var/adm/sw&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg00/lvol9           4096      16    4047    0% /var/adm/crash&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg00/lvol7           5120    1827    3266   36% /usr&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg3psw/lvol1         4096    3792     300   93% /usr/local&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg3psw/lvol7          9.9g   8115    1856   81% /usr/local/vertex&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg3psw/lvol2         12.1g   7891    4513   64% /usr/local/oracle&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg3psw/lvol9         5000    1256    3509   26% /usr/local/g1_3.2_SE&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vghome_old/lvol1     22.5g    9.9g   11.8g  46% /usr/local/g1&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg3psw/lvol3         2048     133    1899    7% /usr/local/dazel&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg3psw/lvol8         1200     295     897   25% /usr/local/ccmi&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg3psw/lvol10        4000    3627     349   91% /usr/local/TWS&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgapp/lvol5          2048      15    2023    1% /tuxhome&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgapp02/lvol1       146.5g   96.1g   47.2g  67% /tuxappl&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg00/lvol6           1504      43    1453    3% /tmp&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgapp-io/lvol1      189.9g  146.5g   43.3g  77% /tlgvar&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgapp/lvol4          20.0g      2    19.8g   0% /tlg&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgapp/lvol2          62.5g   1111    60.9g   2% /reports&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgmafg/lvol1         50.0g      6    49.6g   0% /pvdev&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgapp/lvol6           200      10     188    5% /p/sbms&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgapp/lvol7          97.8g   46.2g   51.2g  47% /p/sbms/mps&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgdbcommon/lvol2    160.0g  111.2g   48.4g  70% /oraexp&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg00/lvol5           4096    3555     535   87% /opt&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg3psw/lvol11        3072     514    2397   18% /opt/mqm&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg3psw/lvol5         1024     379     639   37% /opt/iona&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg3psw/lvol13        1024       1     958    0% /opt/app/d1mqmm1&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg3psw/lvol6         2048     678    1360   33% /opt/app/bmc&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgapp/lvol3          2048      23    2008    1% /opcode&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgapp/lvol9          24.4g   22.4g   2088   92% /mps&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vghome_old/lvol5     5024     181    4540    4% /lsms_tool&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgapp-io/lvol2       2048       5    2027    0% /logs&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgdbcommon/lvol1     17.6g   1474    16.0g   8% /logs/ORACLE&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vghome/lvol1         60.0g   51.8g   8393   86% /home&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgapp/lvol8           512     283     213   57% /emc&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl12d_2/lvol3    19.6g      5    18.3g   0% /csmtier1/logs&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgapp/lvol10         1024       6     954    1% /csmscripts&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vghome_old/lvol6     49.3g      3    48.9g   0% /ora_D2BL12B_4&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl12b_2/lvol1    50.0g   4058    45.6g   8% /ora_D2BL12B_3&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl12d_2/lvol2    32.6g   27.7g   4994   85% /ora_D2BL42D_2&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vghome_old/lvol7     60.0g   58.6g   1393   98% /ora_D2BL42C_5&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vghome_old/lvol4     29.3g      3    29.1g   0% /ora_D2BL12A_3&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vghome_old/lvol3     34.5g      9    32.3g   0% /ora_D2BL12B_2&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vghome_old/lvol2     19.5g   4002    15.5g  20% /ora_D2BL42C_4&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl42a_2/lvol2    25.0g   24.5g    510   98% /ora_D2BL42C_3&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl42e/lvol1      50.0g   22.4g   27.4g  45% /ora_D2BL42E&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl42d/lvol1      20.0g   10.0g    9.9g  50% /ora_D2BL42D&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl42c_2/lvol1    40.0g   38.1g   1909   95% /ora_D2BL42C_2&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl42c/lvol1      20.0g   17.9g   2122   90% /ora_D2BL42C&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl42b/lvol1      25.0g   4018    20.9g  16% /ora_D2BL42B&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl42a_2/lvol1    15.0g      2    14.9g   0% /ora_D2BL42A_2&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl42a/lvol1      20.0g   18.4g   1629   92% /ora_D2BL42A&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl42e/lvol2      20.0g      2    19.8g   0% /ora_D2BL42E_2&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl43c/lvol1      15.0g   12.1g   2933   81% /ora_D2BL43C&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl43b/lvol2      14.0g   13.7g    330   98% /ora_D2BL43B_2&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl43b/lvol1      45.0g   44.5g    444   99% /ora_D2BL43B&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl43a/lvol1      12.0g   11.1g    914   93% /ora_D2BL43A&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl12d_2/lvol1    29.3g     16    29.1g   0% /ora_D2BL12D_2&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl12d/lvol1      20.0g   15.9g   4133   80% /ora_D2BL12D&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgapp/lvol11         48.9g      3    48.5g   0% /ora_D2BL12C_4&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl12c_2/lvol2    40.0g      3    39.7g   0% /ora_D2BL12C_3&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl12c_2/lvol1    40.0g      3    39.7g   0% /ora_D2BL12C_2&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl12c/lvol1     125.0g  119.1g   5923   95% /ora_D2BL12C&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl12b/lvol1     139.9g  101.4g   38.3g  73% /ora_D2BL12B&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl12a_2/lvol2    50.0g   4102    45.6g   8% /ora_D2BL12A_4&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl12a_2/lvol1    50.0g      3    49.6g   0% /ora_D2BL12A_2&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vgd2bl12a/lvol1      75.0g   73.2g   1757   98% /ora_D2BL12A&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg27/lvol3          195.4g  188.5g   6980   97% /ora_D2BL42A_3&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg27/lvol2          293.0g     25   290.7g   0% /ora_D2BL42B_2&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg27/lvol1          293.0g  274.0g   18.8g  94% /ora_D2BL43A_2&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhtqa2:/nvqa_98           80.0g   66.7g   13.2g  84% /nvqa_98&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;/dev/vg27/lvol4           19.6g   9594    10.2g  48% /ora_fbf_1&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/nvdev5          48.9g   41.7g   6891   86% /nvdev_98a&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/nvdev5          48.9g   41.7g   6891   86% /nvdev_97a&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/scdev2          2048     466    1482   24% /scdev_30&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/scdev5          2048     466    1482   24% /scdev_30a&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/scdev5          2048     466    1482   24% /scdev_29&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/fbfdev2         1024     325     656   33% /fbfdev_98&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/fbfdev5         1024     330     649   34% /fbfdev_98a&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/fbfdev5         1024     330     649   34% /fbfdev_97a&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/fbfdev1         1024     313     667   32% /fbfdev_97&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/scdev4          2048     305    1634   16% /scdev_28&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/nvdev4          65.0g   37.7g   25.6g  60% /nvdev_96&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/nvdev5          48.9g   41.7g   6891   86% /nvdev_96a&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/nvdev3          73.9g   42.3g   29.6g  59% /nvdev_95&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/qproj4          78.9g   63.6g   15.2g  81% /qproj4&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/qproj3          78.1g   56.2g   20.6g  73% /qproj3&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/qproj2          78.1g   64.4g   12.9g  83% /qproj2&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/qproj1          78.9g   48.3g   28.8g  63% /qproj1&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhtqa2:/qa_data           15.0g   6997    7854   47% /qa_data&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhtqa2:/fbfqa_98          20.0g   1383    18.5g   7% /fbfqa_98&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhtqa2:/scqa_30           3072    1524    1451   51% /scqa_30&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhtqa2:/scqa_26           2048     618    1339   32% /scqa_26&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhtqa2:/nvqa_97           79.1g   64.2g   14.0g  82% /nvqa_97&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhtqa2:/nvqa_96           98.0g   73.3g   23.1g  76% /nvqa_96&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhtqa2:/nvqa_93           48.3g   37.6g   10.1g  79% /nvqa_93&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/fbfdev4         1024     304     675   31% /fbfdev_96&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/fbfdev2         1024     325     656   33% /fbfdev_94&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/fbfdev1         1024     313     667   32% /fbfdev1&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/scdev5          2048     466    1482   24% /scdev1&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhtqa2:/fbfqa_97          29.5g   1326    26.4g   5% /fbfqa_97&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhtqa2:/scqa_29           25.0g    950    23.9g   4% /scqa_29&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;wishbone:/opcode          18.0g   1347    16.6g   7% /opcode_qa&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhttrn1:/ECA              2048     258    1784   13% /ECA&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/home/cc         39.1g   35.7g   3245   92% /home/cc&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/nvdev1          47.5g   42.0g   5243   89% /nvdev_97&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/nvdev2          48.9g   40.7g   7812   84% /nvdev_98&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/fbfdev5         1024     330     649   34% /fbfdev_71a&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/fbfdev3         1024     331     648   34% /fbfdev_71&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/scdev5          2048     466    1482   24% /scdev_31a&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/scdev3          2048     431    1515   22% /scdev_31&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/nvdev5          48.9g   41.7g   6891   86% /nvdev_71a&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/nvdev3          73.9g   42.3g   29.6g  59% /nvdev_71&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/fbfdev3         1024     331     648   34% /fbfdev_95&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhdtlgcc:/scdev3          2048     431    1515   22% /scdev_27&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhqtlgmm:/tlg            310.0g  248.1g   58.1g  81% /ndev_988&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhtqa2:/nvqa_71           79.1g   64.2g   14.0g  82% /nvqa_71&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhtqa2:/scqa_31           25.0g    950    23.9g   4% /scqa_31&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhtqa2:/fbfqa_71          29.5g   1326    26.4g   5% /fbfqa_71&lt;BR /&gt;format_bdf[391]: Setup:  not found&lt;BR /&gt;dhtqa1:/qadmin            1024      58     958    6% /qadmin&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Feb 2009 18:09:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156429#M455544</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-02-16T18:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156430#M455545</link>
      <description>Hein,&lt;BR /&gt;&lt;BR /&gt;when I run I got this output but I got one error also. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;/dev/vg00/lvol4 1048576 314096 728792 30 /&lt;BR /&gt;/dev/vg00/lvol1 1014648 65224 847952 7 /stand&lt;BR /&gt;/dev/vg00/lvol8 4194304 1463624 2710720 35 /var&lt;BR /&gt;/dev/vg3psw/lvol12 3145728 1221234 1804232 40 /var/mqm&lt;BR /&gt;/dev/vg00/lvol10 4194304 3749008 441888 89 /var/adm/sw&lt;BR /&gt;/dev/vg00/lvol9 4194304 16744 4144936 0 /var/adm/crash&lt;BR /&gt;/dev/vg00/lvol7 5242880 1871472 3345104 36 /usr&lt;BR /&gt;/dev/vg3psw/lvol1 4194304 3883768 308128 93 /usr/local&lt;BR /&gt;/dev/vg3psw/lvol7 10338304 8812630 1430332 86 /usr/local/vertex&lt;BR /&gt;/dev/vg3psw/lvol2 12738560 8080712 4622152 64 /usr/local/oracle&lt;BR /&gt;/dev/vg3psw/lvol9 5120000 1286387 3594077 26 /usr/local/g1_3.2_SE&lt;BR /&gt;Can't call method "line" on an undefined value at ./hein.pl line 10.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;and also when I tried to print the value of those variables &lt;BR /&gt;$fs, $kbytes, $used, $avail, $pct_used, $mount&lt;BR /&gt;I dint get anything the output dint change than the above one.&lt;BR /&gt;&lt;BR /&gt;Looks like the variable doesnt hold anything. &lt;BR /&gt;&lt;BR /&gt;Any suggestion?</description>
      <pubDate>Mon, 16 Feb 2009 18:47:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156430#M455545</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-02-16T18:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156431#M455546</link>
      <description>&lt;!--!*#--&gt;&lt;BR /&gt;I think you just had a copy &amp;amp; paste problem causing a line wrap for the word 'line' around line 10.&lt;BR /&gt;&lt;BR /&gt;If you run the scrip on the system that produced the sample output, then the error happened on the first time it encountered a wrapped bdf line ( for: /dev/vghome_old/lvol1 ).&lt;BR /&gt;&lt;BR /&gt;Without the comments, which potentially cause line wraps on pasting the text, the code to handle that looks like:&lt;BR /&gt;&lt;BR /&gt;  if (!/% /) { &lt;BR /&gt;     chomp;&lt;BR /&gt;     $filesystem = $_;&lt;BR /&gt;     next;&lt;BR /&gt;  }&lt;BR /&gt; &lt;BR /&gt;Please verify to make sure that was the problem and/or use the attached txt file version.&lt;BR /&gt;That version also prints just 2 columns, to prove that that works also.&lt;BR /&gt;Those variables, like $fs, are ONLY valid within the loop, and change for most every iteration of the loop. The 'my ($fs...' construct makes them loop-local variables.&lt;BR /&gt;&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Feb 2009 19:35:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156431#M455546</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2009-02-16T19:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX Scripting (KSH) and Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156432#M455547</link>
      <description>Hein, Its getting better, that one is solved but I have this error now&lt;BR /&gt;&lt;BR /&gt;/dev/vg00/lvol4 1048576 314096 728792 30 /&lt;BR /&gt;/dev/vg00/lvol1 1014648 65224 847952 7 /stand&lt;BR /&gt;/dev/vg00/lvol8 4194304 1469008 2705192 35 /var&lt;BR /&gt;/dev/vg3psw/lvol12 3145728 1221238 1804228 40 /var/mqm&lt;BR /&gt;/dev/vg00/lvol10 4194304 3749008 441888 89 /var/adm/sw&lt;BR /&gt;/dev/vg00/lvol9 4194304 16744 4144936 0 /var/adm/crash&lt;BR /&gt;/dev/vg00/lvol7 5242880 1871472 3345104 36 /usr&lt;BR /&gt;/dev/vg3psw/lvol1 4194304 3883768 308128 93 /usr/local&lt;BR /&gt;/dev/vg3psw/lvol7 10338304 8812630 1430332 86 /usr/local/vertex&lt;BR /&gt;/dev/vg3psw/lvol2 12738560 8080712 4622152 64 /usr/local/oracle&lt;BR /&gt;/dev/vg3psw/lvol9 5120000 1286387 3594077 26 /usr/local/g1_3.2_SE&lt;BR /&gt;print() on unopened filehandle                    23552000 10375127 12353732   46% /usr/local/g1&lt;BR /&gt;/dev/vghome_old/lvol1 23552000 10375127 12353732 46 /usr/local/g1&lt;BR /&gt;/dev/vg3psw/lvol3 2097152 137104 1944800 7 /usr/local/dazel&lt;BR /&gt;/dev/vg3psw/lvol8 1228800 302520 919104 25 /usr/local/ccmi&lt;BR /&gt;/dev/vg3psw/lvol10 4096000 3714072 358119 91 /usr/local/TWS&lt;BR /&gt;/dev/vgapp/lvol5 2097152 16192 2072336 1 /tuxhome&lt;BR /&gt;/dev/vgapp02/lvol1 153616384 100872998 49476759 67 /tuxappl&lt;BR /&gt;/dev/vg00/lvol6 1540096 34920 1497888 2 /tmp&lt;BR /&gt;print() on unopened filehandle                    199155712 153637688 45341544   77% /tlgvar&lt;BR /&gt;/dev/vgapp-io/lvol1 199155712 153637688 45341544 77 /tlgvar&lt;BR /&gt;/dev/vgapp/lvol4 20971520 2912 20804800 0 /tlg&lt;BR /&gt;/dev/vgapp/lvol2 65536000 1138696 63894272 2 /reports&lt;BR /&gt;/dev/vgmafg/lvol1 52396032 6968 51982472 0 /pvdev&lt;BR /&gt;/dev/vgapp/lvol6 204800 10712 192632 5 /p/sbms&lt;BR /&gt;/dev/vgapp/lvol7 102498304 48414312 53672696 47 /p/sbms/mps&lt;BR /&gt;print() on unopened filehandle                    167755776 116583368 50781904   70% /oraexp&lt;BR /&gt;/dev/vgdbcommon/lvol2 167755776 116583368 50781904 70 /oraexp&lt;BR /&gt;/dev/vg00/lvol5 4194304 3641336 548688 87 /opt&lt;BR /&gt;/dev/vg3psw/lvol11 3145728 527068 2455009 18 /opt/mqm&lt;BR /&gt;/dev/vg3psw/lvol5 1048576 388952 654520 37 /opt/iona&lt;BR /&gt;/dev/vg3psw/lvol13 1048576 1357 981775 0 /opt/app/d1mqmm1&lt;BR /&gt;/dev/vg3psw/lvol6 2097152 735096 1353320 35 /opt/app/bmc&lt;BR /&gt;/dev/vgapp/lvol3 2097152 24344 2056680 1 /opcode&lt;BR /&gt;/dev/vgapp/lvol9 25624576 23453584 2139148 92 /mps&lt;BR /&gt;print() on unopened filehandle                    5144576  185360 4649319    4% /lsms_tool&lt;BR /&gt;/dev/vghome_old/lvol5 5144576 185360 4649319 4 /lsms_tool&lt;BR /&gt;print() on unopened filehandle                    2097152    5216 2075792    0% /logs&lt;BR /&gt;/dev/vgapp-io/lvol2 2097152 5216 2075792 0 /logs&lt;BR /&gt;print() on unopened filehandle                    18432000 1527000 16777512    8% /logs/ORACLE&lt;BR /&gt;/dev/vgdbcommon/lvol1 18432000 1527000 16777512 8 /logs/ORACLE&lt;BR /&gt;/dev/vghome/lvol1 62898176 54017728 8880448 86 /home&lt;BR /&gt;/dev/vgapp/lvol8 524288 290587 219125 57 /emc&lt;BR /&gt;print() on unopened filehandle                    20512768    6129 19224982    0% /csmtier1/logs&lt;BR /&gt;/dev/vgd2bl12d_2/lvol3 20512768 6129 19224982 0 /csmtier1/logs&lt;BR /&gt;/dev/vgapp/lvol10 1048576 6334 977155 1 /csmscripts&lt;BR /&gt;print() on unopened filehandle                    51707904    3864 51300112    0% /ora_D2BL12B_4&lt;BR /&gt;/dev/vghome_old/lvol6 51707904 3864 51300112 0 /ora_D2BL12B_4&lt;BR /&gt;print() on unopened filehandle                    52396032 4155472 47863744    8% /ora_D2BL12B_3&lt;BR /&gt;/dev/vgd2bl12b_2/lvol1 52396032 4155472 47863744 8 /ora_D2BL12B_3&lt;BR /&gt;print() on unopened filehandle                    34209792 29055568 5114024   85% /ora_D2BL42D_2&lt;BR /&gt;/dev/vgd2bl12d_2/lvol2 34209792 29055568 5114024 85 /ora_D2BL42D_2&lt;BR /&gt;print() on unopened filehandle                    62898176 61460312 1426640   98% /ora_D2BL42C_5&lt;BR /&gt;/dev/vghome_old/lvol7 62898176 61460312 1426640 98 /ora_D2BL42C_5&lt;BR /&gt;print() on unopened filehandle                    30720000    3216 30476816    0% /ora_D2BL12A_3&lt;BR /&gt;/dev/vghome_old/lvol4 30720000 3216 30476816 0 /ora_D2BL12A_3&lt;BR /&gt;print() on unopened filehandle                    36126720    9960 33859469    0% /ora_D2BL12B_2&lt;BR /&gt;/dev/vghome_old/lvol3 36126720 9960 33859469 0 /ora_D2BL12B_2&lt;BR /&gt;print() on unopened filehandle                    20480000 4098928 16253104   20% /ora_D2BL42C_4&lt;BR /&gt;/dev/vghome_old/lvol2 20480000 4098928 16253104 20 /ora_D2BL42C_4&lt;BR /&gt;print() on unopened filehandle                    26214400 25687784  522512   98% /ora_D2BL42C_3&lt;BR /&gt;/dev/vgd2bl42a_2/lvol2 26214400 25687784 522512 98 /ora_D2BL42C_3&lt;BR /&gt;print() on unopened filehandle                    52412416 23481928 28704536   45% /ora_D2BL42E&lt;BR /&gt;/dev/vgd2bl42e/lvol1 52412416 23481928 28704536 45 /ora_D2BL42E&lt;BR /&gt;print() on unopened filehandle                    20955136 10502664 10370880   50% /ora_D2BL42D&lt;BR /&gt;/dev/vgd2bl42d/lvol1 20955136 10502664 10370880 50 /ora_D2BL42D&lt;BR /&gt;print() on unopened filehandle                    41926656 39955584 1955680   95% /ora_D2BL42C_2&lt;BR /&gt;/dev/vgd2bl42c_2/lvol1 41926656 39955584 1955680 95 /ora_D2BL42C_2&lt;BR /&gt;print() on unopened filehandle                    20955136 18765072 2172960   90% /ora_D2BL42C&lt;BR /&gt;/dev/vgd2bl42c/lvol1 20955136 18765072 2172960 90 /ora_D2BL42C&lt;BR /&gt;print() on unopened filehandle                    26198016 4115056 21910448   16% /ora_D2BL42B&lt;BR /&gt;/dev/vgd2bl42b/lvol1 26198016 4115056 21910448 16 /ora_D2BL42B&lt;BR /&gt;print() on unopened filehandle                    15728640    2784 15603008    0% /ora_D2BL42A_2&lt;BR /&gt;/dev/vgd2bl42a_2/lvol1 15728640 2784 15603008 0 /ora_D2BL42A_2&lt;BR /&gt;print() on unopened filehandle                    20955136 19273216 1668784   92% /ora_D2BL42A&lt;BR /&gt;/dev/vgd2bl42a/lvol1 20955136 19273216 1668784 92 /ora_D2BL42A&lt;BR /&gt;print() on unopened filehandle                    20955136    2920 20788536    0% /ora_D2BL42E_2&lt;BR /&gt;/dev/vgd2bl42e/lvol2 20955136 2920 20788536 0 /ora_D2BL42E_2&lt;BR /&gt;print() on unopened filehandle                    15712256 12684776 3003896   81% /ora_D2BL43C&lt;BR /&gt;/dev/vgd2bl43c/lvol1 15712256 12684776 3003896 81 /ora_D2BL43C&lt;BR /&gt;print() on unopened filehandle                    14680064 14338784  338624   98% /ora_D2BL43B_2&lt;BR /&gt;/dev/vgd2bl43b/lvol2 14680064 14338784 338624 98 /ora_D2BL43B_2&lt;BR /&gt;print() on unopened filehandle                    47169536 46710616  455400   99% /ora_D2BL43B&lt;BR /&gt;/dev/vgd2bl43b/lvol1 47169536 46710616 455400 99 /ora_D2BL43B&lt;BR /&gt;print() on unopened filehandle                    12566528 11622368  936848   93% /ora_D2BL43A&lt;BR /&gt;/dev/vgd2bl43a/lvol1 12566528 11622368 936848 93 /ora_D2BL43A&lt;BR /&gt;print() on unopened filehandle                    30736384   17104 30479296    0% /ora_D2BL12D_2&lt;BR /&gt;/dev/vgd2bl12d_2/lvol1 30736384 17104 30479296 0 /ora_D2BL12D_2&lt;BR /&gt;print() on unopened filehandle                    20963328 16697736 4232272   80% /ora_D2BL12D&lt;BR /&gt;/dev/vgd2bl12d/lvol1 20963328 16697736 4232272 80 /ora_D2BL12D&lt;BR /&gt;/dev/vgapp/lvol11 51298304 3864 50893712 0 /ora_D2BL12C_4&lt;BR /&gt;print() on unopened filehandle                    41910272    3560 41579328    0% /ora_D2BL12C_3&lt;BR /&gt;/dev/vgd2bl12c_2/lvol2 41910272 3560 41579328 0 /ora_D2BL12C_3&lt;BR /&gt;print() on unopened filehandle                    41910272    3560 41579328    0% /ora_D2BL12C_2&lt;BR /&gt;/dev/vgd2bl12c_2/lvol1 41910272 3560 41579328 0 /ora_D2BL12C_2&lt;BR /&gt;print() on unopened filehandle                    131047424 124934576 6065160   95% /ora_D2BL12C&lt;BR /&gt;/dev/vgd2bl12c/lvol1 131047424 124934576 6065160 95 /ora_D2BL12C&lt;BR /&gt;print() on unopened filehandle                    146743296 106296952 40130408   73% /ora_D2BL12B&lt;BR /&gt;/dev/vgd2bl12b/lvol1 146743296 106296952 40130408 73 /ora_D2BL12B&lt;BR /&gt;print() on unopened filehandle                    52396032 4201448 47818072    8% /ora_D2BL12A_4&lt;BR /&gt;/dev/vgd2bl12a_2/lvol2 52396032 4201448 47818072 8 /ora_D2BL12A_4&lt;BR /&gt;print() on unopened filehandle                    52396032    3880 51982848    0% /ora_D2BL12A_2&lt;BR /&gt;/dev/vgd2bl12a_2/lvol1 52396032 3880 51982848 0 /ora_D2BL12A_2&lt;BR /&gt;print() on unopened filehandle                    78618624 76804888 1799640   98% /ora_D2BL12A&lt;BR /&gt;/dev/vgd2bl12a/lvol1 78618624 76804888 1799640 98 /ora_D2BL12A&lt;BR /&gt;/dev/vg27/lvol3 204865536 197661672 7147648 97 /ora_D2BL42A_3&lt;BR /&gt;/dev/vg27/lvol2 307232768 26120 304806672 0 /ora_D2BL42B_2&lt;BR /&gt;/dev/vg27/lvol1 307232768 287320072 19757192 94 /ora_D2BL43A_2&lt;BR /&gt;dhtqa2:/nvqa_98 83886080 69989880 13789704 84 /nvqa_98&lt;BR /&gt;/dev/vg27/lvol4 20578304 9825080 10669224 48 /ora_fbf_1&lt;BR /&gt;dhdtlgcc:/nvdev5 51249152 43721568 7057120 86 /nvdev_98a&lt;BR /&gt;dhdtlgcc:/nvdev5 51249152 43721568 7057120 86 /nvdev_97a&lt;BR /&gt;dhdtlgcc:/scdev2 2097152 477720 1518240 24 /scdev_30&lt;BR /&gt;dhdtlgcc:/scdev5 2097152 478104 1517880 24 /scdev_30a&lt;BR /&gt;dhdtlgcc:/scdev5 2097152 478104 1517880 24 /scdev_29&lt;BR /&gt;dhdtlgcc:/fbfdev2 1048576 332856 671776 33 /fbfdev_98&lt;BR /&gt;dhdtlgcc:/fbfdev5 1048576 338832 665408 34 /fbfdev_98a&lt;BR /&gt;dhdtlgcc:/fbfdev5 1048576 338832 665408 34 /fbfdev_97a&lt;BR /&gt;dhdtlgcc:/fbfdev1 1048576 320664 683960 32 /fbfdev_97&lt;BR /&gt;dhdtlgcc:/scdev4 2097152 312832 1673720 16 /scdev_28&lt;BR /&gt;dhdtlgcc:/nvdev4 68157440 39546928 26825408 60 /nvdev_96&lt;BR /&gt;dhdtlgcc:/nvdev5 51249152 43721568 7057120 86 /nvdev_96a&lt;BR /&gt;dhdtlgcc:/nvdev3 77463552 44335616 31057448 59 /nvdev_95&lt;BR /&gt;dhdtlgcc:/qproj4 82706432 66679968 15915696 81 /qproj4&lt;BR /&gt;dhdtlgcc:/qproj3 81920000 58942336 21561512 73 /qproj3&lt;BR /&gt;dhdtlgcc:/qproj2 81920000 67528304 13497008 83 /qproj2&lt;BR /&gt;dhdtlgcc:/qproj1 82706432 50596336 30184632 63 /qproj1&lt;BR /&gt;dhtqa2:/qa_data 15728640 7165664 8043296 47 /qa_data&lt;BR /&gt;dhtqa2:/fbfqa_98 20971520 1416464 19403080 7 /fbfqa_98&lt;BR /&gt;dhtqa2:/scqa_30 3145728 1561032 1486552 51 /scqa_30&lt;BR /&gt;dhtqa2:/scqa_26 2097152 633680 1372048 32 /scqa_26&lt;BR /&gt;dhtqa2:/nvqa_97 82968576 67447328 14551200 82 /nvqa_97&lt;BR /&gt;dhtqa2:/nvqa_96 102760448 76883520 24263072 76 /nvqa_96&lt;BR /&gt;dhtqa2:/nvqa_93 50634752 39384216 10547440 79 /nvqa_93&lt;BR /&gt;dhdtlgcc:/fbfdev4 1048576 311528 691768 31 /fbfdev_96&lt;BR /&gt;dhdtlgcc:/fbfdev2 1048576 332856 671776 33 /fbfdev_94&lt;BR /&gt;dhdtlgcc:/fbfdev1 1048576 320664 683960 32 /fbfdev1&lt;BR /&gt;dhdtlgcc:/scdev5 2097152 478104 1517880 24 /scdev1&lt;BR /&gt;dhtqa2:/fbfqa_97 30932992 1358472 27726128 5 /fbfqa_97&lt;BR /&gt;dhtqa2:/scqa_29 26214400 972984 25045088 4 /scqa_29&lt;BR /&gt;wishbone:/opcode 18874368 1379576 17365680 7 /opcode_qa&lt;BR /&gt;dhttrn1:/ECA 2097152 265072 1827744 13 /ECA&lt;BR /&gt;dhdtlgcc:/home/cc 40960000 37415648 3322880 92 /home/cc&lt;BR /&gt;dhdtlgcc:/nvdev1 49807360 44079800 5369648 89 /nvdev_97&lt;BR /&gt;dhdtlgcc:/nvdev2 51249152 42715696 8000136 84 /nvdev_98&lt;BR /&gt;dhdtlgcc:/fbfdev5 1048576 338832 665408 34 /fbfdev_71a&lt;BR /&gt;dhdtlgcc:/fbfdev3 1048576 339872 664432 34 /fbfdev_71&lt;BR /&gt;dhdtlgcc:/scdev5 2097152 478104 1517880 24 /scdev_31a&lt;BR /&gt;dhdtlgcc:/scdev3 2097152 441920 1551800 22 /scdev_31&lt;BR /&gt;dhdtlgcc:/nvdev5 51249152 43721568 7057120 86 /nvdev_71a&lt;BR /&gt;dhdtlgcc:/nvdev3 77463552 44335616 31057448 59 /nvdev_71&lt;BR /&gt;dhdtlgcc:/fbfdev3 1048576 339872 664432 34 /fbfdev_95&lt;BR /&gt;dhdtlgcc:/scdev3 2097152 441920 1551800 22 /scdev_27&lt;BR /&gt;dhqtlgmm:/tlg 325058560 260225144 60795032 81 /ndev_988&lt;BR /&gt;dhtqa2:/nvqa_71 82968576 67447328 14551200 82 /nvqa_71&lt;BR /&gt;dhtqa2:/scqa_31 26214400 972984 25045088 4 /scqa_31&lt;BR /&gt;dhtqa2:/fbfqa_71 30932992 1358472 27726128 5 /fbfqa_71&lt;BR /&gt;dhtqa1:/qadmin 1048576 59880 981384 6 /qadmin&lt;BR /&gt; &lt;BR /&gt;and the script I have used is almost the same you attached except I tried to print all the variables because thats what I have to insert inthe tables.</description>
      <pubDate>Mon, 16 Feb 2009 20:34:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-scripting-ksh-and-oracle/m-p/5156432#M455547</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-02-16T20:34:04Z</dc:date>
    </item>
  </channel>
</rss>

