I want to add more than 10000 parameters to a single sql command. How it possible? As far i know 2100 parameters a single sql command.
You can't. SQL Server supports a maximum of 2100 parameters.
Your only option is to generate a SQL string containing all those parameter values.
Incidentally, SQL CE does not have this limitation.