Results 1 to 5 of 5

Thread: oracle predefined roles vs ms sql roles

  1. #1
    Join Date
    May 2005
    Posts
    3

    oracle predefined roles vs ms sql roles

    Hi! Can anyone say which ms sql server predefined roles are similar to the following oracle predefined roles: dba, connect, resource. I already know that sysadmin in MS SQL Server is the same as DBA in Oracle but what about the rest?
    Thanks a lot.

  2. #2
    Join Date
    Feb 2003
    Posts
    1,048
    If you can expolain what the Oracle connect and resource roles to me, I can tell you what MS SQL roles are similar, if any.

  3. #3
    Join Date
    Sep 2002
    Posts
    5,938
    Or you can look at permissions each ms sql server role has then compare to those oracle roles.

  4. #4
    Join Date
    May 2005
    Posts
    3
    Originally posted by Rawhide
    If you can expolain what the Oracle connect and resource roles to me, I can tell you what MS SQL roles are similar, if any.
    here it is...
    CONNECT

    ALTER SESSION, CREATE CLUSTER, CREATE DATABASE LINK, CREATE SEQUENCE, CREATE SESSION, CREATE SYNONYM, CREATE TABLE, CREATE VIEW


    RESOURCE

    CREATE CLUSTER, CREATE INDEXTYPE, CREATE OPERATOR, CREATE PROCEDURE, CREATE SEQUENCE, CREATE TABLE, CREATE TRIGGER, CREATE TYPE

  5. #5
    Join Date
    Nov 2002
    Location
    New Jersey, USA
    Posts
    3,932
    There is no one to one equivalence.

    When you create a login, that login can connect to the server. To access any database, a database user has to be created for the login.

    To create table/view/trigger/type/procedures you have to be a member of ddl_admin role.

    There is no role which only allows create table and view only.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •