Hi,
I am developing an asp.net application where user inputs set of document number in excel sheet and my application should search for the particular records in the database and return the records which contains the value that was made as an input.
For example if the document number which was given as input is "2245678"
In database the field which contains the value will be of the format LibraryName:2245678:Version1, because of how is stored in the database i had to put an like query as
Select from table where documentnumber like '%2245678%'
This set of sql statement has to be repeated for the all the document numbers that are passed as input in the excel sheet, This indeed will cause performance problems ..
Is there any other way of doing it?