0

我需要将数据从 excel 文件导入我的 SQL Server 数据库。数据文件包含我需要导入的大约 120,000 条记录(行)。excel文件的每一行数据由大约183个格式化的数据列组成,数据在SQL端要分散到大约13个不同的表中。将所有这些记录导入 SQL 以确保正确处理每一行的最佳方式(最简单但高性能)是什么。

另一种选择是有一个选项将数据加载到数据库中的临时数据表中,然后运行脚本将所有数据列从临时表移动到其他各种表中。

4

1 回答 1

2

我使用这种方式从 CSV 文件中获取数据:->

      int f = 0;
 var reader = new StreamReader(File.OpenRead(@ExcelFilePath));
                Buisness_logic bl = new Buisness_logic();

                while (!reader.EndOfStream)
                {
                       if (f == 0)
                    {
                         var line = reader.ReadLine();
                        f++;
                    }
                    else
                    {
                        var line = reader.ReadLine();
                        string[] s = line.Split(',');
                        count = s.Length;
                        if (s.Length == 3)
                        {
                            var values = line.Split(',');
                            string query = "Insert into Events_party values('" + identity + "','" + values[0] + "','" + values[1] + "','" + values[2] + "','" + time + "','" + dt + "')";
                            bl.ExecuteQuery(query);
                            count = 101;
                        }
                        else
                        {
                            MessageBox.Show("Imported File was not in defined format !! ", ".File Format Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                            textBox1.BackColor = Color.Pink;
                            break;
                            count = 100;
                        }
                    }
                }
于 2012-09-06T06:34:55.963 回答