Hi Jim,

Jim Eatmon [mailto:[EMAIL PROTECTED] wrote:
> 
> Given the following script:
> 
> DROP TABLE TEST_REPMCLI 
> 
> CREATE TABLE TEST_REPMCLI (MY_INTEGER INTEGER)
> 
> and a command line execution of repmcli like this:
> 
> repmcli -E 100 -d TST -u DBA,DBA -b c:\myscript.sql
> 
> running the version of repmcli shipped with  windows version 7.3.0.24
> against this script results in the old table being dropped and the new
> table being created.  Running the version of repmcli shipped with 
> windows version 7.3.0.32 against this script results in the following:
> 
> Error during execution
> -->-25010
> SQL error -3014 = Invalid end of SQL statement (error position: 29)
> 
> A search of this newsgroup revealed that changes have been made to the
> parser for repmcli, and that some problems had been encountered.  I've
> tried any number of variations in this script and have been unable to
> get it to run under 7.3.0.32.
> 
> Any idea what I might be doing wrong?
> 
I'm pretty sure you missed the syntay change in command files for 
repmcli. The command separator has changed from (slash or empty line)
to double slash. So your command file should look like this

DROP TABLE TEST_REPMCLI 
//
CREATE TABLE TEST_REPMCLI (MY_INTEGER INTEGER)


Regards,
 Steffen
-- 
Steffen Schildberg
SAP DB Team
SAP Labs Berlin
_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general

Reply via email to