您如何在协作的、受版本控制的环境中处理 Oracle 包?

How do you work on Oracle packages in a collaborative, version-controlled environment?(您如何在协作的、受版本控制的环境中处理 Oracle 包?)
本文介绍了您如何在协作的、受版本控制的环境中处理 Oracle 包?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 Oracle 的多开发人员环境中工作,其中包含一个大型软件包.我们有一个 DEV => TST => PRD 推广模式.目前,所有的包编辑都是直接在 TOAD 中进行,然后编译到 DEV 包中.

I'm working in a multi-developer environment in Oracle with a large package. We have a DEV => TST => PRD promotion pattern. Currently, all package edits are made directly in TOAD and then compiled into the DEV package.

我们遇到了两个问题:

  1. 需要按不同的时间表推进并发更改.例如,开发人员 A 进行了一项明天需要升级的更改,而开发人员 B 正在同时进行一项在两周内不会升级的更改.到了推广时间,我们发现自己手动注释掉了尚未推广的内容,然后又取消注释......呸!!!

  1. Concurrent changes need to be promoted on different schedules. For instance, developer A makes a change that needs to be promoted tomorrow while developer B is concurrently working on a change that won't be promoted for another two weeks. When it comes promotion time, we find ourselves manually commenting out stuff that isn't being promoted yet and then uncommenting it afterwards...yuck!!!

如果两个开发人员在同一时间进行更改并且其中一个编译,它会清除另一个开发人员的更改.没有很好的合并;而是最新的编译获胜.

If two developers are making changes at the same exact time and one of them compiles, it wipes out the other developer's changes. There isn't a nice merge; instead the latest compile wins.

您会推荐什么策略来解决这个问题?我们正在使用 TFS 进行源代码控制,但尚未将其用于我们的 Oracle 包.

What strategies would you recommend to get around this? We are using TFS for our source-control but haven't yet utilized this with our Oracle packages.

PS我看过这个贴子,但它并没有完全回答我的问题.

P.S. I've seen this posting, but it doesn't fully answer my question.

推荐答案

我们使用 Oracle Developer Tools for Visual Studio.NET...直接插入 TFS

We use Oracle Developer Tools for Visual Studio.NET...plugs right into TFS

这篇关于您如何在协作的、受版本控制的环境中处理 Oracle 包?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

SQL to Generate Periodic Snapshots from Transactions Table(用于从事务表生成定期快照的SQL)
MyBatis support for multiple databases(MyBatis支持多个数据库)
Oracle 12c SQL: Missing column Headers in result(Oracle 12c SQL:结果中缺少列标题)
SQL query to find the number of customers who shopped for 3 consecutive days in month of January 2020(查询2020年1月连续购物3天的客户数量)
How to get top 10 data weekly (This week, Previous week, Last month, 2 months ago, 3 month ago)(如何每周获取前十大数据(本周、前一周、上个月、2个月前、3个月前))
Select the latest record for an Id per day - Oracle pl sql(选择每天ID的最新记录-Oracle pl SQL)