Quote:
Originally posted by slimdave
Is this going to be on the same hardware?
If so, OLTP and DSS are tough to mix in the same instance, but that's probably still your best option. You'll need to look at using Resource Manager to prevent the DSS section from eating all the resources. However RM works on the basis of CPU load management, not I/O, and you might find your OLTP subsystem suffering because of it.
If your OLTP performance is critical then I'd consider making a rare exception to my "spread all your data over all your disks" rule and isolate the two subsystems into their own disk/controller areas. You might even consider implementing the DSS sectionon tablespaces of a different block size to the OLTP section in order to isolate their block buffer areas.
All of these suggestions are made to preserve the performance of the OLTP section, and prevent the DSS section from "owning" the box. If the DSS usage is likely to be light, or OLTP performance can take a hit sometimes, then you could relax on some of this -- if you think you can relax, then start by forgetting about the i/o isolation. The memory and RM suggestions would stand, though.
Thanx for the reply,