Re: [SQL] Max Length of SQL - Mailing list pgsql-sql

From Peter Garner
Subject Re: [SQL] Max Length of SQL
Date
Msg-id 19990121193638.17311.rocketmail@send204.yahoomail.com
Whole thread Raw
List pgsql-sql
Hi Tim,

  I might be interested in
collaborating as I am presently writing
an offline reader that gets NNTP news
and puts it in postgres. (I have already
done this in C++ but I want to port it
to Java.)  If nothing else, you are
welcome to the C++ code.  Word of
warning, I have been doing C++ for 11
years but this is my first attempt at
Java! :-)  Another word of warning, :-)
I am an itinerant consultant and I tend
to get called off to work in the middle
of personal projects like this! :-)

Right now my C++ program uses LOBs.  I
think Herouz is right, however.  She
suggested splitting >8K fields into
multiple text fields.  E.g. you would
have a table (for nntp news) like :

create table MsgBodies
(
  MsgId        Text  ,
  ChunkNumber  int   ,
  MsgBody      Text  ,

  primary key (MsgId , ChunkNumber)
) ;

The majority of nntp msgs would just
have one entry, but a few would be split
into two or more entries.


---Tim Perdue <tim_perdue@yahoo.com> wrote:
>that it can talk to NNTP servers too
>(any volunteers????).

==
Peace,
Peter

We are Microsoft of Borg, you will be assimilated!
Resistance is fut... *BZZRRT*
General Protection Fault in MSBorg32.DLL,
Please contact the vendor of this Borg for more information
_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com


pgsql-sql by date:

Previous
From: Dave Inskeep
Date:
Subject: Re: [SQL] Beginner question - select with multiple tables
Next
From: Tim Perdue
Date:
Subject: Java/JDBC/PGSQL Mailing List Archiver