Quantcast
Channel: Liquibase Forums
Viewing all articles
Browse latest Browse all 2993

How to Create Procedure on HANA database through Liquibase

$
0
0
Hi 
Currently I am trying to create procedure on HANA database, but does not quite working, it is able to insert record into databasechangelog and does not show any error during the execution, however, it does not create the procedure in specified schema.  I will appreciate any response in the matter.  Thank you!


XML File:
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
 <changeSet author="oracle (generated)" id="1491933527660-2002">
    <createProcedure catalogName="sys"
dbms="hana"
            encoding="utf8"
            procedureName="TESTHANA"
            relativeToChangelogFile="true"
            schemaName="LB_TEST">create procedure TESTHANA () language SQLSCRIPT
AS
BEGIN
select 1 from dummy;
END;
</createProcedure>
</changeSet>
</databaseChangeLog>

Viewing all articles
Browse latest Browse all 2993

Trending Articles