search
HomeComputer TutorialsComputer KnowledgeWhat are the steps and methods for inserting data into SQL SERVER database?

如何向SQL SERVER数据库插入数据

How to insert data into SQL SERVER database

1. Open sql2008 and log in using windows identity

2. After logging in, right-click and select "Properties". Select "Security" on the left and check "SQL Server and Windows Authentication Mode" on the right to enable mixed login mode

3. Select "Connect", check "Allow remote connections to this server", and then click "OK"

4. Expand "Security", "Login Name"; "sa", right-click and select "Properties"

5. Select "General" on the left, select "SQL Server Authentication" on the right, and set the password

6. Right-click the database and select "Aspect"

7. Select "Server Configuration" in the drop-down box on the right; set the "RemoteAccessEnabled" property to "True" and click "OK"

8. SSMS has been set up now. Log out first, and then log in with sa. Success means that the sa account has been enabled

9. Open the sql server configuration manager

10. Next, start configuring SSCM, select "SQL Server Service" on the left, and ensure that "SQL Server" and "SQL Server Browser" on the right are running

How to import data from Excel table into SQLSERVER database

In the query analyzer, select Lee to operate the database object and write the SQL statement directly:

If you are importing data into an existing table, use

INSERT INTO table SELECT * FROM OPENROWSET('MICROSOFT.JET.OLEDB.4.0'

,'Excel 5.0;HDR=YES;DATABASE=c:test.xls',sheet1$)

form

If you are importing data and adding a new table, use

SELECT * INTO table FROM OPENROWSET('MICROSOFT.JET.OLEDB.4.0'

,'Excel 5.0;HDR=YES;DATABASE=c:test.xls',sheet1$)

form.

The above statement is to read in all the columns in the SHEET1 worksheet in the EXCEL file. If you only want to import some columns, you can

INSERT INTO table (a1,a2,a3) SELECT a1,a2,a3 FROM OPENROWSET('MICROSOFT.JET.OLEDB.4.0'

,'Excel 5.0;HDR=YES;DATABASE=c:test.xls',sheet1$)

In fact, you can use OPENROWSET('MICROSOFT.JET.OLEDB.4.0'

,'Excel 5.0;HDR=YES;DATABASE=c:test.xls',sheet1$) as a table, for example, I wrote such a sentence:

INSERT INTO eval_channel_employee(channel,employee_id)

SELECT CASE a.Channel WHEN 'DIY' THEN 1 WHEN 'RDC' THEN 0 WHEN 'KCM' THEN 2 ELSE 3 END

,b.id FROM

OPENROWSET('MICROSOFT.JET.OLEDB.4.0'

,'Excel 5.0;HDR=YES;DATABASE=c:tempname.xls',sheet1$) AS a,pers_employee b

WHERE a.Employee code =b.code

simple way:

The import function can be directly implemented in SQL2005. I don’t know if it is possible in SQL2008.

The operation process is as follows:

Step one: Log in to SQL Server Management Studio,

Step 2: Right-click "Manage" in "Object Explorer" and click "Import Data" in the pop-up list

Step 3: Click "Next" in the "Import Wizard" dialog box, enter the "Select Data Source" dialog box, select "Microsoft Excel" in the "Data Source" list, and select the corresponding Excel. document, click "Next" when completed (be sure to check "First row contains column names" in this dialog box, so it is to change the column titles in the Excel document to the column item titles in the database table)

Step 4: Specify the target database service, click "Next"... until "Complete"

Step 5: Re-enter SQL Server Management Studio, enter the imported database table, and you can find the imported Excel document data.

You can try the following:

Open SQL Server Configuration Manager and enable SQL Server Agent (instance name). Change startup mode to "Auto"

How to efficiently batch import data into SqlServer

2.SqlBulkCopy is a good choice, it can be imported directly into the database from DataTable

, but please note that (1) the column name is consistent with the target table (2) the data type is consistent (3) null value fault tolerance processing, reference code: ///

data is inserted into the database in batches. ///

///

To batch insert

///

The amount of data written in each batch.

