169 похожих чатов

What we have to consider when we are going to

migrate from Oracle to postgresql by using ora2pg?

2 ответов

25 просмотров

One of the most interesting things is the usage of PL/SQL etc. in the source database and the extent and complexity of that.

ora2pg will help convert the code. You have decisions to make: 1) Naming packages (PG does not support packages) 2) Rewriting code that calls things like DBMS_* 3) Global Temporary Tables, Views on Such Tables, etc (PG does not support) 4) Autonomous Transactions (PG can simulate with pg_background, but test thoroughly) 5) Transaction Handling (Commit/Rollback) needs to be thoroughly re-developed (Functions cannot COMMIT) 6) No IOT tables, so you will have Tables + Indexes (doubling some of our largest tables) 7) Connection Pooling Decisions 8) Completely reworking your Backup/Restore... Do you need Point In Time Recovery? (external tools) 9) Configuration Settings 10) CLOB -> Text with limitations on column size. 11) NUMBER() -> BIGINT / NUMERIC(), PK, FK, Sequences: Triggers vs. DEFAULT values 12) new tooling (psql) or IDE based? 13) Security/Ownership of Objects... 14) timestamp with timezone 15) Read this: https://wiki.postgresql.org/wiki/Don%27t_Do_This [MULTIPLE TIMES] plan to convert ONCE. Identify the problems. Throw it away, and start again. Seriously.

Похожие вопросы

Обсуждают сегодня

Господа, а что сейчас вообще с рынком труда на делфи происходит? Какова ситуация?
Rꙮman Yankꙮvsky
29
А вообще, что может смущать в самой Julia - бы сказал, что нет единого стандартного подхода по многим моментам, поэтому многое выглядит как "хаки" и произвол. Короче говоря, с...
Viktor G.
2
30500 за редактор? )
Владимир
47
а через ESC-код ?
Alexey Kulakov
29
Чёт не понял, я ж правильной функцией воспользовался чтобы вывести отладочную информацию? но что-то она не ловится
notme
18
У меня есть функция где происходит это: write_bit(buffer, 1); write_bit(buffer, 0); write_bit(buffer, 1); write_bit(buffer, 1); write_bit(buffer, 1); w...
~
14
Добрый день! Скажите пожалуйста, а какие программы вы бы рекомендовали написать для того, чтобы научиться управлять памятью? Можно написать динамический массив, можно связный ...
Филипп
7
Недавно Google Project Zero нашёл багу в SQLite с помощью LLM, о чём достаточно было шумно в определённых интернетах, которые сопровождались рассказами, что скоро всех "ибешни...
Alex Sherbakov
5
Ребят в СИ можно реализовать ООП?
Николай
33
https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_h_common.erl#L174 https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_olp.erl#L76 15 лет назад...
Maksim Lapshin
20
Карта сайта