home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / database / ingres / 2136 < prev    next >
Encoding:
Internet Message Format  |  1992-12-22  |  1.6 KB

  1. Path: sparky!uunet!murphy!dwrsun4!perl
  2. From: perl@dwrsun4.UUCP (Robert Perlberg)
  3. Newsgroups: comp.databases.ingres
  4. Subject: Re: Ingres Design Limits
  5. Message-ID: <2967@perl-sun.dwrsun4.UUCP>
  6. Date: 22 Dec 92 21:44:26 GMT
  7. References: <1992Dec9.235410.4228@goethe.credtech.com>
  8. Organization: Dean Witter Reynolds Inc., New York
  9. Lines: 35
  10.  
  11. In article <1992Dec9.235410.4228@goethe.credtech.com>, twombly@goethe.credtech.com (chris twombly) writes:
  12. > I have heard that INGRES has some limitations, and amongst them:
  13. > -    30 table limit per database
  14.  
  15. Definitely false.  I've have databases with many more tables than
  16. that.  Where did you get that from?
  17.  
  18. > -    2000 byte limit record size
  19.  
  20. True.  This also extends to joins.  The rows produced by a SELECT
  21. cannot be more that 2000 bytes worth of data each, so you can't do
  22. something like this:
  23.  
  24.     create table t1 (k1 integer, c1 char(1500));
  25.     create table t2 (k2 integer, c2 char(1500));
  26.  
  27.     select c1, c2 from t1, t2 where k1 = k2;
  28.  
  29. The select will complain about the resulting row being too long, even
  30. if you are not redirecting the output into another table.
  31.  
  32. > -    256 column limit per table
  33.  
  34. Probably true.  I've run into the 2000 byte limit myself (although if I
  35. had my way I would have designed the database differently), but I'd
  36. like to know what type of application would need more than 256
  37. columns.
  38.  
  39. Robert Perlberg
  40. Dean Witter Reynolds Inc., New York
  41. dwrsun4!perl@murphy.com -or- philabs!dwrsun4!perl
  42.  
  43. "We don't believe the software industry is ripping off the customer."
  44.     -- Ken Wasch, executive director of the Software Publishers Association
  45.