Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
After populating contentmap table,
I have created a batch script to load content using Enhance Content Migration with WBM
define output_file='copyScript.bat';
spool &output_file;
select
'copy'||srcfilepath||'\'||srcfilename||' '||targetfilepath||'\'||targetfilename||CHR(13) || CHR(10) from contentmap
where srcfilepath like '%EnDemo3%';
spool off;
- 'copyScript.bat' has created but how to run this bat file to see the content of my loaded object.
