vote up 2 vote down star
1

I have a Delphi application that connects to an oracle database.

When I try to log in as SYSDBA, I get the error:

ORA-28009: connection as SYS should be as SYSDBA or SYSOPER

When I try to log in with a user of "SYS AS SYSDBA", I get the error:

ORA-01017: invalid username/password; logon denied

How can I log in as sysdba using a dbExpress connection?

See also this related post regarding ADO

flag

2 Answers

vote up 3 vote down check

I found nothing specific for special dbexpress driver. But try to add a connection parameter DBA privilege with the value SYSDBA.

Connection.Params.Append('DBA Privilege=SYSDBA');

I have no delphi installed to check the concrete syntax of the parameter name. Please try using an underscore instead of the blank.

This page shows several connection strings used in certain tools to connect to oracle database.

link|flag
Unfortunately that does not work- same error messages as before. Thanks though – JosephStyons Aug 21 at 13:40
vote up 1 vote down

Specify the user as "Joseph as SYSDBA" instead of Joseph

I found a checklist but not sure whether it is useful or not. Just have a look.

Checklist

link|flag
tried that, with this result: "ORA-01017: invalid username/password; logon denied" --- using "sys as sysdba" – JosephStyons May 5 at 17:37

Your Answer

Get an OpenID
or

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