Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ISAM Table Not Found 1

Status
Not open for further replies.

Vijay7475

Programmer
Feb 16, 2012
2
Hi,
We have been using Clarion SV Top Speed Drivers to load data into SQL server for a while now. Client is migrating to SQL, and have 147 tps files that need to be moved to SQL server each month. Three unique passwords for these files, so we code in vb.net to try catch each driver for each file. They have been working good, but occasionally it fails with ISAM ERROR Table not found. Any idea why?
Any help would be great
Please and Thank You
 
Hi!

What version of SV TPS ODBC Driver are you using?

If you are using DSN's for access, you need to define separate DSN's for each of the password protected files.

Also, the TPS ODBC driver is known to have issues and quite an elementary driver in terms of performance/features.

Regards
 
Thanks Shankar,
The version is 5.00. I am coding in VB.net in SSIS with Try Catch block for each of the three seperate DSN's. For Example,
TRY for PW1
CATCH Exception
GOTO PW2
END TRY
TRY PW2
CATCH EXCEPTION
GOTO PW3
END TRY
TRY PW3
CATCH EXCEPTION
REPORT NO DRIVER WORKED
END TRY.
This has been working fine most of the time. But occasionaly fails with the ISAM TABLE NOT FOUND Error. I can not repeat this error and it is not always on the same table. Some times I also get system out of memory error in the .net application. I have tried increasing the virtual memory still same issue.
Though one thing is consistent, it never happens on the local machines, this happens only on the server.

Thank again for your time,
Hope you can help me resolve this issue.
Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top