<?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: Database Creation in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/database-creation/m-p/4374210#M665035</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt; I m not able to load .d file from table contents, actually it is not highlighted.&lt;BR /&gt;After Data Definition cursor directly goes to SQL View.&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards&lt;BR /&gt;Shabbir</description>
    <pubDate>Tue, 24 Mar 2009 07:26:32 GMT</pubDate>
    <dc:creator>Shabbir Shaikh</dc:creator>
    <dc:date>2009-03-24T07:26:32Z</dc:date>
    <item>
      <title>Database Creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-creation/m-p/4374206#M665031</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;  I have following files in .d format and i have to create database with that files.&lt;BR /&gt;&lt;BR /&gt;-rw-r-----   1 root       sys            173 Mar  5 11:48 nar_cmmt.d&lt;BR /&gt;-rw-r-----   1 root       sys            791 Mar  5 11:48 xb2_ctrl.d&lt;BR /&gt;-rw-r-----   1 root       sys            179 Mar  5 11:48 xb2_dlya.d&lt;BR /&gt;-rw-r-----   1 root       sys            180 Mar  5 11:48 xb2_dlyc.d&lt;BR /&gt;-rw-r-----   1 root       sys            179 Mar  5 11:48 xb2_errl.d&lt;BR /&gt;-rw-r-----   1 root       sys            177 Mar  5 11:48 xx_ref_e.d</description>
      <pubDate>Mon, 09 Mar 2009 03:32:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-creation/m-p/4374206#M665031</guid>
      <dc:creator>Shabbir Shaikh</dc:creator>
      <dc:date>2009-03-09T03:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: Database Creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-creation/m-p/4374207#M665032</link>
      <description>This type of ".d" file looks like Progress data definition data files.  Is this a Progress database?</description>
      <pubDate>Mon, 09 Mar 2009 16:51:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-creation/m-p/4374207#M665032</guid>
      <dc:creator>Ben Dehner</dc:creator>
      <dc:date>2009-03-09T16:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: Database Creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-creation/m-p/4374208#M665033</link>
      <description>Yes&lt;BR /&gt;&lt;BR /&gt;It is Progress83d</description>
      <pubDate>Sat, 21 Mar 2009 04:30:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-creation/m-p/4374208#M665033</guid>
      <dc:creator>Shabbir Shaikh</dc:creator>
      <dc:date>2009-03-21T04:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: Database Creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-creation/m-p/4374209#M665034</link>
      <description>Assuming that you are following the standard Progress naming conventions, you're missing the schema definition.&lt;BR /&gt;&lt;BR /&gt;In Progress, the .d files are data export files.  These file types only contain the table data, not the table definitions.  You also need a .df schema definition file.  This file defines the table structure, indexes, sequences and so forth.  The basic procedure to create the Progress database would be:&lt;BR /&gt;&lt;BR /&gt;1) create the empty database:&lt;BR /&gt;prodb mydb empty&lt;BR /&gt;&lt;BR /&gt;2) import the data definitions from the .df file:&lt;BR /&gt;_progres -1 mydb&lt;BR /&gt; Tools -&amp;gt; Data Dictionary&lt;BR /&gt; Admin -&amp;gt; Load Data and Definitions -&amp;gt; Data Definitions (.df file) &lt;BR /&gt; -- here you would specify the .df file that you apparently don't have&lt;BR /&gt;&lt;BR /&gt;3) now load your data:&lt;BR /&gt;_progres -1 mydb&lt;BR /&gt; Tools -&amp;gt; Data Dictionary&lt;BR /&gt; Admin -&amp;gt; Load Data and Definitions -&amp;gt; Table Contents (.d file)&lt;BR /&gt; -- now you would load the data for each one of the .d files that you do have&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Without the .df file, you're out of luck.  While it would be possible to create a database and manually build the tables to load the data, presumably that there is an application that references specific column names and/or indexes that you won't know.&lt;BR /&gt;&lt;BR /&gt;Incidentally, you haven't mentioned what version of HP-UX you are running.  Progress 8 was de-supported long ago, and I'm not sure that it will run on HP-UX 11i.  In addition, Progress did not support anything on Itanium until version 10.</description>
      <pubDate>Mon, 23 Mar 2009 17:52:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-creation/m-p/4374209#M665034</guid>
      <dc:creator>Ben Dehner</dc:creator>
      <dc:date>2009-03-23T17:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Database Creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-creation/m-p/4374210#M665035</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt; I m not able to load .d file from table contents, actually it is not highlighted.&lt;BR /&gt;After Data Definition cursor directly goes to SQL View.&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards&lt;BR /&gt;Shabbir</description>
      <pubDate>Tue, 24 Mar 2009 07:26:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-creation/m-p/4374210#M665035</guid>
      <dc:creator>Shabbir Shaikh</dc:creator>
      <dc:date>2009-03-24T07:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: Database Creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-creation/m-p/4374211#M665036</link>
      <description>The table definitions must be in the database before loading the contents.  If you haven't loaded a definitions (DF) file, you can't load the data.  Do you have a definitions file, and is it loaded?  Try dumping the data definitions and see if it produced any output.  Or if it will let you.</description>
      <pubDate>Tue, 24 Mar 2009 16:52:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-creation/m-p/4374211#M665036</guid>
      <dc:creator>Ben Dehner</dc:creator>
      <dc:date>2009-03-24T16:52:31Z</dc:date>
    </item>
  </channel>
</rss>

