| 
                
Please start any new threads on our new 
    site at https://forums.sqlteam.com.  We've got lots of great SQL Server
    experts to answer whatever question you can come up with. 
    
        | 
                
                    | 
                            
                                | Author | Topic |  
                                    | joddersStarting Member
 
 
                                        41 Posts | 
                                            
                                            |  Posted - 2013-08-02 : 09:38:30 
 |  
                                            | Hi all,I basically would like to remove a set of unique clients numbers in one rather than having to highlight each one. I have tried combinations but SQL doesn't like it.They are stored procedures so I think this is slightly different then doing an insert or delete. SP_CMS_CLIENTGRP_DEL   3769,'PR'SP_CMS_CLIENTGRP_DEL   3828,'PR'Do you have any advice?ThanksJods |  |  
                                    | James KMaster Smack Fu Yak Hacker
 
 
                                    3873 Posts | 
                                        
                                          |  Posted - 2013-08-02 : 10:45:51 
 |  
                                          | quote:Didn't quite get what you want to do. Did you mean that you want to run the stored procedure just once to handle both the client numbers?  If you do, you will have to look into the stored procedure code to see if it can handle that at all. My suspicion is that the way it is written now, it cannot. It expects a single integer as the first parameter.  So in order to make it handle more than one integer, you will need to open up the code and make appropriate modifications.Originally posted by jodders
 Hi all,I basically would like to remove a set of unique clients numbers in one rather than having to highlight each one. I have tried combinations but SQL doesn't like it.They are stored procedures so I think this is slightly different then doing an insert or delete.
 SP_CMS_CLIENTGRP_DEL   3769,'PR'SP_CMS_CLIENTGRP_DEL   3828,'PR'Do you have any advice?ThanksJods 
 |  
                                          |  |  |  
                                    | visakh16Very Important crosS Applying yaK Herder
 
 
                                    52326 Posts | 
                                        
                                          |  Posted - 2013-08-03 : 03:32:21 
 |  
                                          | Your stored procedure needs to accept multiple values for that and then logic should be modified to do the deletion of all the records in a batchthere are various ways of doing this.seehttp://vyaskn.tripod.com/passing_arrays_to_stored_procedures.htmAs an example CREATE PROC SP_CMS_CLIENTGRP_DEL   @ValueList varchar(1000),...ASDELETE FROM tableWHERE ',' + @ValueList + ',' LIKE '%,' + CAST(ClientGroupColumn AS varchar(10)) + ',%'AND ... other conditions------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/https://www.facebook.com/VmBlogs |  
                                          |  |  |  
                                    | joddersStarting Member
 
 
                                    41 Posts | 
                                        
                                          |  Posted - 2013-08-05 : 06:46:23 
 |  
                                          | Thanks for your help, I will have a look at passing the information in. |  
                                          |  |  |  
                                    | visakh16Very Important crosS Applying yaK Herder
 
 
                                    52326 Posts | 
                                        
                                          |  Posted - 2013-08-05 : 07:36:08 
 |  
                                          | coollet us know if you need anything else------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/https://www.facebook.com/VmBlogs |  
                                          |  |  |  
                                |  |  |  |  |  |