If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Other > Progress 91D - ODBC - Error LOCK TABLE IS FULL

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-03-04, 13:10
boti boti is offline
Registered User
 
Join Date: May 2004
Posts: 1
Question Progress 91D - ODBC - Error LOCK TABLE IS FULL

(PROGRESS 91D) I've done an application in VB and connected to progress by ADO (and ODBC) Some times when i try to execute a delete or update sql sentence, the error LOCK TALBE IS FULL (7870) appers.
It doesn't happend just when it's a large amount of records to update/delete, it also happend whit one record. But the problem is that it doesn't happend always; some times i try the sentence with one condition, it fails, and changing it, it doesn't work.
(for example:
delete from pub.TABLE where FIELD=1 ---> OK
delete from pub.TABLE where FIELD=2 ---> ERROR )
I don't have experience with progress with odbc and i don't speak english realy (spanish speaker)
Thanks, Omar
Reply With Quote
  #2 (permalink)  
Old 05-07-04, 06:35
brbogdan brbogdan is offline
Registered User
 
Join Date: Nov 2003
Location: Lomza, POLAND
Posts: 81
Hi,
Try to increase -L parameter in your parameter file for starting Progress database server. This file (server.pf for example) is invoked by the command:

proserve -pf server.pf

where server.pf contains:

-db your-db-file
-S tcp-port-name
-H host-machine-name
.....
-L 20 000 <- default value is 8192

However error raised by Progress server tells you, that you are updating/deleting/inserting more that 8192 records during single transaction. It's better to avoid too large transactions.
Regards
Bogdan
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On