Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm creating two H2 database files, and creating a link between them. I then move them to an embedded system. However, after the move the link has broken. Is there a way to make links work after move (they should be in the same relative position on the embedded system)?

Unfortunately, after the move I've found it very difficult to get information about the database and the schema. Some commands return no output (like show schemas).

share|improve this question
Could you post the database URLs you use? Using relative path will not help, as they are relative to the current working directory of the process, not relative to where the database is stored. – Thomas Mueller Jul 8 '11 at 20:17
The statement that creates the linked table is 'create linked table LINK('', 'jdbc:h2:/airtimeDB', '', '', 'AIR_TIME')'. The driver is already loaded since both databases are H2, and there is no username or password. – Opieus Jul 8 '11 at 21:01
In that case, it will try to open the database named airtimeDB in the root directory (of the current drive, in Windows). Check for a file named airtimeDB.h2.db in the root directory. Is this really want you want? I would use at least one subdirectory, such as jdbc:h2:/data/airtimeDB. – Thomas Mueller Jul 9 '11 at 9:30
The problem occurs after I move the database files to another machine. The embedded device fetches the database files from a server, and should place them in it's root directory. However, the link no longer works after the files are moved. – Opieus Jul 11 '11 at 13:37
Well, did you check the database file was actually copied/moved? I guess it wasn't, but I'm afraid there is no way I could help. I can't reproduce the problem on my side. Could you create a reproducible and simple test case? – Thomas Mueller Jul 11 '11 at 13:54
show 5 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.