1

I want to connect as sysdba using roundhouse, already tried

conn.ConnectionString = "Driver={Microsoft ODBC for Oracle};SERVER=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=myhost)(PORT=1521))(CON
NECT_DATA=(SERVICE_NAME=orcl)));uid=scott;pwd=tiger**;as sysdba**"

gut got this exception

RoundhousE encountered an error.
System.ArgumentException: Format of the initialization string does not conform t
o specification starting at index 202.
   at System.Data.Common.DbConnectionOptions.GetKeyValuePair(String connectionSt

also tried

conn.ConnectionString = "Driver={Microsoft ODBC for Oracle};SERVER=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=myhost)(PORT=1521))(CON
NECT_DATA=(SERVICE_NAME=orcl)));uid=scott;pwd=tiger;**DBA Privilege=SYSDBA;"**

but then the exception was

RoundhousE encountered an error.
System.ArgumentException: Keyword not supported: 'dba privilege'.

Any suggestions?

Thanks in advance

user009
  • 11
  • 1

1 Answers1

1

You can use the ConnectionStringAdmin setting of the <Roundhouse> element to set the administration connection string. I tried using the System user but ran into different issues. I've asked the question on Stackoverflow here and on the project page here.

My issue was more related to creating a new database though, but the configuration settings that I have specified there might work for you.

Community
  • 1
  • 1
Chaitanya
  • 5,203
  • 8
  • 36
  • 61