Re: How to service data for multiple customers Thanks for the input. I was looking towards a solution more from a DBA's
perspective rather than a programmer's perspective.
For example. In order to service multiple groups of customers. Would it be
better to have one sqlserver instance to service the need of all groups of
customers or would it be more advantageous to install multiple instances of
sqlserver, one instance for each group of customers.
thanks
"--CELKO--" <jcelko212@earthlink.net> wrote in message
news:1121912144.832540.98870@g49g2000cwa.googlegro ups.com...
> CREATE TABLE CustomerGrps
> (grp_nbr INTEGER NOT NULL, -- a code for the CHAID analysis??
> customer_id ...,
> ..
> PRIMARY KEY (grp_nbr, customer_id),
> ..)'
> |