Security – DBO role in SQL Server 2005 versus DBA role

Securitysql serversql-server-2005

What is the difference between DBO role versus the DBA role?

Best Answer

A dba is not a system role, it's the title of the person who administers your database server (Data Base Administrator). There is no builtin role called "dba" in SQL.

High-level: DBO is the owner of the specific database and as such has the permissions to do anything within that datbase.

Related Topic