如何在Pro*C文件中找到oracle包名?
将包名称视为 Oracle 数据库中的“ORA_DATAUPDATE”。 UNIX环境中存在大量的Pro*C文件(超过100个文件)。也许一两个 Proc*C 文件使用这个包“ORA_DATAUPDATE”。
谁能告诉我 unix 脚本来查找哪些 Pro*C 文件包含“ORA_DATAUPDATE”包名称?
Consider the package name as "ORA_DATAUPDATE" which is in oracle database. There are a lot of Pro*C files (more than 100 files) in the UNIX environment. Maybe one or two Proc*C files uses this package "ORA_DATAUPDATE".
Can anyone tell me the unix script to find which Pro*C files contains the "ORA_DATAUPDATE" package name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以尝试一下 grep 一下吗?
或者另一种方法是将包重命名为不同的名称,然后尝试编译 .pc。失败的是有问题的文件......
You can try grepping for it?
Or the other way is to for example rename the package to something different, and try to compile .pc's. The ones failing are the files in question...
最后我得到了解决方案。这是在 Pro*c 文件中查找搜索字符串的 unix 命令
finally i got the solution.here is the unix command to find the search sting in the Pro*c files