About 1,420,000 results
Open links in new tab
  1. Insert, Update or Delete Data in SQL Server from Excel

    Jul 15, 2008 · Many of the situations end up translating to INSERT, UPDATE or DELETE code in one or more of our SQL Server databases. We always upload the data to a table and then …

  2. How to Update an SQL Table from Excel (Complete Guide)

    May 23, 2025 · Learn how to update an SQL table from Excel with this step-by-step guide. Discover the best method using SQL Spreads for accuracy and efficiency.

  3. Import data from Excel to SQL Server or Azure SQL Database

    Jul 16, 2025 · This article describes methods to import data from Excel to SQL Server or Azure SQL Database. Some use a single step, others require an intermediate text file.

  4. How to update Sql table from excel directly? [duplicate]

    I have an sql database and I am able to connect with excel spreadsheet. But when I update the table from excel directly it's not updating the database and once I click refresh all the entered …

  5. Update SQL Table from Excel - kudutek.com

    In this article, I’m going to summarize how you can create a complete solution to export data from a SQL table into Excel and then update the edited data back in the SQL Server table, or even …

  6. How To Import Excel Data Into SQL Server? (5 Easy Methods)

    Sep 16, 2025 · In this guide, we will explain different ways to perform the import, step by step, with practical examples and tips. Before moving data from Excel to SQL Server, ensure the …

  7. sql - Update existing database values from spreadsheet - Stack Overflow

    You can use the OPENROWSET command, like in the answer you linked to, to load the spreadsheet data into a sort of temporary table. You can then run a regular UPDATE …

  8. Insert and update in sql table with excel/csv data that has no …

    Jul 13, 2022 · Describes how to keep data loaded into Dataverse synchronized with the data source using dataflows. This article describes methods to import data from Excel to SQL …

  9. Excel_to_SQL_Update – Stormrage

    Jun 16, 2025 · Use VBA to establish a connection to SQL Server and run `UPDATE` or `INSERT` queries based on the modified data. 3. Use Excel events, such as `Worksheet_Change`, to …

  10. Dynamically Build SQL Insert, Update and Delete Statements with Excel

    Jun 18, 2020 · We usually will be provided with an Excel/CSV file and be required to apply CRUD (Create, Read, Update, and Delete) operations, and we need to do it quickly and efficiently.