cancel
Showing results for 
Search instead for 
Did you mean: 

Logging to Oracle

Former Member
0 Kudos

Hello,

I wanted to log on to Oracle server. Basically we have SAP XI and the database is Oracle. how can I log on to ORacle?

Thanx

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

On the application server you can log in to Oracle through SQL Plus

to do so

type : sqplplus /nolog

connect /as sysdba

Regards

markus_doehr2
Active Contributor
0 Kudos

"sysdba" is for system administration.

To logon to the used schema you'd use

sqlplus /@<SID>

This uses the same mechanism the ABAP uses too to connect to the database.

Markus