0
Я использую дерби как метафора улья в течение довольно долгого времени. Есть ли способ перенести метастор в Postgresql.Как мигрировать метафоры улья-дерби в metstore postgres
Я использую Apache Hive - 0,13
Я использую дерби как метафора улья в течение довольно долгого времени. Есть ли способ перенести метастор в Postgresql.Как мигрировать метафоры улья-дерби в metstore postgres
Я использую Apache Hive - 0,13
Лучший подход, который я нашел до сих пор, как показано ниже:
**Export from existing database**
Use the derby tool 'ij' (assuming you are placed in the root installation folder for the pillar):
java -cp lib/derby-10.10.1.1.jar:lib/derbytools-10.10.1.1.jar:lib/derbyclient-10.10.1.1.jar org.apache.derby.tools.ij
Then run the following commands to extract the content of the somedb database:
CONNECT 'jdbc:derby:/path/to/somedb'
CALL SYSCS_UTIL.SYSCS_EXPORT_TABLE(null, 'TABLE1', 'table1', null, null, null);
This should create the file: 'table1'.
**Import the data to the PostgreSQL database**
Run the 'psql' application on the console/terminal.
Log onto somedb and ingest data (and fix the automated sequences)
\c somedb
COPY table1 FROM '/path/to/table1' with csv;
SELECT SETVAL('table1_guid_seq', (SELECT MAX(guid) FROM table1));
Повторите это для всех таблиц, которые вы хотите экспортировать из Дерби и импортировать в PostgreSQL.