0

We had been paying a third party to manage our FB server. Unfortunately they had a failure and were unable to recover the server we were assigned. Apparently the DB is still valid, but when they installed a FB version it does not match. I would prefer NOT to re-start the installation with a mismatch of version.

Given just the database how do I determine what version of the FB server to install?

I assume there is some sql query we can run on the DB.

Thanks

flag

2 Answers

2

The version of FogBugz running is not currently stored in the database, however, this can be extrapolated from your database's schema version.

The database schema version is stored in the Version table of your database:

SELECT * FROM VERSION

That query should give you a 3 digit number. If you can tell us what that number is, we can find out what version of FogBugz you were running.

link|flag
thanks we'll give that a try – Tim Sep 15 2010 at 20:14
0

As far as I know, the FB installer will upgrade/downgrade the DB you point it at, so use the most recent version you can (but of course, back up the DB first)

link|flag
Yeah, given the badness of the scenario we want to use the matching installer to minimize any issues... – Tim Sep 15 2010 at 20:14
3 
FogBugz will upgrade but not downgrade. Once you move forward, there's no way back. – Ted Sep 15 2010 at 20:20

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.