如何在Pro*C文件中找到oracle包名?

发布于 2024-10-17 19:13:47 字数 169 浏览 3 评论 0原文

将包名称视为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

音盲 2024-10-24 19:13:47

你可以尝试一下 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...

莫相离 2024-10-24 19:13:47

最后我得到了解决方案。这是在 Pro*c 文件中查找搜索字符串的 unix 命令

       find . -type f | xargs grep "ORA_DATAUPDATE"

finally i got the solution.here is the unix command to find the search sting in the Pro*c files

       find . -type f | xargs grep "ORA_DATAUPDATE"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文