Bug report #19774

Missing attributes in large table

Added by belg4mit - almost 6 years ago. Updated over 5 years ago.

Status:Closed
Priority:Normal
Assignee:-
Category:Attribute table
Affected QGIS version:3.2.2 Regression?:No
Operating System:Windows 10 Easy fix?:No
Pull Request or Patch supplied:No Resolution:up/downstream
Crashes QGIS or corrupts data:No Copied to github as #:27599

Description

I have a shapefile with a table that slightly exceeds two gigabytes. When I open the file in QGIS (2.18 and 3.2) many of the (later-loading) features have null attributes, however the file works fine in ArcMap.

The shapefile in question (97MB ZIP) is available here: [[https://nmrgroupinc-my.sharepoint.com/:u:/p/jpierce/EYs9N_pNQ_VMnkYv_QwOrRMBKQxtrfWrh-1IeCYo3y467w?e=U8WX1p]]

Null.png - Map showing features with null attributes, SW corner of NY (2.73 MB) belg4mit -, 2018-09-05 06:13 PM

Attributes.PNG - Info panel for complete feature, NW corner of null/red square in SW corner of NY (104 KB) belg4mit -, 2018-09-05 06:15 PM

Null attributes.PNG - Info panel for incomplete feature, NW corner of null/red square in SW corner of NY (107 KB) belg4mit -, 2018-09-05 06:15 PM

History

#1 Updated by Giovanni Manghi almost 6 years ago

  • Status changed from Open to Feedback

Can you make an example of how a record/feature looks like and how it should look like?
I loaded now in QGIS master/Linux and seems ok to me.

#2 Updated by belg4mit - almost 6 years ago

Here are the requested screenshots.

My hunch is that is has something to do with the 2GB file size of the DBF.

#3 Updated by Giovanni Manghi almost 6 years ago

belg4mit - wrote:

Here are the requested screenshots.

My hunch is that is has something to do with the 2GB file size of the DBF.

Now I see the images I realize that here (QGIS master and 2.18, Windows and Linux) the points that in your case are classified in red (because of the NULLs) are never loaded. The vector metadata shows 2+ million records, but opening the attributes table is shows only a limited amount. The header says that records were filtered (but no filter was applied). I'm wondering if here there are several different issues.

#4 Updated by Giovanni Manghi almost 6 years ago

When using ogr2ogr to convert the sahepfile (to GPKG for example) it returns

ERROR 1: fread(1754) failed on DBF file.

not sure it means the DBF file is corrupted (the limit is 4gb, not 2, afaik). But also is similar to https://trac.osgeo.org/gdal/ticket/4203

I believe this issue should be raised first in the gdal/ogr mailing list and see what they say.

#6 Updated by Even Rouault almost 6 years ago

  • Resolution set to up/downstream

#7 Updated by Jukka Rahkonen almost 6 years ago

Giovanni Manghi wrote:

When using ogr2ogr to convert the sahepfile (to GPKG for example) it returns

ERROR 1: fread(1754) failed on DBF file.

not sure it means the DBF file is corrupted (the limit is 4gb, not 2, afaik). But also is similar to https://trac.osgeo.org/gdal/ticket/4203

I believe this issue should be raised first in the gdal/ogr mailing list and see what they say.

The fread()error in https://trac.osgeo.org/gdal/ticket/4203 was a different case and for making it happen you'd need to use an ancient version of shapelib <1.2.7 together with GDAL that is more than 4 years old (prior https://trac.osgeo.org/gdal/changeset/27577). That error was a systematic one. The shx part was always written to have a different content length value than the shp part. For users that meant that the last record of the shapefile was dropped in reading.

There are no technical limits in the size of DBF file. I wrote a test case into https://github.com/OSGeo/gdal/issues/937 that creates a shapefile with 18 GB sized .dbf part and GDAL and QGIS can read it. It is still not a valid shapefile because ESRI has specified that no part in shapefile is allowed to exceed 2 GB.

I guess that what happened is:
- QGIS tried to write a shapefile with so much attribute data that DBF part exceeded 2 GB
- QGIS applies the GDAL setting "2GB_LIMIT=YES" and at 2 GB limit the writing of DBF was stopped but writing of .shp was continued
- As a result the final .shp has more geometries than .dbf has rows

If there is a bug I would say that it is in the writing of shapefile. Now it seems that writer is using the option 2GB_LIMIT=YES (see https://www.gdal.org/drv_shapefile.html) but when it meets the 2 GB limit with .dbf it does not error. But because the writer adds data sequentially into the data files of shapefile the total rollback would require deletion of the .shp, .shx, .dfb, and .prj files from the file system.

#8 Updated by Even Rouault almost 6 years ago

@Jukka QGIS doesn't mess with setting 2GB_LIMIT=YES. There is all evidence from the dataset that is was produced by ESRI software as it contains sbn, sbx, mxd, shp.xml files etc. So I suspect that the corruption comes from non-GDAL & non-QGIS side.

#9 Updated by belg4mit - over 5 years ago

  • Status changed from Feedback to Closed

Yes, it turns out the errors was ESRI's.

Also available in: Atom PDF