1

我想使用 Roundhouse 以 sysdba 身份连接,已经尝试过

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**"

肠道得到了这个例外

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

也试过

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;"**

但后来例外是

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

有什么建议么?

提前致谢

4

1 回答 1

1

您可以使用元素的ConnectionStringAdmin设置<Roundhouse>来设置管理连接字符串。我尝试使用该System用户,但遇到了不同的问题。我已经在此处的 Stackoverflow 和此处的项目页面上问过这个问题。

我的问题与创建新数据库更相关,但我在那里指定的配置设置可能对您有用。

于 2013-03-20T23:56:29.540 回答