Is there a datatype described by an unbounded array (unlike VARRAY, where the original MAX size must be known) for SQL databases using Oracle? I'm trying to add a column to a DB table that has an array, but I don't know how big the array could become. Any help would be appreciated, thanks.
Basically, how do I finish this off?
ALTER TABLE my_table
ADD my_unbounded_array datatype
It's interesting too because I see that for postgresql, you could do:
ALTER TABLE my_table
ADD COLUMN my_unbounded_array text[]
for an unbounded array of strings, for example. But I haven't discovered anything similar for SQL.