sql server - Which performance is best (Table type or XML) to Pass as Parameter in to SQL function -
I have to give data in a SQL function that is on the other DB. The data is more than 10000 at a time. So what is the best practice / performance to pass data in the SQL function?
- BY XML
- From the tablet type.
Please advise me because it is necessary. I need the best performance, if possible, give me benchmarks or even examples.
Thanks in advance. Table-valued criteria are usually fast, mainly because there is no need to open them on the server side.
it occurs. Make sure you take the time to pack data-client-side.
Here is an article to compare the various methods of sending data to the SEL server:
Comments
Post a Comment