Is it possible to use the 10g collect command as an analytical function by using OVER PARTITION or some other way?
e.g.
SELECT COLLECT(x) OVER (PARTITION BY y)
FROM table
Every time I try this there is a ora 3113 exception saying 'end-of-file on communication channel'
PS. I know I need to cast the result to make it useful, but for simplicities sake I'm leaving it out for now