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.
我希望能够使用脚本将我在测试数据库中所做的所有更改导出到 Prod DB(我不能直接在 ProdDB 中修改数据)。
我想要一个从选择中生成合并脚本的工具。所以我可以直接在测试中更改我的数据,然后生成一个脚本,所以在产品上合并数据。
我蟾蜍能做到吗?有没有其他方法可以做瘦?
生成合并脚本的最好方法是在开发过程中自己编写。
你在表中添加一列?写一行alter table foo add (bar number);,保存。
alter table foo add (bar number);
你掉一个? alter table foo drop column bar;, 节省。
alter table foo drop column bar;
等等
不要依赖TOAD,要靠自己。您会惊讶地发现您了解 Oracle 中的工作原理的速度之快。