<?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: Sql Query in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335033#M874615</link>
    <description>hi tapas,&lt;BR /&gt;&lt;BR /&gt;i tried the following simple example:&lt;BR /&gt;============================================&lt;BR /&gt;yd@MYDB.MU&amp;gt; select * from tab1;&lt;BR /&gt;&lt;BR /&gt;C&lt;BR /&gt;_&lt;BR /&gt;b&lt;BR /&gt;c&lt;BR /&gt;a&lt;BR /&gt;&lt;BR /&gt;Elapsed: 00:00:00.00&lt;BR /&gt;yd@MYDB.MU&amp;gt; select * from tab2;&lt;BR /&gt;&lt;BR /&gt;C&lt;BR /&gt;_&lt;BR /&gt;a&lt;BR /&gt;a&lt;BR /&gt;a&lt;BR /&gt;a&lt;BR /&gt;a&lt;BR /&gt;b&lt;BR /&gt;b&lt;BR /&gt;c&lt;BR /&gt;&lt;BR /&gt;8 rows selected.&lt;BR /&gt;&lt;BR /&gt;Elapsed: 00:00:00.01&lt;BR /&gt;yd@MYDB.MU&amp;gt; select *&lt;BR /&gt;from tab1&lt;BR /&gt;where column1 in (select column6 from tab2 where column6=column1 having count(*) &amp;gt; 1 &lt;BR /&gt;group by column6);&lt;BR /&gt;&lt;BR /&gt;C&lt;BR /&gt;_&lt;BR /&gt;b&lt;BR /&gt;a&lt;BR /&gt;&lt;BR /&gt;Elapsed: 00:00:00.01&lt;BR /&gt;yd@MYDB.MU&amp;gt;&lt;BR /&gt;============================================&lt;BR /&gt;&lt;BR /&gt;let us know it this helps!&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj</description>
    <pubDate>Mon, 19 Jul 2004 23:06:29 GMT</pubDate>
    <dc:creator>Yogeeraj_1</dc:creator>
    <dc:date>2004-07-19T23:06:29Z</dc:date>
    <item>
      <title>Sql Query</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335030#M874612</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have one small query. My query is like below:&lt;BR /&gt;"Display all columns from table1 for the uniq(column1) which has more than one column6"&lt;BR /&gt;&lt;BR /&gt;That means there are some records in the table where for the same column query there should be one record but wrongly there is not. For that i want to extract those records which has more than one column6 for the same column1.&lt;BR /&gt;&lt;BR /&gt;Rgds&lt;BR /&gt;Tapas</description>
      <pubDate>Mon, 19 Jul 2004 07:55:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335030#M874612</guid>
      <dc:creator>Tapas Jha</dc:creator>
      <dc:date>2004-07-19T07:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Query</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335031#M874613</link>
      <description>Uhmm.  Can you explain a little bit more, or post an example of what you mean?  &lt;BR /&gt;&lt;BR /&gt;Brian</description>
      <pubDate>Mon, 19 Jul 2004 19:36:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335031#M874613</guid>
      <dc:creator>Brian Crabtree</dc:creator>
      <dc:date>2004-07-19T19:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Query</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335032#M874614</link>
      <description>Hi Tapas,&lt;BR /&gt;&lt;BR /&gt;From you query I understand that you have someting like this.&lt;BR /&gt;&lt;BR /&gt;For example a table has two columns, column1 and column6. For same value of column1 you have multiple entries of column6. &lt;BR /&gt;&lt;BR /&gt;The following sql will list the value of column1 and the number of column6 values associated with the same value of column1.&lt;BR /&gt;&lt;BR /&gt;Here are the values in emp table&lt;BR /&gt;  column1      column6&lt;BR /&gt;----------     ----------&lt;BR /&gt;       101      AAAAAAA&lt;BR /&gt;       101      SSSSSSS&lt;BR /&gt;       101      BBBBBBB&lt;BR /&gt;       102      xxxxxxxx&lt;BR /&gt;       103      mmmmm&lt;BR /&gt; &lt;BR /&gt; select count(1), column1&lt;BR /&gt;    from emp&lt;BR /&gt;    having count(1) &amp;gt; 1&lt;BR /&gt;   group by column1;&lt;BR /&gt;&lt;BR /&gt;  COUNT(1)        ENO&lt;BR /&gt;---------- ----------&lt;BR /&gt;         3        101&lt;BR /&gt;         2        102&lt;BR /&gt;&lt;BR /&gt;I hope this helps.&lt;BR /&gt;&lt;BR /&gt;Indira A.&lt;BR /&gt;</description>
      <pubDate>Mon, 19 Jul 2004 20:46:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335032#M874614</guid>
      <dc:creator>Indira Aramandla</dc:creator>
      <dc:date>2004-07-19T20:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Query</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335033#M874615</link>
      <description>hi tapas,&lt;BR /&gt;&lt;BR /&gt;i tried the following simple example:&lt;BR /&gt;============================================&lt;BR /&gt;yd@MYDB.MU&amp;gt; select * from tab1;&lt;BR /&gt;&lt;BR /&gt;C&lt;BR /&gt;_&lt;BR /&gt;b&lt;BR /&gt;c&lt;BR /&gt;a&lt;BR /&gt;&lt;BR /&gt;Elapsed: 00:00:00.00&lt;BR /&gt;yd@MYDB.MU&amp;gt; select * from tab2;&lt;BR /&gt;&lt;BR /&gt;C&lt;BR /&gt;_&lt;BR /&gt;a&lt;BR /&gt;a&lt;BR /&gt;a&lt;BR /&gt;a&lt;BR /&gt;a&lt;BR /&gt;b&lt;BR /&gt;b&lt;BR /&gt;c&lt;BR /&gt;&lt;BR /&gt;8 rows selected.&lt;BR /&gt;&lt;BR /&gt;Elapsed: 00:00:00.01&lt;BR /&gt;yd@MYDB.MU&amp;gt; select *&lt;BR /&gt;from tab1&lt;BR /&gt;where column1 in (select column6 from tab2 where column6=column1 having count(*) &amp;gt; 1 &lt;BR /&gt;group by column6);&lt;BR /&gt;&lt;BR /&gt;C&lt;BR /&gt;_&lt;BR /&gt;b&lt;BR /&gt;a&lt;BR /&gt;&lt;BR /&gt;Elapsed: 00:00:00.01&lt;BR /&gt;yd@MYDB.MU&amp;gt;&lt;BR /&gt;============================================&lt;BR /&gt;&lt;BR /&gt;let us know it this helps!&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Mon, 19 Jul 2004 23:06:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335033#M874615</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2004-07-19T23:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Query</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335034#M874616</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I am sorry that your sql didn't work. May be i have clearly stated you.&lt;BR /&gt;&lt;BR /&gt;Below is the sample output. I hope it will clear your doubt. &lt;BR /&gt;If you see you will find that for tstAB=4839530267 there are two records. I want those records seperately. How can i get? Waiting for your feedback.&lt;BR /&gt;&lt;BR /&gt;Rgds&lt;BR /&gt;Tapas&lt;BR /&gt;&lt;BR /&gt;tstkey       44964913&lt;BR /&gt;tstAB        5637791967&lt;BR /&gt;tstacct      159392515&lt;BR /&gt;tstsndr      &lt;BR /&gt;tstshpr      ABC&lt;BR /&gt;tstscity     &lt;BR /&gt;tstsstt      &lt;BR /&gt;tstscnty     &lt;BR /&gt;tstszip      3240505&lt;BR /&gt;tststel      022-22303949&lt;BR /&gt;tstattn      &lt;BR /&gt;tstcnsg      bcd&lt;BR /&gt;tstcadr1     Addr1&lt;BR /&gt;tstcadr2     addr2&lt;BR /&gt;tstccity     &lt;BR /&gt;tstcstt      &lt;BR /&gt;tstccnty     &lt;BR /&gt;tstczip      900001&lt;BR /&gt;tstctel      011912222303949&lt;BR /&gt;tstorig      X&lt;BR /&gt;tstdest      Y&lt;BR /&gt;tstori_sub   &lt;BR /&gt;tstloc_prod  &lt;BR /&gt;tstgbl_prod  A&lt;BR /&gt;tstpcs       1&lt;BR /&gt;tstwght      1.4&lt;BR /&gt;tstwgtu      K&lt;BR /&gt;tstdwght     0.0&lt;BR /&gt;tstdtawb     &lt;BR /&gt;tstdtpu      05/01/2004&lt;BR /&gt;tsttmpu      19:25&lt;BR /&gt;tstisogmtpu  800&lt;BR /&gt;tstdtky      &lt;BR /&gt;tsttmky      19:25&lt;BR /&gt;tstisogmtky  800&lt;BR /&gt;tstrte       &lt;BR /&gt;tstbill      &lt;BR /&gt;tstfrom      F@XAL&lt;BR /&gt;tstvsn       21&lt;BR /&gt;tstssndx     &lt;BR /&gt;tstcsndx     &lt;BR /&gt;tstdtmadd    1083466422&lt;BR /&gt;tstdtmfl     1083464753&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;tstkey       45482954&lt;BR /&gt;tstAB       4839530267&lt;BR /&gt;tstacct      121235539&lt;BR /&gt;tstsndr      MR. X&lt;BR /&gt;tstshpr      A.P LIBRARY&lt;BR /&gt;tstscity     &lt;BR /&gt;tstsstt      &lt;BR /&gt;tstscnty     &lt;BR /&gt;tstszip      9700002                  &lt;BR /&gt;tststel      12122699&lt;BR /&gt;tstattn      NA&lt;BR /&gt;tstcnsg      XYZ&lt;BR /&gt;tstcadr1     AB Park&lt;BR /&gt;tstcadr2     AREA1&lt;BR /&gt;tstccity     READING                 &lt;BR /&gt;tstcstt      &lt;BR /&gt;tstccnty     &lt;BR /&gt;tstczip      UY154 4ZZ&lt;BR /&gt;tstctel      1235866600&lt;BR /&gt;tstorig      CHK&lt;BR /&gt;tstdest      RED&lt;BR /&gt;tstori_sub   MAL&lt;BR /&gt;tstloc_prod  X&lt;BR /&gt;tstgbl_prod  O&lt;BR /&gt;tstpcs       1&lt;BR /&gt;tstwght      0.5&lt;BR /&gt;tstwgtu      K&lt;BR /&gt;tstdwght     0.0&lt;BR /&gt;tstdtawb     &lt;BR /&gt;tstdtpu      06/03/2004&lt;BR /&gt;tsttmpu      19:05&lt;BR /&gt;tstisogmtpu  -530&lt;BR /&gt;tstdtky      06/03/2004   &lt;BR /&gt;tsttmky      19:08     &lt;BR /&gt;tstisogmtky  -530&lt;BR /&gt;tstrte       PL18C&lt;BR /&gt;tstbill      000000000&lt;BR /&gt;tstfrom      LSM@CHK&lt;BR /&gt;tstvsn       15021&lt;BR /&gt;tstssndx     &lt;BR /&gt;tstcsndx     &lt;BR /&gt;tstdtmadd    1086278916&lt;BR /&gt;tstdtmfl     1086278554&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;tstkey       45488682&lt;BR /&gt;tstAB        4839530267&lt;BR /&gt;tstacct      121235539&lt;BR /&gt;tstsndr      MR. X&lt;BR /&gt;tstshpr      A.P LIBRARY&lt;BR /&gt;tstscity     &lt;BR /&gt;tstsstt      &lt;BR /&gt;tstscnty     &lt;BR /&gt;tstszip      9700002                  &lt;BR /&gt;tststel      12122699&lt;BR /&gt;tstattn      NA&lt;BR /&gt;tstcnsg      XYZ&lt;BR /&gt;tstcadr1     AB Park&lt;BR /&gt;tstcadr2     AREA1&lt;BR /&gt;tstccity     READING&lt;BR /&gt;tstcstt                              &lt;BR /&gt;tstccnty                 &lt;BR /&gt;tstczip      UY154 4ZZ&lt;BR /&gt;tstctel      1235866600  &lt;BR /&gt;tstorig      CHK&lt;BR /&gt;tstdest      RED         &lt;BR /&gt;tstori_sub   MAL&lt;BR /&gt;tstloc_prod  X&lt;BR /&gt;tstgbl_prod  O&lt;BR /&gt;tstpcs       1           &lt;BR /&gt;tstwght      1.0         &lt;BR /&gt;tstwgtu      K           &lt;BR /&gt;tstdwght     0.0         &lt;BR /&gt;tstdtawb                 &lt;BR /&gt;tstdtpu      06/03/2004  &lt;BR /&gt;tsttmpu      19:05       &lt;BR /&gt;tstisogmtpu  -530        &lt;BR /&gt;tstdtky      06/03/2004  &lt;BR /&gt;tsttmky      19:08     &lt;BR /&gt;tstisogmtky  -530      &lt;BR /&gt;tstrte       PL18C     &lt;BR /&gt;tstbill      000000000 &lt;BR /&gt;tstfrom      LSM@CHK&lt;BR /&gt;tstvsn       15021     &lt;BR /&gt;tstssndx               &lt;BR /&gt;tstcsndx               &lt;BR /&gt;tstdtmadd    1086288799&lt;BR /&gt;tstdtmfl     1086288406&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Jul 2004 01:30:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335034#M874616</guid>
      <dc:creator>Tapas Jha</dc:creator>
      <dc:date>2004-07-20T01:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Query</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335035#M874617</link>
      <description>Just check if something like below meets your need (it is not tested).&lt;BR /&gt;&lt;BR /&gt;select * from table1 &lt;BR /&gt;where column1 exists &lt;BR /&gt;(select count(*) &lt;BR /&gt; from table1 group by column6 &lt;BR /&gt; having count(*) &amp;gt; 1);&lt;BR /&gt;&lt;BR /&gt;sks</description>
      <pubDate>Tue, 20 Jul 2004 01:43:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335035#M874617</guid>
      <dc:creator>Sanjay Kumar Suri</dc:creator>
      <dc:date>2004-07-20T01:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Query</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335036#M874618</link>
      <description>Hi Sanjay,&lt;BR /&gt;&lt;BR /&gt;No, it is not working. It is giving syntax error on exists.&lt;BR /&gt;&lt;BR /&gt;Rgds&lt;BR /&gt;Tapas</description>
      <pubDate>Tue, 20 Jul 2004 02:00:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335036#M874618</guid>
      <dc:creator>Tapas Jha</dc:creator>
      <dc:date>2004-07-20T02:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Query</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335037#M874619</link>
      <description>Check the following (it is tested but on different table. Make suitable changes and use:&lt;BR /&gt;&lt;BR /&gt;select * from employees&lt;BR /&gt;where department_id in &lt;BR /&gt;(select department_id&lt;BR /&gt;from employees group by department_id &lt;BR /&gt;having count(*) &amp;gt; 1);&lt;BR /&gt;&lt;BR /&gt;sks</description>
      <pubDate>Tue, 20 Jul 2004 02:20:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335037#M874619</guid>
      <dc:creator>Sanjay Kumar Suri</dc:creator>
      <dc:date>2004-07-20T02:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Query</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335038#M874620</link>
      <description>Sanjay,&lt;BR /&gt;Thanx a lot. &lt;BR /&gt;Your sql is closing to solution. But i think i need to clarify exactly what i need( i think i have not given clear picture). If you see my example you will find that for the same tstAB(4839530267) there are two tstwght fields. I want those records which have diffrent tstwght fields.&lt;BR /&gt;(That means my question is like: Display those records which has different tstwght for the same tstAB fileds)&lt;BR /&gt;Is it clear to you or you need more..?&lt;BR /&gt;&lt;BR /&gt;Rgds&lt;BR /&gt;Tapas</description>
      <pubDate>Tue, 20 Jul 2004 04:22:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335038#M874620</guid>
      <dc:creator>Tapas Jha</dc:creator>
      <dc:date>2004-07-20T04:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Query</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335039#M874621</link>
      <description>Include the AND clause&lt;BR /&gt;&lt;BR /&gt;select * from employees&lt;BR /&gt;where department_id in &lt;BR /&gt;(select department_id&lt;BR /&gt;from employees group by department_id &lt;BR /&gt;having count(*) &amp;gt; 1)&lt;BR /&gt;and column2 &amp;lt;&amp;gt; column3;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Just check and try it. &lt;BR /&gt;&lt;BR /&gt;sks</description>
      <pubDate>Tue, 20 Jul 2004 05:21:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335039#M874621</guid>
      <dc:creator>Sanjay Kumar Suri</dc:creator>
      <dc:date>2004-07-20T05:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Query</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335040#M874622</link>
      <description>Sanjay,&lt;BR /&gt;&lt;BR /&gt;Sorry But I didn't get you. Can you explain by column1 and column2. Here in my case what will be column1 and column2. Since tstwght is the filed which will be different for the same tstAB.&lt;BR /&gt;Below is the output from where you can say.( for the same tstAB there are diff tstwght. We need those)&lt;BR /&gt;tstkey       45482954&lt;BR /&gt;tstAB       4839530267&lt;BR /&gt;tstacct      121235539 &lt;BR /&gt;tstwght      0.5&lt;BR /&gt;&lt;BR /&gt;tstkey       45488682&lt;BR /&gt;tstAB        4839530267&lt;BR /&gt;tstacct      121235539&lt;BR /&gt;tstwght      1.0 &lt;BR /&gt;&lt;BR /&gt;Rgds&lt;BR /&gt;Tapas</description>
      <pubDate>Tue, 20 Jul 2004 06:56:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335040#M874622</guid>
      <dc:creator>Tapas Jha</dc:creator>
      <dc:date>2004-07-20T06:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Query</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335041#M874623</link>
      <description>select tstab, tstwght from tableA where tstab in (select tstab from tableA group by tstab having count(*) &amp;gt; 1);&lt;BR /&gt;&lt;BR /&gt;That should work.  Let me know.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Brian</description>
      <pubDate>Fri, 23 Jul 2004 12:27:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335041#M874623</guid>
      <dc:creator>Brian Crabtree</dc:creator>
      <dc:date>2004-07-23T12:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Query</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335042#M874624</link>
      <description>Hi Brian,&lt;BR /&gt;&lt;BR /&gt;Thanx for your reply. Your query results like below:&lt;BR /&gt;&lt;BR /&gt; tstab   tstwght  &lt;BR /&gt;15581882       2.0  &lt;BR /&gt;15581882       2.0  &lt;BR /&gt;206367781       0.5&lt;BR /&gt;206367781       0.5&lt;BR /&gt;308102874       0.5&lt;BR /&gt;308102874      10.5&lt;BR /&gt;336157080       0.5&lt;BR /&gt;336157080       0.5&lt;BR /&gt;339287550       0.5&lt;BR /&gt;339287550       1.0&lt;BR /&gt;339582261       4.5&lt;BR /&gt;339582261       0.5&lt;BR /&gt;But i want those which have different tstwght. My expected output will be like:&lt;BR /&gt; tstab   tstwght  &lt;BR /&gt;308102874       0.5&lt;BR /&gt;308102874      10.5&lt;BR /&gt;339287550       0.5&lt;BR /&gt;339287550       1.0&lt;BR /&gt;339582261       4.5&lt;BR /&gt;339582261       0.5&lt;BR /&gt;&lt;BR /&gt;Hope it is clear to you.&lt;BR /&gt;Rgds&lt;BR /&gt;Tapa</description>
      <pubDate>Tue, 27 Jul 2004 05:14:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335042#M874624</guid>
      <dc:creator>Tapas Jha</dc:creator>
      <dc:date>2004-07-27T05:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: Sql Query</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335043#M874625</link>
      <description>Maybe you should add tstwght to the group by clause.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Tue, 27 Jul 2004 05:17:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sql-query/m-p/3335043#M874625</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2004-07-27T05:17:06Z</dc:date>
    </item>
  </channel>
</rss>

