1. 30 Jun, 2001 5 commits
  2. 29 Jun, 2001 10 commits
  3. 28 Jun, 2001 2 commits
  4. 27 Jun, 2001 9 commits
  5. 26 Jun, 2001 4 commits
  6. 25 Jun, 2001 5 commits
  7. 24 Jun, 2001 1 commit
  8. 23 Jun, 2001 4 commits
    • Peter Eisentraut's avatar
    • Peter Eisentraut's avatar
      Since a missing pg_pwd file is a valid situation, don't print an error · f1423cd9
      Peter Eisentraut authored
      message in that case.
      f1423cd9
    • Bruce Momjian's avatar
      > Marko Kreen <marko@l-t.ee> writes: · 6a7f23c2
      Bruce Momjian authored
      > > secure_ctx changes too.  it will be PGC_BACKEND after '-p'.
      >
      > Oh, okay, I missed that part.  Could we see the total state of the
      > patch --- ie, a diff against current CVS, not a bunch of deltas?
      > I've gotten confused about what's in and what's out.
      
      Ok, here it is.  Cleared the ctx comment too - after -p
      it will be PGC_BACKEND in any case.
      
      Marko Kreen
      6a7f23c2
    • Bruce Momjian's avatar
      Here the latest version and first working release of Ora2Pg a tool to export · 2e2d17ed
      Bruce Momjian authored
      Oracle database to PostgreSQL.
      
          It currently dump the database schema (tables, views, sequences,
          indexes, grants), with primary, unique and foreign keys into PostgreSQL
          syntax without editing the SQL code generated. You can dump only a
          particular schema from the Oracle database.
      
          Functions, procedures and triggers with SQL or PLSQL code generated must
          be reviewed to match the PostgreSQL syntax. Some usefull recommandation
          on porting Oracle to PostgreSQL can be found at
      http://techdocs.postgresql.org/
          under the "Converting from other Databases to PostgreSQL" Oracle part. I
      just
          notice one thing more is that the trunc() function in Oracle is the same for
      number
          or date so be carefull when porting to PostgreSQL to use trunc() for number
      and
          date_trunc() for date.
      
      I will add more precision in type NUMBER conversion based on length to match
      as closest as possible all rich PostgreSQL numerics type. But it seems not to be
      
      urgent as it seems that Oracle DBAs only create number with length 22 (default)
      Space seems not to be their problem...
      
      Gilles DAROLD
      2e2d17ed