De vraag en oplossing is gelijkend op Error itgenrst007: The metadata of the columns 'partition_code' specifies that null values should not appear, but there is a null value in row #0.
Er zijn twee mogelijke oplossingen:
- Geef overal datacontaineralias op, bijvoorbeeld
eolof wat er ook gebruikt wordt in de databasedefinitie. - Maak datacontaineralias optioneel.
De eerste aanpassing is de aanbevolen oplossing omdat het ook problemen oplost als er meerdere datacontainers geladen worden.
De tweede oplossing vereist dat de create table van de andere vraag aangepast wordt naar:
create or replace table xxdru_desired_tables@inmemorystorage
( full_qualified_name varchar2(128) not null label 'Fully Qualified Table Name'
, partition_filter varchar2(30) not null label 'Partition Filter'
, partition_code varchar2(128) null label 'Partition Code'
, data_container_alias varchar2(128) /* not */ null label 'Data Container Alias (optional)'
)```