I have a customer manager application I’ve built that I need to write a utility to move customer contacts from one customer to another. For example, if I have customer ABC and I want to move the contacts to customer XYZ.
The result would be:
I have a store procedure I would like to use that adds contacts to a customer. It increments the ContactID and performs some other record formatting tasks.
In a new stored procedure how can I move contact records from one specified customer to another by calling my stored procedure? My stored procedure has a parm list that accepts one record at a time.
Thanks for any help or ideas!
Code:
[b]Customer ABC[/b]
CRMID ContactID Name Phone
1111 1 Bill 555-1234
1111 2 Steve 555-3600
1111 3 Ted 555-1400
Code:
[b]Customer XYZ[/b]
CRMID ContactID Name Phone
2222 1 Jane 555-4321
2222 2 Mary 555-8600
2222 3 Sue 555-9400
2222 4 Ann 555-6789
The result would be:
Code:
[b]Customer XYZ[/b]
CRMID ContactID Name Phone
2222 1 Jane 555-4321
2222 2 Mary 555-8600
2222 3 Sue 555-9400
2222 4 Ann 555-6789
2222 5 Bill 555-1234
2222 6 Steve 555-3600
2222 7 Ted 555-1400
I have a store procedure I would like to use that adds contacts to a customer. It increments the ContactID and performs some other record formatting tasks.
In a new stored procedure how can I move contact records from one specified customer to another by calling my stored procedure? My stored procedure has a parm list that accepts one record at a time.
Thanks for any help or ideas!