Creation of objects like tables and indexes are fairly essential, even if the code has to be authorized or created by the dba. What other areas normally carried out by dbas should the accomplished developer be aware of?
|
3
|
|
|
|
The ins and outs of database storage and optimization are huge. Knowing how to index and partition tables well is invaluable knowledge. Also, how to read a query execution plan. SQL is such a cool language in that it will tell you exactly how it's going to run your code, so long as you ask nicely. This is absolutely essential in optimizing your code and finding bottlenecks. Database maintenance (backups, shrinking files, etc) is always important to keep your server running smoothly. It's something that's often overlooked, too. Developers should know all about triggers and stored procedures--getting the database to work for you. These things can help automate so many tasks, and often developers overlook them and try to handle it all app side, when they should really be handled by something that thinks in sets. Which brings me to the most important point, database developers need to think in sets. To often I hear, "For each row, I want to..." and this is generally an alarm in my head. You should be thinking about how the set interacts and the actions you want to take on entire columns. |
||
|
|
|
I would recommend developing an understanding of the security architecture for the relevant DBMS. Doing so could facilitate your development of secure code. With SQL Server specifically in mind for example:
As a general rule, the more you understand about the engine you are working with, the more performance you can squeeze from it. |
||
|
|
|
Relationships of your tables. You should always have a recent printout and soft copy of your database. You need to know the primary keys, foreign keys, required and auto filled columns, without that I think you can't write efficient queries or make sure your database is carrying only what it needs. I think everyone else covered it. |
||
|
|
|
|
One thing that currently springs to mind is how to navigate and understand the information that database "system" tables/views gives to you. E.g. in sql server the views that are under the master database. These views hold information such as current logins, lists of tables and partitions etc. which is all useful stuff in trying to track down things such as hung logins or whether users are currently connected etc. |
||
|
|
|
A developer is responsible for doing everything that makes his code a) correct and b) fast. This of course includes creating indexes and tables. Making a A He or she should not be a sole person for making the decicions that affect the performance of the whole database system. Relational databases, as for now, are not yet in that state that would allow splitting of responsibility so that developers could make the queries right and the If there is a lack of resources (say, an index makes some query fast at the expence of some Now, it is a decision making time. What do we need more, fast query or a fast insert? This decision should be made by the program manager (and not the And when the decision is made, the developer should be given the new task: "make the A developer should know everything about how a database works, when it works normally. A The latter includes ability to make a backup, ability to restore from a backup and ability to detect and report a resource contention. |
||||||||||||||||
|
|
|
Optimization. Your code allways should use as little resources as you can achieve. |
||
|

@Pax: the actual runstats should be given to developers every morning to be looked at. If the developers operate under some kind of "assumptions based on expected data" for more than a day since actual data are available, there is something wrong with program management in this company. – Quassnoi Aug 24 at 11:13