create or replace aArr is TABLE of varchar2 index by binary_integer;
create or replace bArr is TABLE of varchar2 index by binary_integer;
create or replace prc(oname aArr, iname bArr) as
begin
--Now i have two arrays
-- i want to insert or update into table using these two arrays
-- How can i do that with out using the loops.
-- is there any bulk insert or update.
end
Теперь у меня есть два массива. Я хочу вставить или обновить таблицу, используя эти два массива. Как я могу сделать это без использования петель? Есть ли массовая вставка или обновление?