×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
I'm not sure this is what you are looking for, but Birgitta pointed me to the VALIDATE_DATA_FILE function or the use of the SQL Except when I asked how to compare two copies of a file when there could be differences in dozens of fields. The SQL did a great job of showing me all cases where the two files did not match. Unfortunately, I wasn't (and still aren't) on a release that supported the function referenced.
Look for her post from June 20th, 2023 entitled RE: Comparing Two Copies of a Physical File:
Have you had a look at the VALIDATE_DATA_FILE Table Function within the
SYSTOOLS Schema?
https://www.ibm.com/docs/en/i/7.5?topic=us-validate-data-validate-data-file-
validate-data-library-table-functions
Otherwise you may run the following query ... if it does not return any row
both tables are identical:
(Select * from Table1
Except
Select * from Table2)
Union
(Select * From Table2
Except
Select * From Table1);
_____________________________________________________________________
Spirax-Sarco Engineering Plc. This e-mail has been scanned for viruses by Cisco Cloud Email Security.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.