|
|
|
|
|
by Someone
922 days ago
|
|
closing down your database, limiting callers to use stored procedures also helps if your database has more than one stakeholder calling into it. If that’s the case, you don’t want to allow stakeholders to make arbitrary queries, as those could run fine from their perspective, but would be disastrous from that of the other stakeholders. Team A could be fine having the database be excruciatingly slow for an hour while they run their monthly reporting queries or while they run a huge import or whole they do a select that forces a table scan on a huge table, but teams B, C, etc might not. That’s why such a database has a separate team “DBA” whose job it is to know the full picture. |
|