Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

A search query returned this error. I have a feeling its because the in clause is ginormous on a subordinant object, when I'm trying to ORM the other object.

Apparently in clauses shouldn't be built 1 parameter at a time. Thanks ibatis.

share|improve this question
3  
You're going to have to post some context. Your question conveys little or no meaning (nor does your huge subject line). – John Saunders Jun 22 '09 at 17:45
2  
Title is too short – Dan Jun 22 '09 at 17:47
1  
@ Dan - hahahahahah – Jason Watts Jun 22 '09 at 17:57
1  
@KM: If you're doing things right, it's a limit you should never know. :) – JP Alioto Jun 22 '09 at 18:15
1  
Searching google for the error 'Too many parameters were provided in this RPC request. The maximum is 2100.' brings this back as the top result. I would say that validates the subject line pretty well. – PaulG Sep 15 '10 at 15:19
show 4 more comments

4 Answers

up vote 7 down vote accepted

Your best bet is to revise your application to pass less than 2100 parameters to the stored procedure. This is a DBMS limit that can't be raised.

share|improve this answer

I got this same error when using an apparently innocent LINQ to SQL query. I just wanted to retrieve all the records whose ids were amongst the ones stored in an array:

dataContext.MyTable.Where(item => ids.Contains(item.Id)).ToArray();

It turned out that the ids array had more than 2100 items, and it seems that the DataContext adds one parameter for each item in the array in the resulting SQL query.

At the end it was a bug in my code, since the ids array had not to have so many items. But anyway it is worth to keep in mind that some extra validation is needed when using such constructs in LINQ to SQL.

share|improve this answer
thank you for validating the question, I would love if you upvote it, since you ran into it and it will clearly be helpful to others for it to stay in the search history of the world. – DevelopingChris Aug 27 '09 at 12:43
Same problem bit me. Any suggestions for an elegant solution? – Peder Rice Apr 12 '10 at 18:38
Nevermind! found an answer here on StackOverflow: stackoverflow.com/questions/656167/… – Peder Rice Apr 12 '10 at 18:39

You can do a few things:

  1. Pump the params into a temp table and use said temp table to filter your query.
  2. Create a comma-delimited array, and pass the array into SQL Server as a varchar(x). Split it out via TSQL (here are a few methods) and use the resulting rowset to filter your search results.
  3. Have a look at your application logic. It's more than a little strange to be passing 2100 parameters to a stored procedure.
share|improve this answer
Its not that strange... an in(@p1, @p2, ..., @p2101) generated by an OR/M – JeremyWeir Mar 31 '11 at 22:56

If you are passing 2100 parameters to a single stored procedure, you are simply doing something wrong. Don't raise the limit or try to work around this abomination, figure out how to do things right.

share|improve this answer
-1 If I have over 2100 rows to delete (By PK Id) how is that an abomination? I have a highly transactional system that pushes rows in at the rate of 400 per minute. If things go down for more than just a few minutes my purge process is going to easily have over 2100 rows that need clean up (and I can't clean up based on anything but the Id of the row). – Vaccano Mar 29 '12 at 21:44
@Vaccano - first, I am not fan of Linq (or other, related, ORMs). In part, it is because the attempt to shield developers from SQL leads to "abominations" like the one that surfaced here. DevelopingChris didn't create a sproc with that many params, his ORM did. Second, there are many ways to address a problem like his without even thinking about working through a stored procedure with 2100+ parameters. Like I said, if your mind jumps to a 2100+ parameter, dynamically constructed stored procedure as a solution, then you really need to think again. Clearly, there are better solutions. – Mark Brittingham Apr 2 '12 at 15:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.