Ask a Question related to Microsoft SQL / MS SQL Server, Design and Development.
-
Christopher Stolte #1
Extending client to access Excel files (most data still in SQL Server)
We are building a general query tool for accessing data in our
company. The primary data source we access is SQL Server running on a
remote host, using OLE DB and C++. However, our users also want to be
able to use our tool to analyze data in Excel or delimited text files.
We are considering two options:
* using the Jet 4.0 driver to directly access the files and to
execute SQL against their content.
* embedding MSDE 2000 in our application and loading (temporarily)
the data into the instance and purging it when the application exits.
Any thoughts on either approach?
thanks
Chris Stolte
Christopher Stolte Guest
-
Import excel data into SQL server -- ASP.net, C#, DTS -- how??
I want to set up the import of data from an excel file into SQL Server from my ASP.net (C#) application. The user will select the file that needs... -
Move data from Excel to SQL Server via ASP
I'm trying to import data from an Excel spreadsheet, and write it into a SQL Server database. I know how to read the data from Excel and how to... -
Extract Data from Excel-files
Hello everyone, Finally I get to use perl at work! =) I am to facing the following problem: There is a folder on a file-server in our network... -
Best way to get ASP page to query Excel data (using SQL server)?
Hi, I plan to query and process some data that resides in an Excel file on a network drive via ASP, with a SQL Server database as a go-between.... -
XP Client can't access Win2K-files
Hi ! We have a problem when trying to access files from an XP client on a Win2000 server (Server2). Server2 is not the Domain controller but is... -
David Portas #2
Re: Extending client to access Excel files (most data still in SQL Server)
Can't you create ETL processes to move the Excel and text file data into
your database? It's very difficult to get meaningful results from querying
unstructured text and spreadsheet data because of the lack of validation and
metadata. Also, if this data is useful to a user in a report then it's
important enough to go in a shared, managed database. You don't want your
organisation's valuable data hidden away in spreadsheets and text files if
you can avoid it.
--
David Portas
------------
Please reply only to the newsgroup
--
"Christopher Stolte" <cstolte@stanford.edu> wrote in message
news:ee6ef4bf.0307121418.786916cf@posting.google.c om...> We are building a general query tool for accessing data in our
> company. The primary data source we access is SQL Server running on a
> remote host, using OLE DB and C++. However, our users also want to be
> able to use our tool to analyze data in Excel or delimited text files.
> We are considering two options:
>
> * using the Jet 4.0 driver to directly access the files and to
> execute SQL against their content.
> * embedding MSDE 2000 in our application and loading (temporarily)
> the data into the instance and purging it when the application exits.
>
> Any thoughts on either approach?
>
> thanks
>
> Chris Stolte
David Portas Guest



Reply With Quote

