文件与 cobol 中重复记录的比较
如何在 Cobol 中比较两个文件,两个文件都有重复记录。 任何1都可以给出伪代码吗? 该代码必须在重复记录条件下工作
How to compare two files in Cobol, both files having duplicate records. can any1 give pseudo code. The code has to work in duplicate record condition
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您到底想要什么(例如您希望从比较中报告什么),但一个想法可能是按如下方式进行:
在一个文件的 EOF 上,您需要检查剩余文件中的尾随唯一记录,这可能或者可能不在 EOF。
I'm not sure exactly what you're after (e.g. what you are hoping to report out of the comparison) but one idea might be to proceed as follows:
On EOF on one file you'll need to check for trailing unique records in the remaining file which may or may not be at EOF.