Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Check for uniqueness - what's the problem in this code
Message
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Check for uniqueness - what's the problem in this code
Miscellaneous
Thread ID:
00651801
Message ID:
00651801
Views:
52
Hi everybody,

I have a file with primary index filename+rcode+town+extryear+extrweek.

Before appending records to this file from log file, I run the following code:
set talk on
set talk window noshow

select LogFile.FileName from (m.lcLogFile) LogFile ;
         inner join BatchCntrl btch on ;
      LogFile.FileName+LogFile.rcode+LogFile.Town+LogFile.ExtrYear+LogFile.ExtrWeek = ;
         btch.FileName + btch.rcode + btch.Town + btch.ExtrYear + btch.ExtrWeek ;
         group by 1 ;
         into cursor curCheck
set talk off         
lnTally = _tally         
if m.lnTally > 0 && It should not happen
* this is a bad case
endif
However, periodically we have error message, which is trapped by our Error Handler, that uniqueness of indexes in BatchCntrl table is violated.

I guess, I can change this code to do select from log where in (select from Batch..)

But just out of curiosity, why this code doesn't work as I think, it should?

Thanks in advance.
If it's not broken, fix it until it is.


My Blog
Next
Reply
Map
View

Click here to load this message in the networking platform