Blog Post

Use ACE Drivers and PowerShell to Talk to Text Files

,

As a follow up to my SQLRally 2011 Scripting Guy Guest Blog Post which dealt with Excel and Access files, this post explorers working with delimited text files using the ACE driver.

What about Import-CSV?

One of the first things I do when working with PowerShell is first look at the built-in cmdlets. PowerShell has a cmdlet for working with delimited text files  called import-csv. Using import-csv you can even specify a delimiter other than a comma using the –Delimiter parameter. Import-Csv is good enough for many scenarios which involve delimited text, but there a few areas like fixed width and write back which using an ACE and OLE DB handles and import-csv does not.

Setup

Just as described in the my previous post you need to go to Microsoft Access Database Engine 2010 Redistributable, and download AccessDatabaseEngine.exe or AccessDatabaseEngine_x64.exe, depending on your operating system.

For testing purposes we’ll create a simple CSV file:

get-psdrive | export-csv ./psdrive.csv -NoTypeInformation -Force

CSV files

Connecting to a text file and querying the data is pretty easy using the ACE drivers and as long as the file is comma separated no special setup is required (more on other delimiters in moment):

$filepath = "C:\Users\u00\bin\"
 
$connString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=`"$filepath`";Extended Properties=`"text;HDR=yes;FMT=Delimited`";"
 
$qry = 'select * from [psdrive.csv]'
 
$conn = new-object System.Data.OleDb.OleDbConnection($connString)
$conn.open()
$cmd = new-object System.Data.OleDb.OleDbCommand($qry,$conn) 
$da = new-object System.Data.OleDb.OleDbDataAdapter($cmd) 
$dt = new-object System.Data.dataTable 
$null = $da.fill($dt)
$conn.close()
$dt

Note: One of the odd things about using a text file as a data source is that unlike Excel and Access files in which you list the full path to the file, with text files you only specify the directory where the text file is located i.e. “C:\Users\u00\bin\”. The text file is listed in the query i.e. “select * from [psdrive.csv]”. In this way the concept of the “database” is really the directory and files are analogous to tables.

Other Delimited Files

What if your text is delimited by something other than a comma? Let’s create a semi-colon delimited text file to test:

get-psdrive | export-csv ./psdrive.csv -NoTypeInformation -Force  -Delimiter ";"

Because the delimiter is a semi-colon you’ll need to create a special file named schema.ini in order to describe the delimited file. Next you’ll need to place the schema.ini file  in the same directory as the text file. Add the following to the ini file:

[psdrive.csv]
Format=Delimited(;)
ColNameHeader=True

Now we can use the same code as demonstrated for a CSV file to query our semi-colon delimited file.

Notes:

  • You can specify multiple files in schema.ini with each file having a new section i.e. [filename]
  • There are many additional options which can be used to describe the delimited file including fixed-width. See this on Connecting to a Text File for details.
  • If you’re a SQL Server professional you may wonder if can create a linked server using the ACE drivers, well you can but there seems to be bugs several bugs that prevent you from connecting to anything other than Excel files when running x64: https://connect.microsoft.com/SQLServer/feedback/details/587897/connecting-via-a-linked-server-to-an-access-2010-database-file. Despite making sure I had various settings specified I could not get the ACE driver to work against a text file through a linked server on an x64 machine while PowerShell + ACE worked fine.

Rate

You rated this post out of 5. Change rating

Share

Share

Rate

You rated this post out of 5. Change rating