Maven:带有sql-maven-plugin的PL / SQL脚本抛出错误PLS-00103

时间:2011-09-28 08:11:46

标签: sql jdbc plsql maven-2 sql-maven-plugin

我正在尝试使用sql-maven-plugin在Oracle 11数据库上执行PL / SQL脚本。虽然脚本是有效的PL / SQL(据我所知),执行给我一个PLS-00103错误:

SQL脚本:(drop_all_tables.sql)

BEGIN
   EXECUTE IMMEDIATE 'DROP TABLE MY_TABLE';
   EXCEPTION
   WHEN OTHERS THEN
      IF SQLCODE != -942 THEN
         RAISE;
      END IF;
END;

我的插件配置:

<plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>sql-maven-plugin</artifactId>
            <version>1.5</version>

            <dependencies>
                <dependency>
                    <groupId>oracle</groupId>
                    <artifactId>jdbc</artifactId>
                    <version>11.2.0.2.0</version>
                </dependency>
            </dependencies>
            <executions>
                <execution>
                    <id>create-schema</id>
                    <phase>process-test-resources</phase>
                    <goals>
                        <goal>execute</goal>
                    </goals>
                    <configuration>
                        <driver>oracle.jdbc.driver.OracleDriver</driver>
                        <url>${jdbc.url}</url>
                        <username>${jdbc.username}</username>
                        <password>${jdbc.password}</password>
                        <autocommit>true</autocommit>
                        <srcFiles>
                            <srcFile>src/main/resources/sql/drop_all_tables.sql</srcFile>
                        </srcFiles>
                    </configuration>
                </execution>
            </executions>
        </plugin>

这是Maven执行的输出:

[ERROR] Failed to execute:  BEGIN
EXECUTE IMMEDIATE 'DROP TABLE MY_TABLE';
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] ORA-06550: line 2, column 43:
PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following:

   ( begin case declare end exception exit for goto if loop mod
   null pragma raise return select update while with
   <an identifier> <a double-quoted delimited-identifier>
   <a bind variable> << continue close current delete fetch lock
   insert open rollback savepoint set sql execute commit forall
   merge pipe purge

1 个答案:

答案 0 :(得分:13)

我猜这个插件是用分号分割sql脚本并尝试独立执行每个部分。第一个陈述是

BEGIN
    EXECUTE IMMEDIATE 'DROP TABLE MY_TABLE';

就oracle而言,这是不完整的。该插件有两个配置参数来更改此行为,delimiterdelimiterType。通过更改下面的配置并将BEGIN块分隔一行/,您应该能够执行此脚本。

<configuration>
    <delimiter>/</delimiter>
    <delimiterType>row</delimiterType>
</configuration>