A.2. RTA Constants

Here is an excerpt from the rta.h file showing the constants that describe the internal size limits for the RTA package. You can change these limits, but if you do, be sure to recompile the RTA package using your new settings.

 #include <limits.h> /* for PATH_MAX */ /** Maximum number of tables allowed in the system. * Your database may not contain more than this number * of tables. */ #define MX_TBL (500) /** Maximum number of columns allowed in the system. * Your database may not contain more than this number * of columns. */ #define MX_COL (2500) /** Maximum number of characters in a column name, table * name, and in help. See TBLDEF and COLDEF below. */ #define MXCOLNAME (30) #define MXTBLNAME (30) #define MXHELPSTR (1000) ...

Get Linux Appliance Design now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.