clausfod
clausfod

Reputation: 335

SonarQube migrating from Oracle DB to Postgresql

We are running SonarQube 7.0 with Oracle DB. We would like to migrate to postgresql. We are using the community edition of SonarQube for the enterprise edition the migration is possible using the Sonar DB Copy Tool.

How is the process for the community edition ?

Upvotes: 0

Views: 455

Answers (1)

G. Ann - SonarSource Team
G. Ann - SonarSource Team

Reputation: 22824

There is no migration available for the Community Edition. What is available is re-creating your history by doing the following for each project:

  • checkout project from begin date
  • analyze using -Dsonar.projectDate=[checkout date]
  • increment date
  • GOTO 1

Note that this is painful and error-prone. Also, you loose your history of issues marked False Positive/Won't Fix unless you also follow up with something like the Issue Resolver Plugin to copy that.

Upvotes: 1

Related Questions