Hi Michael,

[Michael_Rist wrote]
> 
> Subject: repmcli ... -b statements.sql in SQLMODE ORACLE dosn't work
> anymore
> 
> today we made a update to 7.3.0.29....
> Unfortunately SQL scripts started with repmcli don't work in 
> SQLMODE ORACLE.
> 
> The statements.sql Looks like:
> 
> SQLMODE ORACLE
> 
> CREATE TABLE foo(
>       ....
> )
> 
> It looks like the SQLMODE statement is not finished. I get 
> the Error 'unexpected
> identifier CREATE'.
> 
> Do you have made changes on the SQLMODE statement?
> Are there other changes causing this problems?
> 
Yep, there are. We changed the command separator from
(empty line or line with slash at the beginning) to
line with double slash at the beginning. This was
necessary to allow c-style comments in sql commands
in RepMan scripts.
So if you change your statements to

SQLMODE ORACLE
//
CREATE TABLE foo(
      ....
)
//
..

I'm sure it works.

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