Extending client to access Excel files (most data still in SQL Server)

Ask a Question related to Microsoft SQL / MS SQL Server, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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....
    5. 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...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139