Hi
First you will need to locate the id / ids than has error data and is stoping the export.
You can locate it easily doing the search with the range:
3103...5900
and paging the result, going to the next page with the next arrow. If the paging stops, does not load the records, the next page will have the id that has the wrong data.
Note: you can paginate faster if you use the keyboard combination: ctrl+shift+right arrow
instead of clicking the pagination arrow.
To locate specific id with the wrong data, you will need to find the last id +1 in the page to load it:
If you see the record, data will be ok:
And you will need to repeat the search with the next id
But, if the record can not be showed, this id has wrong data:
When you locate the id, you will need to continue with the next block to locate another id with wrong data:
When you locate all id with wrong data, you will need to get the data of the record to locate what is wrong, usually a malformed locator.
To get the record data in different ways:
If you are a technical user or you have technical skills:
1 Enter into the PostgreSQL and locate the section_id
and section_tipo
in matrix
table.
If you do not have access to PostgreSQL or do not have technical knowledge of database management:
1 Enter with root
account in Dédalo
2 go to the list of with the wrong section_id
numbers (in your case Numismatic Object
)
3 edit the first record
4 in the inspector you will see the view data record
or DATA LINK
in v5
This action will load a page with the data of the record:
In this page you can change the section_id
in the URI to get the wrong record, for ex:
to show the data of the 5505
open the data of 1
in v6 it will be something as:
in v5 it will be something as:
and change the id to 5505
in v6:
in v5:
With the record data, review the locator that is wrong. When you locate the bad locator:
{
"type": "dd151",
"section_id": "bad data here",
"section_tipo": "bad data here",
"from_component_tipo": "numisdata161"
}
you can replace it, doing a import with the correct data or empty the locator in this way.
section_id | numisdata161 |
5505 | |
Note: Take account that the locator has the component tipo into the from_component_tipo
property of the bad locator, in this example numisdata161
I hope this help
Best