vote up 2 vote down star

Hi,

I am having fickle of problem in Oracle 9i

select 1"FirstColumn" from dual;

Oracle throwing error while executing above query. ORA-03001: unimplemented feature in my Production server.

The Same query is working fine in my Validation server. Both servers are with Oracle 9i

Any one have Idea what's wrong...? Is this something configurable item in Oracle server.

flag

8 Answers

vote up 3 vote down

Try:

 SELECT 1 AS "'FirstColumn'" FROM dual;

There is a similar question: http://stackoverflow.com/questions/56591/double-quotes-in-oracle-column-aliases

link|flag
vote up 1 vote down

What is the full Oracle version on both servers? 9i is a marketing label-- are you comparing a 9.0.1.x database to a 9.2.0.x database?

link|flag
vote up 1 vote down

Does it give the same output if you do?

select 1 as "FirstColumn" from dual;

To find out the specific versions on yoru Validation and Production servers, do this SQL on each and compare the results:

select * from v$version;
link|flag
vote up 0 vote down

Hi,

The below are the versions of my server:

Oracle9i Enterprise Edition Release 9.2.0.8.0 - Validation Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production

64 bit does make a difference. SELECT 1 AS "'FirstColumn'" FROM dual; is working but will leads me to update nearly hundreds of packages. Configuration change could be handy rather changing the code.

Regards, Hanumath

link|flag
vote up 0 vote down

For what it's worth, I have it working fine with me on 9.2.0.7:

select 1"FirstColumn" from dual

Feels like a bug to me; have you tried Metalink?

link|flag
vote up 0 vote down

No.. What is Metalink and where can i get it..Could you help me how to follow..?

link|flag
vote up 0 vote down

Hanumath: MetaLink is Oracle's support service. If you're Oracle is licensed, and with a support contract, you would have a MetaLink ID.

link|flag
vote up 0 vote down

Pretty sure you should have a space between the 1 and the "FirstColumn"

SELECT 1 "FirstColumn" from dual;

That said, it's more correct to use the AS keyword the previous answerers indicated.

link|flag
You don't need the space - works just fine without it. It is more readable with it though. – Nick Pierpoint Oct 7 '08 at 9:41
Good to know, thanks. – Dylan Oct 7 '08 at 16:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.