Discussions
Categories
- 385.5K All Categories
- 5.1K Data
- 2.5K Big Data Appliance
- 2.5K Data Science
- 453.4K Databases
- 223.2K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 47 Multilingual Engine
- 606 MySQL Community Space
- 486 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3.2K ORDS, SODA & JSON in the Database
- 584 SQLcl
- 4K SQL Developer Data Modeler
- 188K SQL & PL/SQL
- 21.5K SQL Developer
- 46 Data Integration
- 46 GoldenGate
- 298.4K Development
- 4 Application Development
- 20 Developer Projects
- 166 Programming Languages
- 295K Development Tools
- 150 DevOps
- 3.1K QA/Testing
- 646.7K Java
- 37 Java Learning Subscription
- 37.1K Database Connectivity
- 201 Java Community Process
- 108 Java 25
- 22.2K Java APIs
- 138.3K Java Development Tools
- 165.4K Java EE (Java Enterprise Edition)
- 22 Java Essentials
- 176 Java 8 Questions
- 86K Java Programming
- 82 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 208 Java User Groups
- 25 JavaScript - Nashorn
- Programs
- 666 LiveLabs
- 41 Workshops
- 10.3K Software
- 6.7K Berkeley DB Family
- 3.6K JHeadstart
- 6K Other Languages
- 2.3K Chinese
- 207 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 474 Portuguese
SQLCL and Liquibase installing APEX applications

Hi Everybody,
I have a sneaky suspicion that I'm doing something wrong, because I had to change my install scripts when going to version 20.2
Anyhoo...
When I export my APEX application with this command:
lb genobject -type apex -applicationid 100
A file is generated (not in the current directory, but in a directory which is based on the complete path to the current directory)
When I want to install the application with this command:
lb update -changelog f100.xml
it doesn't install anything and shows "Empty file" in the databasechangelog table.
select dateexecuted ,description from databasechangelog order by dateexecuted desc/17-08-20 16:27:59,240368000 empty
In an earlier version of SQLCl, the databasechangelog table would show something like
runOracleScript objectName=apexObject, ownerName=
Any pointers would be appreciated,
Alex
On a side note: I always seems to have empty log-files.. if you have any pointers regarding the log files, it is also appreciated.
Best Answer
-
I had a bug here sorry. You were spot on it's missing the runOracleSCript after the no:
So in the XML the line after <changeSet should be:
<n0:runOracleScript objectName="SCRIPT" objectType="APEX"
not
<n0: objectName="SCRIPT" objectType="apexObject"
I'll look into the path issue next.
You can just edit the xml file and add int the runOracleScript and change the object type to APEX. I have fixed this for the next release.
Answers
-
I had a bug here sorry. You were spot on it's missing the runOracleSCript after the no:
So in the XML the line after <changeSet should be:
<n0:runOracleScript objectName="SCRIPT" objectType="APEX"
not
<n0: objectName="SCRIPT" objectType="apexObject"
I'll look into the path issue next.
You can just edit the xml file and add int the runOracleScript and change the object type to APEX. I have fixed this for the next release.