April 7, 2010 at 6:56 pm
hi everyone,
I have heard the term "owner" many times in describing a database.
As a DBA, I consider myself to be the owner - not of the data (I think the business users own the data) but the DBA manages the database, ensures it's availability etc.
I would like to hear your opinions or what ownership means at your company. is the Line of Business manager the owner of the database?
Who owns the user databases and what does that mean to you?
Thanks, John
April 7, 2010 at 8:09 pm
The "users" own the data but you must assume ownership enough to protect the data even from them. Heh... Perhaps a small poem I heard a long time ago will summarize it the best. I call it "The Conductor's Poem"...
It's not my job to drive the train,
Nor even ring the bell,
But let the damned thing jump the track,
And watch who catches hell! --Author Unknown
The bottom line is... protect the data, protect the server, and protect the users.
--Jeff Moden
Change is inevitable... Change for the better is not.
April 7, 2010 at 10:53 pm
SELECT D.name, P.name
FROM sys.databases D
JOIN sys.server_principals P
ON P.sid = D.owner_sid
ORDER BY
D.name ASC;
:w00t:
Actually, I prefer to think of the database person as a custodian, rather than 'owner'.
Others may prefer the term 'babysitter'...
April 7, 2010 at 10:59 pm
I like to consider the dba to be the owner of the database and the environment related to the database (i.e. server). The data in the database is owned by the business, for which the dba is the gatekeeper (dba's neck is on the line afterall).
Jason...AKA CirqueDeSQLeil
_______________________________________________
I have given a name to my pain...MCM SQL Server, MVP
SQL RNNR
Posting Performance Based Questions - Gail Shaw[/url]
Learn Extended Events
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply