I am using Cold Fusion to call a stored procedure and pass a list of values to the "Where" clause (ie. Where ID IN (1,2,3...)). The procedure errors because when the comma delimited list is passed, the stored procedure thinks that the delimiting commas are seperating additional parameters that are being passed. I cannot use quotes around the parameter, because the list contains integers. I am calling the procedure in a SQL Server 2000 database. I can loop through the list in the code, and pass each ID individually, but this could certainly become a performance issue. Any help would be appreciated.