(DataTable dataTable,(DataTable dataTable,

stringtableName,

intbatchSize =10000){using(SqlConnection connection =newSqlConnection(myConnectionString)){try{connection.Open(); //Add leading and leading characters to the table name using(varbulk =newSqlBulkCopy(connection, SqlBulkCopyOptions.KeepIdentity,

null){DestinationTableName=tableName,

BatchSize=batchSize}) {//Loop through all columns and add mapping to bulk//dataTable.EachColumn(c = bulk.ColumnMappings.Add(c.ColumnName, c.ColumnName), c = !c.AutoIncrement); foreach(DataColumn dcindataTable.Columns){bulk.ColumnMappings.Add(dc.ColumnName, dc.ColumnName);}bulk.WriteToServer(dataTable);

bulk.Close();}returntrue;}catch(Exception exp){returnfalse;}finally{connection.Close();}}}

3. If the amount of data is very large, exceeding 10W, you can consider generating a .dtsx file and then calling it directly from the C# code. The efficiency is still good.

The above is the detailed content of What are the steps and methods for inserting data into SQL SERVER database?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:Excel办公网. If there is any infringement, please contact admin@php.cn delete
Top Printers and Scanners and Copiers - MiniToolTop Printers and Scanners and Copiers - MiniToolMay 12, 2025 am 12:52 AM

If you want to buy a top printer & scanner, this post lists some best printers and scanners and copiers including some top HP printers and scanners. php.cn Software not only provides useful computer software but also provides various computer tut

How to Run Windows 11 Network Adapter Troubleshooter - MiniToolHow to Run Windows 11 Network Adapter Troubleshooter - MiniToolMay 12, 2025 am 12:51 AM

You can use the built-in Network Adapter troubleshooter in Windows 11 to find and fix problems with wireless and other network adapters. This post teaches you how to find and run Windows 11 network adapter troubleshooter with detailed instructions. S

[Solved] Battlefield 2042 Black Screen Issues (7 Solutions) - MiniTool[Solved] Battlefield 2042 Black Screen Issues (7 Solutions) - MiniToolMay 12, 2025 am 12:50 AM

Battlefield 2042 black screen then crash is an annoying problem when gaming. How to fix it? This guide on php.cn Website aims at tackling this issue. Look it through carefully and we sincerely hope that our solutions will work fine for you.

How to Fix the Dev Error 11557? Here Are 10 Methods! - MiniToolHow to Fix the Dev Error 11557? Here Are 10 Methods! - MiniToolMay 12, 2025 am 12:49 AM

Have you ever encountered Dev Error 11557 in Call of Duty: Modern Warfare 2 or Warzone 2? If you are, you come to the right place. In this post, php.cn provides some potential solutions to help you fix this error.

How to Cancel Apple Music Subscription on Android/iOS Devices? - MiniToolHow to Cancel Apple Music Subscription on Android/iOS Devices? - MiniToolMay 12, 2025 am 12:48 AM

If you want to cancel your Apple Music subscription, there are several ways to do so. This post from php.cn tells you how to cancel your subscription using your iPhone, iPad, Android device, Mac, or the Apple TV.

Compare All Microsoft 365 Plans and Choose a Preferred Plan - MiniToolCompare All Microsoft 365 Plans and Choose a Preferred Plan - MiniToolMay 12, 2025 am 12:47 AM

Microsoft 365 offers several subscription plans for you to choose from. This post introduces and compares all Microsoft 365 plans. You can choose a preferred Microsoft 365 plan based on your own needs. To recover deleted or lost files like Office fil

VLC Black Screen? A Guide to Fixing 'VLC Not Playing Videos” - MiniToolVLC Black Screen? A Guide to Fixing 'VLC Not Playing Videos” - MiniToolMay 12, 2025 am 12:46 AM

The VLC media player is a free and open-source, portable, cross-platform media player software and streaming media server, which is available for desktop operating systems and mobile platforms. But some people find the “VLC not playing videos” issue

Microsoft To Do Download for Windows 10/11, Mac, Android, iOS - MiniToolMicrosoft To Do Download for Windows 10/11, Mac, Android, iOS - MiniToolMay 12, 2025 am 12:45 AM

To manage your daily tasks, you can use the free task management app - Microsoft To Do. This post teaches you how to download Microsoft To Do on Windows 10/11, Mac, iPhone/iPad, or Android. If you are looking for more computer tips and solutions, you

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool