I have a large set of data. Now i am passing that data in the form of concatenated string with delimiters. In the stored procedure i am parsing the string and storing responses to table. Is this is the best approach OR passing Table to stored procedure is best approach.
I heard that passing table to stored procedure will incur multiple database calls for each row. Is this is true?