ORA-32033: unsupported column aliasing

Answers were Sorted based on User's Feedback



ORA-32033: unsupported column aliasing..

Answer / bunditj

The database version is major problem. Using a column alias on subquery factoring, it is not allowed on 10g, but practical to 11g onwards.

Is This Answer Correct ?    3 Yes 0 No

ORA-32033: unsupported column aliasing..

Answer / dhanabalan

ORA-32033: unsupported column aliasing
32033. 00000 - "unsupported column aliasing"
*Cause: column aliasing in WITH clause is not supported yet
*Action: specify aliasing in defintion subquery and retry


WITH Numbers(n) AS
(
SELECT 1 AS N
FROM dual
UNION ALL
SELECT N + 1 AS N
FROM Numbers
WHERE N < 9
)
SELECT *
FROM Numbers;

Is This Answer Correct ?    1 Yes 1 No

ORA-32033: unsupported column aliasing..

Answer / guest

Cause: column aliasing in WITH clause is not supported yet

Action: specify aliasing in defintion subquery and retry

Please add more information about this Error

Is This Answer Correct ?    4 Yes 6 No

Post New Answer

More Oracle Errors Interview Questions

DRG-11003: invalid value string for string

1 Answers  


QSM-00797: the specified workload string does not exist for the current user

1 Answers  


ORA-12505: TNS:listener does not currently know of SID given in connect descriptor

1 Answers  


ORA-19714: length for generated name longer than string

1 Answers  


ORA-13626: The specified object string is not valid for task string.

1 Answers  






SQL*Loader-00274: At least 2 read buffers have to be specified.

1 Answers  


SQL-02134: Invalid runtime context

1 Answers  


ORA-01028: internal two task error

1 Answers  


ORA-09954: scgcc: unexpected return status to callback of lock close

1 Answers  


RMAN-06489: no configuration found to allocate clone channel number for device type string

1 Answers  


ORA-00369: Current log of thread string not useable and other log being cleared

1 Answers  


PROT-00003: Failed to create export file

1 Answers  


Categories