Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X

Translate the entire conversation x

How to run .bat file which is created while running batch script for Enhnace migration in WBM

RS_10128209
12-Amethyst

How to run .bat file which is created while running batch script for Enhnace migration in WBM

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.

 

1 REPLY 1
HelesicPetr
22-Sapphire II
(To:RS_10128209)

@RS_10128209 

What about this 

call copyScript.bat > history.txt

PetrH

Announcements
Top Tags