Pantek Library
Hosting Provided By
CybrHost
High Speed Hosting

Row too long (-2000)

From: Dusan Kolesar <d.kolesar(at)gmail.com>
Date: Tue Jul 24 2007 - 05:27:43 EDT


Hello
I'm using MaxDb 7.6.0.34 on WinXp SP2.

My DB schema is :
CREATE TABLE logTb
(

"ID" Integer NOT NULL DEFAULT SERIAL (1),
"TSTAMP" Timestamp NOT NULL DEFAULT TIMESTAMP,
"TYPE" Integer NOT NULL DEFAULT 1,
"SENDER_ADDRESS" Varchar (255) ASCII NOT NULL DEFAULT '',
"RECEIVER_ADDRESS" Varchar (255) ASCII NOT NULL DEFAULT '',
   PRIMARY KEY ("ID")
)
//
CREATE TABLE inTb
(

"ID" Integer NOT NULL DEFAULT SERIAL (1),
"TSTAMP" Timestamp NOT NULL DEFAULT TIMESTAMP,
"LOGTB_ID" Integer NOT NULL DEFAULT -1,
"DATA" Varchar (4096) BYTE NOT NULL,
   PRIMARY KEY ("ID"),
   FOREIGN KEY FK_LOGTB_ID ("LOGTB_ID") REFERENCES      logTb (Id) ON DELETE SET DEFAULT
)
//
CREATE TABLE outTb
(

"ID" Integer NOT NULL DEFAULT SERIAL (1),
"TSTAMP" Timestamp NOT NULL DEFAULT TIMESTAMP,
"LOGTB_ID" Integer NOT NULL DEFAULT -1,
"DATA" Varchar (4096) BYTE NOT NULL,
   PRIMARY KEY ("ID"),
   FOREIGN KEY FK_LOGTB_ID ("LOGTB_ID") REFERENCES      logTb (Id) ON DELETE SET DEFAULT
)

when I do:

select

   logTb.Id,
   Value (inTb.Data, outTb.Data) as DataMsg  from logTb
   left join inTb on logTb.Id = inTb.LogTb_Id    left join outTb on logTb.Id = outTb.LogTb_Id

Do you need help?X

Syntax error or access violation;-2000 POS(8214) Row too long

It seems that sql parser sums length of all columns listed in the statement.
(Integer + Varchar (4096) BYTE + Varchar (4096) BYTE) > 8088 bytes (max. length of a table row)
But when I use Value (Col1, Col2), then maximal length of this column is max of Col1 and Col2 length.

The same is when I do:

select

   logTb.Id,
   Value (Substr (inTb.Data, 1, 10), Substr (outTb.Data, 1, 10)) as DataMsg  from logTb
   left join inTb on logTb.Id = inTb.LogTb_Id    left join outTb on logTb.Id = outTb.LogTb_Id

Length of Substr (Column, 1, n) is n but not Length of Column type.

Is there any way how to restrict length of output columns ???

Thank you very much for support.

Do you need more help?X

   Regards, Dusan

-- 
Dusan Kolesar
Helsinska 19
040 13  Kosice
Slovakia
e-mail primary : d.kolesar@gmail.com
e-mail alternative : d.kolesar@centrum.sk
ICQ# : 160507424

-- 
MaxDB Discussion Mailing List
For list archives: 
http://lists.mysql.com/maxdb
To unsubscribe:    
http://lists.mysql.com/maxdb?unsub=lists@pantek.com
Received on Tue Jul 24 05:28:15 2007

This archive was generated by hypermail 2.1.8 : Thu Aug 09 2007 - 19:30:27 EDT


Contact Us  Legal Notices  Order Services Online 
Pantek Home  Privacy Policy  IT news  Site Map  Pantek Library