Convert a Text File into Access MDB

Convert a Text File into Access MDB

It can be troublesome to convert a text file into an Access database. It takes a lot of time to open the file for sequential access and create new records using the AddNew method. Instead, use the Text ISAM driver and SQL to do the job for you. First, create a SCHEMA.INI file for the text file and place it in the same directory as the text file. Use this code to convert the database:

 Dim db As Database, tbl as TableDefSet db = DBEngine.CreateDatabase(App.Path & _	"mymdb.mdb", dbLangGeneral, dbVersion_0)Set tbl = db.CreateTableDef("Temp")tbl.Connect = "Text;database=c:vbpjdata"tbl.SourceTableName = "Customer#txt"db.TableDefs.Append tbldb.Execute "Select Temp.* into NewTable from Temp"db.TableDefs.Delete tbl.Namedb.CloseSet tbl = NothingSet db = Nothing

Now, you only need to create indexes. You can use this method to convert text files in excess of 100,000 records in a few seconds.

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of