Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 250713
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T21:32:03+00:00 2026-05-11T21:32:03+00:00

I am trying to load an Excel 97 single tabbed spreadsheet into a SQL

  • 0

I am trying to load an Excel 97 single tabbed spreadsheet into a SQL server table using the OleDbDataAdapter function. From all the documentation I have found, the first parameter should be “select * from [sheet1$]”. This works fine for me only if the tab in the worksheet is named Sheet1. If I change what’s in the [] brackets to the actual tab name, it also works fine.

The issue is that the spreadsheet being loaded is coming from another system and that system changes the tab name with each load. How can a figure out what the tab name is so that my users don’t have to open the spreadsheet and rename the tab?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T21:32:03+00:00Added an answer on May 11, 2026 at 9:32 pm

    Ok, first, open an OleDB connection to your Excel spreadsheet.

    Then, use something like the following (shown in VB.NET):

    Imports System.Data
    Imports System.Data.Odbc
    Imports System.Data.OleDb
    
    Dim DSN As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=MYEXCELFILE.XLS;Extended Properties=""Excel 8.0;HDR=YES;IMEX=1;MAXSCANROWS=12"""
    Dim OleDbConn As New OleDbConnection(DSN)
    OleDbConn.Open()
    Dim tables As System.Data.DataTable = OleDbConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, Nothing)
    Dim tableName As String
    Dim canBeImported As Boolean
    For Each dr As System.Data.DataRow In tables.rows
        tableName = dr.Item("TABLE_NAME").ToString
        canBeImported = (tableName.IndexOfAny(New Char() {" ","[","]","'","""","`",";"}) < 0)
    Next
    OleDbConn.Close()
    

    This will loop through all of the tables in the Excel file (table = sheets or named ranges) and get the name of each. In addition, it will filter out any tables that have characters in them that can’t be accessed via ODBC (spaces are the most common issue).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 122k
  • Answers 122k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You can do it with a vector, because its data… May 12, 2026 at 12:43 am
  • Editorial Team
    Editorial Team added an answer Yahoo have an (undocumented) Stock Quotes API as part of… May 12, 2026 at 12:43 am
  • Editorial Team
    Editorial Team added an answer I found the problem. We are using the Infragistics WinForms… May 12, 2026 at 12:43 am

Related Questions

The spreadsheet still displays, but with the warning message. The problem seems to occur
Good morning, I have a .Net 2.0 runtime DLL that I am trying to
I am trying to export an excel file directory into an Oracle table as
I am trying to place an action to happen after an entire .aspx page

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.