Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テスト DB で行ったすべての変更を、スクリプトを使用して Prod DB にエクスポートできるようにしたいと考えています (ProdDB でデータを直接変更することはできません)。
選択からマージ スクリプトを生成するツールが必要です。テストで直接データを変更し、スクリプトを生成して、本番環境でデータをマージできます。
私はこれを行うことができますか?シンスを行う別の方法はありますか?
マージ スクリプトを生成する最良の方法は、開発プロセス中に自分で作成することです。
テーブルに列を追加しますか? の行を書き、alter table foo add (bar number);保存します。
alter table foo add (bar number);
1つ落としますか? alter table foo drop column bar;、 保存。
alter table foo drop column bar;
等
TOAD に頼らず、自分自身に頼ってください。Oracle の仕組みをすぐに習得できることに驚かれることでしょう。