For reasons that are beyond my control I need to store huge arrays (10000+ entries) in database rows, and it has to be easy to access each index of the array individually, which means I'd rather avoid serialization/blobs, if at all possible.
So my first idea, and the actual question here, is can I increase max columns for Oracle in anyway?
Or is there an easy way to say store the array over a few rows and hide the implementation below the surface (I'm thinking stored procedure here).
Any other suggestions are also welcome!