惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Fortinet All Blogs
WordPress大学
WordPress大学
The Cloudflare Blog
云风的 BLOG
云风的 BLOG
博客园 - Franky
D
Docker
小众软件
小众软件
阮一峰的网络日志
阮一峰的网络日志
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
U
Unit 42
M
MIT News - Artificial intelligence
B
Blog
GbyAI
GbyAI
C
Check Point Blog
P
Proofpoint News Feed
博客园 - 司徒正美
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
IT之家
IT之家
Google DeepMind News
Google DeepMind News
V
V2EX
Stack Overflow Blog
Stack Overflow Blog

博客园 - Edison Zhu

Zhuanzai: change Asp.net Themes dynamicly (Setting An ASP.NET Theme in the PreInit Event Handler) zhuanzai: AJAX: How to create a "Processing" modal window using UpdateProgress and ModalPopup ASP.net AJAX controls - Edison Zhu 转:Manage Web.config from XML File by using configSource attribute ASP.Net 2.0 [转载] 微软SQL Server事务隔离级别实例简介 [转载] Moving table to a different filegroup in SQL 2005 [转载] SQL SERVER – 2005 – Database Table Partitioning Tutorial – How to Horizontal Partition Database Table [转载] SQL SERVER – 2005 – Introduction to Partitioning 转载:.NET Programming Standards and Naming Conventions [引]:聚集索引与非聚集索引 Trouble Shooting: can not access Excel file using excel control C#中小数点后保留两位小数,四舍五入的函数及使用方法 关于锁 IE7下关闭窗口不弹出提示窗口方法 [转]ASP.NET如何在客户端调用服务端代码 [转]谈谈Cookie存取和IE页面缓存的问题 Operate File [转] 客户端的JavaScript脚本中获取服务器端控件的值 及ID Temporary Tables [转]调用.NET XML Web Services返回数据集合
BULK INSERT
Edison Zhu · 2007-11-23 · via 博客园 - Edison Zhu

Loads a data file into a database table or view in a user-specified format.

Syntax

BULK INSERT
               [ database_name . [ schema_name ] . | schema_name . ] [ table_name | view_name ]
                  FROM 'data_file'
                 [ WITH
                (
               [ [ , ] BATCHSIZE = batch_size ]
               [ [ , ] CHECK_CONSTRAINTS ]
               [ [ , ] CODEPAGE = { 'ACP' | 'OEM' | 'RAW' | 'code_page' } ]
               [ [ , ] DATAFILETYPE  =
                  { 'char' | 'native'| 'widechar' | 'widenative' } ]
               [ [ , ] FIELDTERMINATOR = 'field_terminator' ]
               [ [ , ] FIRSTROW  =first_row ]
               [ [ , ] FIRE_TRIGGERS ]
               [ [ , ] FORMATFILE = 'format_file_path' ]
               [ [ , ] KEEPIDENTITY ]
               [ [ , ] KEEPNULLS ]
               [ [ , ] KILOBYTES_PER_BATCH =kilobytes_per_batch ]
               [ [ , ] LASTROW = last_row ]
               [ [ , ] MAXERRORS = max_errors ]
               [ [ , ] ORDER ( { column [ ASC | DESC ] } [ ,...n ] ) ]
               [ [ , ] ROWS_PER_BATCH = rows_per_batch ]
               [ [ , ] ROWTERMINATOR = 'row_terminator' ]
               [ [ , ] TABLOCK ]
               [ [ , ] ERRORFILE = 'file_name' ]
                )]