SET QUOTED_IDENTIFIER OFF 
GO
SET ANSI_NULLS OFF 
GO
create PROCEDURE dbo.sp_getId
                                        
AS                      
        BEGIN
        declare @intError int
        if object_id('tempdb..#myTempTable') is not null drop #myTemptable  

        /* Create Table */
create table #myTempTable
(
  customerId int, 
  blah1 int, 
  blah2 varchar(200
)
declare @cid int
declare cidCursor cursor local static
for 
select customerId from customerIdTable
open cidCursor
fetch cidCursor into @cid
while @@fetch_status=0
 begin
        insert into #myTempTable
        select customerId, blah1, blah2
        from myOtherTableorSql
        where customerId = @cid
  fetch next from aidCursor into @cid
end
close cidCursor
deallocate cidCursor

END

GO
SET QUOTED_IDENTIFIER OFF 
GO
SET ANSI_NULLS ON 
GO


��� Tony

-----Original Message-----
From: Eric Creese [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 05, 2003 7:29 AM
To: CF-Talk
Subject: Stored Proc Question Help Please

This is a very simple question.

I need to do this in SQL Server from a job not a CF page.

I have a table where I store customer IDs. I want to pull the individual IDs and loop 
each ID out of the table and run it against another query and write that output of the 
query to a tmpTable. How do I do this and if you could help it would be most 
appreciated.



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

                                Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
                                

Reply via email to