I can easy export table data by using DBMS_XMLGEN. But is there a package to reimport this XML?
create table foo(
id number
,text varchar2(30)
)
/
insert into foo values (1,'hello');
insert into foo values (2,'world');
declare
l_foo_xml Clob;
begin
l_foo_xml := DBMS_XMLGEN.GETXML('select * from foo');
delete from foo;
--- ???? insert the xml into foo ???
end;
/
Thanks Christian
