Click here to Skip to main content
15,922,407 members
Home / Discussions / Database
   

Database

 
GeneralCrazy question Pin
Jamie Nordmeyer25-Jan-01 11:05
Jamie Nordmeyer25-Jan-01 11:05 
GeneralRe: Crazy question Pin
Anders Molin26-Jan-01 4:41
professionalAnders Molin26-Jan-01 4:41 
GeneralRe: Crazy question Pin
Jamie Nordmeyer30-Jan-01 5:11
Jamie Nordmeyer30-Jan-01 5:11 
GeneralRe: Crazy question Pin
Chris Meech30-Jan-01 6:48
Chris Meech30-Jan-01 6:48 
GeneralRe: Crazy question Pin
Jamie Nordmeyer30-Jan-01 7:37
Jamie Nordmeyer30-Jan-01 7:37 
GeneralRe: Crazy question Pin
Colin Angus Mackay11-Oct-04 2:35
Colin Angus Mackay11-Oct-04 2:35 
GeneralRe: Crazy question Pin
Anders Molin11-Oct-04 2:48
professionalAnders Molin11-Oct-04 2:48 
GeneralRe: Crazy question Pin
Chris Meech26-Jan-01 4:41
Chris Meech26-Jan-01 4:41 
Sorry I can't help with specific SQL Server stuff, but in an Oracle database I would do something like the following;

create or replace procedure FindBillingID
as
cursor BillingID /* define your Recordset here */

begin
for BillRec in BillingID cursor loop
uspBillClient(BillRec.BillingID);
end loop;
end FindBillingID;

The uspBillClient is then pretty much as you wrote except that it's IN parameter is of a different type and it get's repetitively called.

Hope this is kinda what you are looking for.

Chris
GeneralNew ADO.NET Article Pin
Griffo18-Jan-01 9:30
Griffo18-Jan-01 9:30 
QuestionWhy can't I set a connectionString? Pin
Dave Midgley17-Jan-01 23:16
Dave Midgley17-Jan-01 23:16 
AnswerRe: Why can't I set a connectionString? Pin
26-Jan-01 4:54
suss26-Jan-01 4:54 
GeneralLooking for young SQL programmer Pin
14-Jan-01 11:27
suss14-Jan-01 11:27 
QuestionWhat database type to choose? Pin
2-Jan-01 4:32
suss2-Jan-01 4:32 
AnswerRe: What database type to choose? Pin
Anders Molin2-Jan-01 23:37
professionalAnders Molin2-Jan-01 23:37 
GeneralSQL Server connections to backend server failing Pin
Chris Maunder5-Dec-00 8:47
cofounderChris Maunder5-Dec-00 8:47 
GeneralRe: SQL Server connections to backend server failing Pin
Anders Molin27-Dec-00 15:14
professionalAnders Molin27-Dec-00 15:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.