Hi,
I am new to partitioning, and i got requirement to partition transaction table.
Data in this table is being added and updated on regular basis. However for date and time we have two columns INDATE VARCHAR2(8) and INTME VARCHAR2(10).
There is one more column INDATETIME TIMESTAMP(6), but this column is used for different purpose and not being populated for every records.
Now when i convert my non partition transaction table to partition using DBMS_REDEFINATION partition gets created but when i check all my data goes into 1 partition called as FUTURE and only 1 record goes into one partition called PAST.
I am looking for steps in which i can partition my transaction table two columns INDATE VARCHAR2(8) and INTME VARCHAR2(10) and data also gets populated to its related partition.
Thanks
Mohsin