I have 2 tables named item and itemdetail. The itemdetail table contains more than 200,000 records. The itemdetail table has reference keys to other tables and I'd like to partition this table by date (once per every year).
What I'd like to know is how I could partition the itemdetail table as it contains reference keys to many other tables. I read somewhere that we can not partition or use inheritance if table contains any reference keys.
Does anyone have any suggestions on how to achieve this?
Thanks