|
|
|
Re: Convertig more than one reports in 10g [message #425051 is a reply to message #424538] |
Wed, 07 October 2009 05:38 |
mamalik
Messages: 270 Registered: November 2008 Location: Pakistan
|
Senior Member |
|
|
Create A batch file of following code and place batch file in the folder which has source of rdf files and run that bach file.
@echo Creating the new Rep files
@echo =============================================
@echo off
FOR %%F in (*.Rdf) DO (
@echo on
@echo %%F ..
@echo off
start /w rwconverter user/password@sid BATCH=YES OVERWRITE=YES stype=rdffile source=%%F dtype=repfile )
@echo =============================================
:END
Regards.
Asif.
|
|
|