news [mailto:[EMAIL PROTECTED] Im Auftrag von Sven K�hler wrote:
> 
> > Auto Commit: On, SQL Mode: Internal, Isolation Level: Committed
> > General error;-9211 POS(1) System error: KB Stack type illegal.
> 
> Is there a workaround for this problem?
> I need to get a list of the tables with their comment, and domain.tables
> seems to be the only table, that is suitable for this case.

You used

lower(tablename) LIKE 'base_%' OR
lower(tablename) LIKE 'data_%' OR
lower(tablename) LIKE 'hvz_%' OR
lower(tablename) LIKE 'km_%')
 

As normal identifier (no special_identifier) are always stored with capital letters, 
the easiest way is to say

tablename LIKE 'BASE_%' OR
tablename LIKE 'DATA_%' OR
tablename LIKE 'HVZ_%' OR
tablename LIKE 'KM_%')

Elke
SAP Labs Berlin

> --
> MaxDB Discussion Mailing List
> For list archives: http://lists.mysql.com/maxdb
> To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

--
MaxDB Discussion Mailing List
For list archives: http://lists.mysql.com/maxdb
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to