Hi.
I use AdabasSQLGateway(CONNX) from Java Application on Windows.
[JavaApplication] > [JDBC] > [SQLGateway] > [Adabas]
java.sql.SQLException: Unable to get record from table (ADABAS_FILE_9).
Error Executing Query:  General Error 1236: Exceeded Record Buffer of 32K.
 
 
 
What is the “Record Buffer”?
help me please.
             
            
              
            
           
          
            
              
                system  
              
                  
                    April 24, 2009, 11:28am
                   
                  2 
               
             
            
              Without seeing the remainde of the message …
I would say that the total length of the data  to be returned (sum of all column lengths) is greater than 32K
Comment:
Should file 9 be the ‘new’ Employees file, I would recommend using the 'NATURAL’Employees File (usually - File 11)
             
            
              
            
           
          
            
            
              Thank you for your reply.
I checked file 9 for LOB fields , But there are no LOB fields.
“32K limit” cause of Adabas ? or SQLGateway ?
I want to access a Large data (greater than 32K) by SQLGateway and Java.
             
            
              
            
           
          
            
              
                system  
              
                  
                    April 24, 2009,  2:10pm
                   
                  4 
               
             
            
              The following restriction apply in the current SQL Gateway Version
Open Systems:  max. Record Length 64K 
Mainframe:        max. Record Length 32K 
 
These restrictions will be removed, with the usage (planned) of the extended Adabas Interface (ACBX).
Question:
In either case - you may want to retrieve the columns using multiple statements; i.e. use ISN_tablename as primary key to other columns.
             
            
              
            
           
          
            
            
              I understand these restriction. Thank you.
Question:
 
Answer: