When executing the following Oracle code to establish connection:
declare
l_cnt pls_integer;
begin
insert into bubs_pre_laden_r
(action_requested, action_parameter1, action_parameter2, action_parameter3, action_parameter4, action_parameter9)
values
('LOGON FULL', 'acme', 'acme', 'acme', 'acme', 'acme');
select count(*)
into l_cnt
from bubs_berichten_v
where brt_afgehandeld_vlag='N'
;
end;
the following error can occur after upgrading from Oracle 19 to Oracle 19 multi-tenant:
ORA-20163: Your license is not valid for this database. You have licensed the database orcl_a but the software runs on rdscdb_a.
ORA-06512: at “BUBS.ITGEN_LOG”, line 1695
ORA-06512: at “BUBS.ITGEN_ERROR_HANDLER”, line 1347
ORA-06512: at “BUBS.ITGEN_SESSION”, line 3652
ORA-06512: at “BUBS.ITGEN_SESSION”, line 3752
ORA-06512: at “BUBS.ITGEN_SESSION”, line 1863
ORA-06512: at “BUBS.ITGEN_SESSION”, line 1566
ORA-06512: at “BUBS.BUBS_SESSION”, line 3124
ORA-06512: at “BUBS.BUBS_SESSION”, line 3032
ORA-06512: at line 1
ORA-06512: at “BUBS.BUBS_PRE_LADEN_R_ORI”, line 135
ORA-04088: error during execution of trigger > ‘BUBS.BUBS_PRE_LADEN_R_ORI’
ORA-06512: at line 4
This is caused by the database names being changed to follow the new structure with a master and container database.