English 中文(简体)
Bulk 插入 Sql 服务器
原标题:Bulk Insert Sql Server millions of record

我有一个 Windows Service 应用程序, 以以下格式接收一系列数据

IDX|20120512|075659|00000002|3|AALI                 |Astra Agro Lestari Tbk.                                     |0|ORDI_PREOPEN|12  |00000001550.00|00000001291.67|00001574745000|00001574745000|00500|XDS1BXO1|                                        |00001574745000|ݤ
IDX|20120512|075659|00000022|3|ALMI                 |Alumindo Light Metal Industry Tbk.                          |0|ORDI        |33  |00000001300.00|00000001300.00|00000308000000|00000308000000|00500|--U3---2|                                        |00000308000000|õÄ

此数据以百万行和序列 0000002....00198562 提供,我必须根据序列进行剖析并插入数据库表格。

我的问题是,将这些数据插入我数据库的最佳(最有效的)方式是什么? 我试图使用一个简单的方法打开 SqlConnectction 对象,然后生成一个 SQL 字符串插入脚本,然后使用 SqlCommand 对象执行脚本, 但是这个方法花费的时间太长了 。

我读到,我可以使用Sql BULK INSERT, 但是它必须从文本文件中读到, 这个假想是否可能使用 BULK INSERT? (我以前从未使用过它) 。

谢谢

更新: 我知道 SqlBulkCopy, 但是它需要我先拥有数据表, 这样对性能有用吗? 如果可能的话, 我想直接从我的数据源插入到 SQL 服务器, 而不必在存储数据表中使用 。

问题回答

如果您在 C # 中写到此, 您可能想要查看 < a href=" http:// msdn. microsoft. com/ en- us/library/ system. data. sqlclient. sqlcent. sqlbulkopy. aspx" rel= " noreferrer" > SqlBulkCopy 类。

使您高效率地用来自其它来源的数据装入 SQL 服务器表格。

首先,下载免费 < 坚固> LumenWorks.Frameworks.IO.Csv 图书馆。

第二,用这样的代码

StreamReader sr = new TextReader(yourStream);
var sbc = new SqlBulkCopy(connectionString);
sbc.WriteToServer(new LumenWorks.Framework.IO.Csv.CsvReader(sr));

是啊,这真的那么容易。

You can use SSIS "Sql Server Integration Service" for converting data from source data flow to destination data flow. The source can be a text file and destination can be a SQL Server table. Your conversion executes in bulk insert mode.





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签