I need help to insert some metadata records in the metadatavalue table, I have done the insert in the database but when I go to the application and see the result in the interface the record that I insert I don't see it as if there was something that prevented seeing or maybe I'm not doing it the right way
the example I am doing is the following:
insert into bibdigital.metadatavalue (metadata_value_id, metadata_field_id, text_lang, dspace_object_id, confidence, place, text_value)
values(metadatavalue_seq.NextVal, 53, 'spa', '6ED8550AC1524A808DC9A798C2B8D987', -1, 0, 'EL AUTOR, expresa que la obra objeto de la presente autorización es original y la elaboró sin quebrantar ni suplantar los derechos de autor de terceros, y de tal forma, la obra es de su exclusiva autoría y tiene la titularidad sobre éste. PARÁGRAFO: en caso de queja o acción por parte de un tercero referente a los derechos de autor sobre el artículo, folleto o libro en cuestión, EL AUTOR, asumirá la responsabilidad total, y saldrá en defensa de los derechos aquí autorizados; para todos los efectos');
commit;
I appreciate the help you can give me to find the error or what I am doing wrong.