Getting ORA-15512 when processing a workload
Hi, I'm new to Database Replay. I'm trying to build a simple test case.
Source: 10.2.0.5 on Linux x64
connect dba@ora10g
create user test1...
create directory dbreplay as ...
begin
dbms_workload_capture.add_filter(
fname => 'include TEST1',
fattribute => 'USER',
fvalue => 'TEST1');
dbms_workload_capture.start_capture (
name => 'capture 1',
dir => 'DBREPLAY',
duration => null,
default_action => 'EXCLUDE');
end;
/
connect test1@ora10g
update t set a = 1;
commit;
connect dba@ora10g
exec dbms_workload_capture.finish_capture;
After that I transfered all files to the 11g server.
Destination: ORacle 11.2.0.3 on Linux x64
connect dba@ora11g
create directory dbreplay as ....
0