Ask a Question related to ASP Database, Design and Development.
-
Laphan #1
Tab-delimited or CSV - Performance difference???
Hi All
Due to using a combo of OLEDB/ADO/ASP and JavaScript I was having trouble
reading in CSV data so I converted my client's web site to use tab-delimited
instead. Better for me, but client is adamant that their site's recent
timeout problems are since I converted to this tab format??
God forbid, but can the end user actually be technically right?
Is there an issue using tab files rather than csv??
I noticed that if you use csv you don't need a schema.ini, but you do if you
use tab files. Does Microsoft think everybody uses CSV and work better with
this format??
Regards
Laphan
Laphan Guest
-
performance difference in Webservice -'Normal' way
Hi, I'm new to WebServices, and I'm doing some tests (with a small VB.NET-application) to know the performance-difference between a WebService... -
tab delimited text
Hi, Im writing a very simple parser for a tab delimited text file. I need to find a way to get rid of the tab space (white space) around each item... -
split a tab delimited string
I have a tab delimited string and i want to split it to read all the values from the string I tried multiple way but doesn't work with ASP.Net ... -
generate CSV or comma delimited
What's the easiest way to generate CSV or a comma delimited file from an ASP recordset? I've seen a few searching the internet and they appear to be... -
Performance difference using "between" in the where clause
My question is: which one of these will run quicker? If not (I'm not expecting a definitive answer), what would determine what works best in what... -
Laphan #2
Tab-delimited or CSV - Performance difference???
Hi All
Due to using a combo of OLEDB/ADO/ASP and JavaScript I was having trouble
reading in CSV data so I converted my client's web site to use tab-delimited
instead. Better for me, but client is adamant that their site's recent
timeout problems are since I converted to this tab format??
God forbid, but can the end user actually be technically right?
Is there an issue using tab files rather than csv??
I noticed that if you use csv you don't need a schema.ini, but you do if you
use tab files. Does Microsoft think everybody uses CSV and work better with
this format??
Regards
Laphan
Laphan Guest
-
dlbjr #3
Re: Tab-delimited or CSV - Performance difference???
Laphan,
Text parsing and IO usage is a time hindrance.
If you must use a text file use XML.
Here is a nice solution:
On your machine - create the needed table in Microsoft Access. With a small
VBScript, connect to the database and open a recordset with all the fields
in the table
Save the recordset to an XML file.
Now you have a XML file that can be used as a database with a schema and
all.
You can connect to it just like a database and use SQL against it.
HTH
dlbjr
Unambit from meager knowledge of inane others,
engender uncharted sagacity.
dlbjr Guest
-
dlbjr #4
Re: Tab-delimited or CSV - Performance difference???
Laphan,
Text parsing and IO usage is a time hindrance.
If you must use a text file use XML.
Here is a nice solution:
On your machine - create the needed table in Microsoft Access. With a small
VBScript, connect to the database and open a recordset with all the fields
in the table
Save the recordset to an XML file.
Now you have a XML file that can be used as a database with a schema and
all.
You can connect to it just like a database and use SQL against it.
HTH
dlbjr
Unambit from meager knowledge of inane others,
engender uncharted sagacity.
dlbjr Guest
-
Manohar Kamath [MVP] #5
Re: Tab-delimited or CSV - Performance difference???
He could be right in a way -- but since I don't know what you do with the
data and the amount of data, I am not sure why it would be so slow as to
create timeout problems.
I think the other user's idea of using XML is great. Plus, I don't see any
difference in CSV and Tab delimited formats -- they use some form of
delimiter.
--
Manohar Kamath
Editor, .netBooks
[url]www.dotnetbooks.com[/url]
"Laphan" <news@FrozenMoles.co.uk> wrote in message
news:biqlui$j64$1@hercules.btinternet.com...tab-delimited> Hi All
>
> Due to using a combo of OLEDB/ADO/ASP and JavaScript I was having trouble
> reading in CSV data so I converted my client's web site to useyou> instead. Better for me, but client is adamant that their site's recent
> timeout problems are since I converted to this tab format??
>
> God forbid, but can the end user actually be technically right?
>
> Is there an issue using tab files rather than csv??
>
> I noticed that if you use csv you don't need a schema.ini, but you do ifwith> use tab files. Does Microsoft think everybody uses CSV and work better> this format??
>
> Regards
>
> Laphan
>
>
Manohar Kamath [MVP] Guest
-
Manohar Kamath [MVP] #6
Re: Tab-delimited or CSV - Performance difference???
He could be right in a way -- but since I don't know what you do with the
data and the amount of data, I am not sure why it would be so slow as to
create timeout problems.
I think the other user's idea of using XML is great. Plus, I don't see any
difference in CSV and Tab delimited formats -- they use some form of
delimiter.
--
Manohar Kamath
Editor, .netBooks
[url]www.dotnetbooks.com[/url]
"Laphan" <news@FrozenMoles.co.uk> wrote in message
news:biqlui$j64$1@hercules.btinternet.com...tab-delimited> Hi All
>
> Due to using a combo of OLEDB/ADO/ASP and JavaScript I was having trouble
> reading in CSV data so I converted my client's web site to useyou> instead. Better for me, but client is adamant that their site's recent
> timeout problems are since I converted to this tab format??
>
> God forbid, but can the end user actually be technically right?
>
> Is there an issue using tab files rather than csv??
>
> I noticed that if you use csv you don't need a schema.ini, but you do ifwith> use tab files. Does Microsoft think everybody uses CSV and work better> this format??
>
> Regards
>
> Laphan
>
>
Manohar Kamath [MVP] Guest



Reply With Quote

