How to find the DDL for Bamboo tables

Still need help?

The Atlassian Community is here for you.

Ask the community

Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.

Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Summary

When troubleshooting some errors, it may be helpful to find the Database Definition Language (DDL) or SQL commands that are run when building your Bamboo database.

Solution

Option 1 - DDL for startup

This will retrieve the SQL commands run during the SQL update steps in the startup process.

  1. Stop Bamboo
  2. Add the following line to <bamboo-install>/atlassian-bamboo/WEB-INF/classes/log4j.properties:

    log4j.logger.org.hibernate.SQL=TRACE
  3. Start Bamboo
  4. Once Bamboo has started up, run the following command on the command line:

    grep '\[SQL\]' <bamboo-home>/logs/atlassian-bamboo.log | grep 'alter table\|drop table\|create table' > sql.out
  5. sql.out will contain the queries.

Option 2 - DDL for new install

This will retrieve the SQL commands run on install (when creating a new Bamboo database)

  1. Start up a new instance with the following in <bamboo-install>/atlassian-bamboo/WEB-INF/classes/log4j.properties:

    log4j.logger.org.hibernate.SQL=TRACE
  2. Complete the setup wizard, connecting to the desired type of database
  3. Use grep or other string/regex manipulation on the generated logs:

    grep '\[SQL\]' <bamboo-home>/logs/atlassian-bamboo.log | grep 'alter table\|drop table\|create table' > sql.out



  4. sql.out will contain the queries


Last modified on Apr 12, 2021

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.