Tagged Questions

ISAM stands for Indexed Sequential Access Method, a method for indexing data for fast retrieval, originally developed by IBM.

learn more… | top users | synonyms

4
votes
4answers
3k views

Open an Excel 2003 spreadsheet with C#. Could not find installable ISAM. Exception

I need to pull data from an xls, I also need have the user be able to change the location of the file it will. So an OleDbConnection seemed like a good start, and it was until the first merged cell. ...
4
votes
7answers
898 views

Choosing ISAM rather than SQL

Many developers seem to be either intimidated or a bit overwhelmed when an application design requires both procedural code and a substantial database. In most cases, "database" means an RDBMS with an ...
1
vote
3answers
226 views

Problem with connection string and ISAM

I have the following problem. Have little application which read some data from excel file. Here is my connection string: @"Provider=Microsoft.ACE.OLEDB.12.0;"+ @"Data ...
1
vote
1answer
173 views

Importing ISAM table files (ISD, ISM) from one mysql to another

Problem: My db-host suddently switched my mysql db from one server to another. Unfortunately I has 1 table that was running ISAM, all other tables are MyISAM. After the switch from one server to ...
1
vote
2answers
1k views

Good ISAM library or other simple file manager for large files on Windows x64

We have some very large data files (5 gig to 1TB) where we need quick read/write access. Since we have a fixed record size it seems like some form of ISAM would be the way to go. But would be happy ...
0
votes
0answers
56 views

How to resolve “Could not find installable ISAM.” error for OLE DB provider “Microsoft.ACE.OLEDB.12.0”

I am trying to import data from Excel 2007 (.xlsx) files into SQL Server 2008 using a T-SQL OpenRowset() command with the "Microsoft.ACE.OLEDB.12.0" OLE DB provider, and I'm getting a persistent ...
0
votes
0answers
9 views

ISAM Pessimistic locking

I am working on moving our ISAM database to another ISAM database. The application uses pessimistic locking, in that the record is locked for writing when the user starts editing a field and is ...
0
votes
1answer
64 views

DB concurrency - Checksum vs Timestamp

we are in the process of moving to a new database system. The database is of ISAM type and the API does not provide a way to detect if a record has been changed by another user. Therefore I need to ...
0
votes
3answers
76 views

Error while opening a connection to MS Access 2007 file: Cannot open the MS Office Access database engine workgroup information file

Cannot open the MS Office Access database engine workgroup information file - When I have code as posted. What I am trying to do in my code is to create MS Access 2007 file and then set the user name ...
0
votes
0answers
85 views

Odd ISAM Error for Microsoft Text Driver

I have a service that parses .csv files. It uses an OdbcDataAdapter with an OdbcConnection to access the files. The connection string looks like this: var connectionString = @"Driver={Microsoft Text ...
0
votes
2answers
152 views

VB6 - A foxpro 2.6 no isam error on XP

The boss handed me some rather ancient legacy code, all done in VB6. After installing Visual Studio 6 and a few other things, I'm finally able to open the project and actually compile/run it. My new ...
0
votes
2answers
287 views

Has anyone tried the new MySQL 5.5 InnoDB for performance?

I would like to know if anyone has personally benchmarked the new InnoDB with large data sets. I don't use the latest version but I have implemented ISAM tables with over 20 million records. It's ...
0
votes
1answer
688 views

ASP.NET: “Could not find installable ISAM” exception when trying to read dBASE IV file

I need to open and read a Dbase file in my ASP.NET application. When I try to open the connection, I am getting the exception "Could not find installable ISAM." I have tried the solutions in the top ...
0
votes
1answer
541 views

How do I fix the complaint “Stack Overflow” in rebuild.exe in COBOL85, for ISAM-files? [closed]

I am getting the message "Stack Overflow" while running REBUILD.EXE in cobol85 under Windows XP. This command was working nicely up to Windows 98. This command is used to recreate key file for ...
0
votes
2answers
342 views

Should I lock an ISAM table to insert a value into a unique key field?

I have an ISAm table in mySql that was created similar to this: create table mytable ( id int not null auto_increment primary key, name varchar(64) not null ); create unique index nameIndex on ...