• This gives the owner of the database

    select suser_sname(sid),name from master..sysdatabases

    just add the relevant where clause for a particular database

    Retrieving who originally created the database (if different) I dont think can be done. If the owner has never been changed the above query will return the id the person who created the database was logged on with.

    ---------------------------------------------------------------------