如何在Powerdesigner中使用VBScript?
在Powerdesign中想要创建一个VBscript来重命名/修改powerdesigner中的以下名称 - 概念或物理模型
替代/唯一键名称:
<块引用>UQ {table_name} {tablecolumnname} /////// 示例 = UQ_Account_AccountNumber
关系名称:
<块引用>FK_{table_name}_{reference_table_name}_{reference_column_name} //////示例 = FK_Account_AccountPhone_HomePhoneID
问题是,如何获取“table_column_name”和“reference_column_name”?
In Powerdesign would like to create a VBscript to rename/reform the following names in powerdesigner- Conceptural or Physical model
Alternative/Unique Key Name:
UQ {table_name} {tablecolumnname} ///////
Example = UQ_Account_AccountNumber
Relationship Name:
FK_{table_name}_{reference_table_name}_{reference_column_name}
//////Example = FK_Account_AccountPhone_HomePhoneID
Problem is, how do I get the "table_column_name" and "reference_column_name"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我用来重命名“友好”名称的东西,加上我所有引用的约束名称。 也许它会对你有所帮助。
Here's something I used to rename the 'friendly' names, plus the constraint names of all my references. Maybe it will help you out.