Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
Table not showing all records
I have a native table in OI that is showing that it has about 5000 records, but the LK file size is extremely large. When I select the records it takes a long time also, as if it had much, much more records, but it still shows that it has selected the 5000 records. When I try to delete records it takes a longer than normal amount of time to delete even just one record. I even tried to clear the table using the Database Manager - Clear Table... menu item, but it will process for a while and nothing will happen. I don't know a lot about GFE's, but I did the Verify LH Tables in the Database Manager, and it just resulted in taking a long time to process and ended up giving me some statistics about the table, but did not find any GFE's to repair. Any suggestions on how I can troubleshoot this? Luckily with this particular table the data is not crucial so I don't mind erasing all the records, or even making a new table and removing this one, but I would like to understand how it ended up this way and how to troubleshoot in case it ever happens to a table that I do need to salvage the data from.

Comments
- Records that are so large they can't be read in one pass because they won't fit into a single packet.
- The majority of the data living in the the OV file, which means one pass has to go to the LK file to get the beginning of the record and then it has to go to the OV file (without the benefit of hashing!) to get the rest of the record.
Honestly, this is about a worst case scenario as it gets.You said that your main concern was trying to understand what caused the problem and that under this condition you would have no problem recreating the table. I suggest you do this rather than fight against a table that seems to resist your attempts to clear it. You can create a new table with a temp name (e.g., DEBUG_LOG_NEW), copy over the dictionary records to save time, delete the original table, and then rename the temp table to DEBUG_LOG.
Does the above help you resolve it?