Przyjęta odpowiedź dotycząca korzystania z TVP jest ogólnie poprawna, ale wymaga wyjaśnienia w oparciu o ilość przesyłanych danych. Używanie DataTable jest w porządku (nie wspominając o szybkim i łatwym) dla mniejszych zestawów danych, ale w przypadku większych zestawów tak nie skalować, biorąc pod uwagę, że duplikuje zestaw danych, umieszczając go w DataTable po prostu w celu przekazania go do SQL Server. Tak więc w przypadku większych zestawów danych istnieje możliwość strumieniowego przesyłania zawartości dowolnej kolekcji niestandardowej. Jedynym prawdziwym wymaganiem jest to, że musisz zdefiniować strukturę pod względem typów SqlDb i iterować przez kolekcję, co jest dość trywialnymi krokami.
Poniżej przedstawiono uproszczony przegląd minimalnej struktury, który jest adaptacją odpowiedzi, którą zamieściłem w temacie Jak wstawić 10 milionów rekordów w najkrótszym możliwym czasie?, która dotyczy importowania danych z pliku i dlatego jest nieco inna niż dane nie znajdują się obecnie w pamięci. Jak widać z poniższego kodu, ta konfiguracja nie jest zbyt skomplikowana, ale bardzo elastyczna, a także wydajna i skalowalna.
Obiekt SQL nr 1:Zdefiniuj strukturę
-- First: You need a User-Defined Table Type
CREATE TYPE dbo.IDsAndOrderNumbers AS TABLE
(
ID NVARCHAR(4000) NOT NULL,
SortOrderNumber INT NOT NULL
);
GO
Obiekt SQL nr 2:Użyj struktury
-- Second: Use the UDTT as an input param to an import proc.
-- Hence "Tabled-Valued Parameter" (TVP)
CREATE PROCEDURE dbo.ImportData (
@ImportTable dbo.IDsAndOrderNumbers READONLY
)
AS
SET NOCOUNT ON;
-- maybe clear out the table first?
TRUNCATE TABLE SchemaName.TableName;
INSERT INTO SchemaName.TableName (ID, SortOrderNumber)
SELECT tmp.ID,
tmp.SortOrderNumber
FROM @ImportTable tmp;
-- OR --
some other T-SQL
-- optional return data
SELECT @NumUpdates AS [RowsUpdated],
@NumInserts AS [RowsInserted];
GO
Kod C#, część 1:Zdefiniuj iterator/nadawcę
using System.Collections;
using System.Data;
using System.Data.SqlClient;
using System.IO;
using Microsoft.SqlServer.Server;
private static IEnumerable<SqlDataRecord> SendRows(Dictionary<string,int> RowData)
{
SqlMetaData[] _TvpSchema = new SqlMetaData[] {
new SqlMetaData("ID", SqlDbType.NVarChar, 4000),
new SqlMetaData("SortOrderNumber", SqlDbType.Int)
};
SqlDataRecord _DataRecord = new SqlDataRecord(_TvpSchema);
StreamReader _FileReader = null;
// read a row, send a row
foreach (KeyValuePair<string,int> _CurrentRow in RowData)
{
// You shouldn't need to call "_DataRecord = new SqlDataRecord" as
// SQL Server already received the row when "yield return" was called.
// Unlike BCP and BULK INSERT, you have the option here to create an
// object, do manipulation(s) / validation(s) on the object, then pass
// the object to the DB or discard via "continue" if invalid.
_DataRecord.SetString(0, _CurrentRow.ID);
_DataRecord.SetInt32(1, _CurrentRow.sortOrderNumber);
yield return _DataRecord;
}
}
Kod C#, część 2:Użyj iteratora/nadawcy
public static void LoadData(Dictionary<string,int> MyCollection)
{
SqlConnection _Connection = new SqlConnection("{connection string}");
SqlCommand _Command = new SqlCommand("ImportData", _Connection);
SqlDataReader _Reader = null; // only needed if getting data back from proc call
SqlParameter _TVParam = new SqlParameter();
_TVParam.ParameterName = "@ImportTable";
// _TVParam.TypeName = "IDsAndOrderNumbers"; //optional for CommandType.StoredProcedure
_TVParam.SqlDbType = SqlDbType.Structured;
_TVParam.Value = SendRows(MyCollection); // method return value is streamed data
_Command.Parameters.Add(_TVParam);
_Command.CommandType = CommandType.StoredProcedure;
try
{
_Connection.Open();
// Either send the data and move on with life:
_Command.ExecuteNonQuery();
// OR, to get data back from a SELECT or OUTPUT clause:
SqlDataReader _Reader = _Command.ExecuteReader();
{
Do something with _Reader: If using INSERT or MERGE in the Stored Proc, use an
OUTPUT clause to return INSERTED.[RowNum], INSERTED.[ID] (where [RowNum] is an
IDENTITY), then fill a new Dictionary<string, int>(ID, RowNumber) from
_Reader.GetString(0) and _Reader.GetInt32(1). Return that instead of void.
}
}
finally
{
_Reader.Dispose(); // optional; needed if getting data back from proc call
_Command.Dispose();
_Connection.Dispose();
}
}