开发者

dynamic insertion with xml or stored procedure

I have 20 record group that i need to batch insert them all in one connection so there is开发者_C百科 two solution (XML or stored procedure). this operation frequently executed so i need fast performance and least overhead

1) I think XML is performs slower but we can freely specify how many record we need to insert as a batch by producing the appropriate XML, I don't know the values of each field in a record, there maybe characters that malformed our XML like using " or filed tags in values so how should i prevent this behavior ?

2) using stored procedure is faster but i need to define all input parameters which is boring task and if i need to increase or decrease the number of records inserted in a batch then i need to change the SP

so which solution is better in my environment with respect to my constrains


XML is likely the better choice, however there are other options

If you're using SQL Server 2008 you can use Table Valued parameters instead.

Starting with .NET 2.0 you had the option to use the SQLBulkCopy

If you're using oracle you can pass a user defined type but I'm not sure what versions of ODP and Oracle that works with.

Note these are all .NET samples. I don't know that this will work for you. It would probably help if you include the database and version and client technology that you're using.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