如何为 ClearQuest 创建包?
我正在修改 ClearQuest 数据库模式,我想知道是否有办法为将来的部署创建一个包。 如果没有,跟踪和部署架构修改的最佳实践是什么?
I am modifying ClearQuest database schema and I wonder is there a way to create a package for future deployment. If there isn't what are best practices for tracking and deployment of schema modifications?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的 CQ 安装路径中,查找此“cqload”工具。
基本上...
file
架构
通常的做法是您至少有 2 个 CQ 环境、一个开发/QA 环境和一个生产环境。 开发人员在开发/质量检查环境(签出/修改/签入)上工作,直到他们满意为止,质量检查在同一环境中验证了更改。 然后实施者将使用cqload命令将更改传输到生产环境。
我个人认为这个工作流程是延迟的,因为它需要如此多的手动过程,并且如果您在 CQ 内有额外的“包”升级或安装(例如 UCM 包等),它就无法正常工作。不幸的是,我认为这不会随时改变。
In your CQ installation path, look for this "cqload" tool.
basically...
file
schema
What is common practice is you at least have 2 CQ environments, a Dev/QA env, and a Production env. Developers work on the Dev/QA environments (checkout/modify/checkin) until they are happy, QA verified the changes in the same environment. Then the implementor will use cqload commands to transfer the changes to the production environment.
Personally I think this workflow is retarded, as it requires so many manual process and it doesnt work properly if you have additional "Packages" upgrade or installation within CQ, e.g. UCM package, etc. Unfortunately I dont think this is gonna change anytime.