Access Privileges in .NET Framework for Oracle

This article deals with connection strings related to Windows Authentication and Privileged Connection in .NET Framework Data Provider for Oracle.
  • 1927
Privileged Connection

Privileges are special rights provided to DBA to have a upper hand on the database. privileges are implemented through SYSDBA and SYSOPER privileges.

SYSDBA:

Data Source=myOracleDB;User Id=SYS;Password=SYS;DBA Privilege=SYSDBA;

SYSOPER:

Data Source=myOracleDB;User Id=SYS;Password=SYS;DBA Privilege=SYSOPER;

Further Readings

You may also want to read these related articles.

Ask Your Question

Got a programming related question? You may want to post your question here

Programming Answers here

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.