save a flat export data file as an excel file

C

c676228

Hi all,

I have a question for you.

I have a .csv file which has many lines of data.
Each line has many data fields which are delimited by ",".
Now I need to extract part of data from this file but save it as an excel
file.

The data in this excel file will be imported into an Access database. The
reason I have to save it into an excel file is Access program only accept
excel data file, but not flat text file.

Can you tell me how to save extracted data into an excel file?

Thanks.
 
O

Old Pedant

Why go to the trouble of converting CSV to Excel and then Excel to Access????

Why not just use ASP to go directly from CSV to Access???

<%
Set csvconn = Server.CreateObject("ADODB.Connection")
csvconn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=c:\path\to\DIRECTORY\only\;" & _
"Extended Properties=""text;HDR=Yes;FMT=Delimited"""

Set dbconn = Server.CreateObject("ADODB.Connection")
dbconn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=c:\path\to\yourAccessDatabase.mdb;"

SQL = "SELECT * FROM nameOfFile.csv"
Set inRS = csvconn.Execute( SQL )

Set outRS = Server.CreateObject("ADODB.Recordset")
outRS.Open "TableName", dbconn, adOpenStatic, adLockPessimistic

Do Until inRS.EOF
outRS.AddNew
outRS("field1") = inRS("fieldA")
outRS("field2") = inRS("fieldB")
... etc ...
outRS.Update
inRS.MoveNext
Loop
outRS.Close
inRS.Close
dbConn.Close
csvConn.Close
%>

THere are actually some even more efficient ways to do this, but without
know more of your details I'm hesitant to choose one. The above is simple
minded enough it should work so long as your CSV file doesn't have any quirks.
 
S

Steven Cheng [MSFT]

Hi Betty,

From your description, you have an existing CSV file and you want to
extract some part of the CSV file out and export them into excel file,
correct?

Are you wantting to do it programmtically or just want to do such an
transformation and not necessary to use code? Based on my experience,

#SQL Server 2005 ¨C Integration Services
http://technet.microsoft.com/en-us/sqlserver/bb671392.aspx

#How to import an Excel file into SQL Server 2005 using Integration Services
http://www.builderau.com.au/program/sqlserver/soa/How-to-import-an-Excel-fil
e-into-SQL-Server-2005-using-Integration-Services/0,339028455,339285948,00.h
tm

http://www.mssqltips.com/tip.asp?tip=1202

If this need to be done programmtically, a common approach is read the csv
file via OLD db provider(jet engine) and access the data like a database
table. However, I think it maybe a bit hard to export it exactly as excel
format, btw, excel can directly convert csv format, will it work for your
case.

#How To Open Delimited Text Files Using the Jet Provider's Text IIsam
http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:
80/support/kb/articles/Q262/5/37.ASP&NoWebContent=1&NoWebContent=1

#Using OleDb to import text files (tab, csv, custom)
http://www.codeproject.com/KB/cs/UsingJetForImport.aspx

Also, are you going to do this converting in ASP web page? If not, for
normal desktop applicatin, we can use excel automation object model to
create excel worksheet:

http://support.microsoft.com/kb/302096

http://support.microsoft.com/kb/302094

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
(e-mail address removed).

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
 
M

Mike Brind [MVP]

Old Pedant said:
Why go to the trouble of converting CSV to Excel and then Excel to
Access????

Why not just use ASP to go directly from CSV to Access???

<%
Set csvconn = Server.CreateObject("ADODB.Connection")
csvconn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=c:\path\to\DIRECTORY\only\;" & _
"Extended Properties=""text;HDR=Yes;FMT=Delimited"""

Set dbconn = Server.CreateObject("ADODB.Connection")
dbconn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=c:\path\to\yourAccessDatabase.mdb;"

SQL = "SELECT * FROM nameOfFile.csv"
Set inRS = csvconn.Execute( SQL )

Set outRS = Server.CreateObject("ADODB.Recordset")
outRS.Open "TableName", dbconn, adOpenStatic, adLockPessimistic

Do Until inRS.EOF
outRS.AddNew
outRS("field1") = inRS("fieldA")
outRS("field2") = inRS("fieldB")
... etc ...
outRS.Update
inRS.MoveNext
Loop
outRS.Close
inRS.Close
dbConn.Close
csvConn.Close
%>

THere are actually some even more efficient ways to do this, but without
know more of your details I'm hesitant to choose one. The above is simple
minded enough it should work so long as your CSV file doesn't have any
quirks.

Yep. Much more efficient is to simpy set up a connection to the Access
database, and then use a SQL statement like this:

INSERT INTO AccessTable (Field1, Field2, ...Fieldn) SELECT Col1, Col2,
....Coln FROM [Text;DATABASE=" & path_to_file & ";].[myfile.csv]

More info here: http://www.mikesdotnetting.com/Article.aspx?ArticleID=67
(it's .NET - but the SQL etc is identical for classic ASP).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,013
Latest member
KatriceSwa

Latest Threads

Top