java Programming Glossary: dba
java.sql.SQLException: - ORA-01000: maximum open cursors exceeded http://stackoverflow.com/questions/12192592/java-sql-sqlexception-ora-01000-maximum-open-cursors-exceeded number of cursors The number is normally configured by the DBA on installation. The number of cursors currently in use the..
Java Programming - Where should SQL statements be stored? [closed] http://stackoverflow.com/questions/1661921/java-programming-where-should-sql-statements-be-stored intentions SQL difficult to be reviewed changed by DBA SQL might still be needed for odd cases Can force usage of a.. messy architecture Cons SQL cannot be reviewed changed by DBA SQL is likely to become DB specific SQL can become hard to maintain.. parsed compiled and optimised by the DBMS SQL is easy for DBA to review change Reduces network traffic Increased security..
Hibernate: hbm2ddl.auto=update in production? http://stackoverflow.com/questions/221379/hibernate-hbm2ddl-auto-update-in-production in production . Write you own patches review them with DBA test them then apply them manually. Theoretically if hbm2ddl.. the case. Even if it worked OK it may be sub optimal. DBAs are paid that much for a reason. share improve this answer..
Persisting data suited for enums http://stackoverflow.com/questions/492096/persisting-data-suited-for-enums creating a data consistency holy war between me and my DBA Persist the statuses and maintain an enum in the code but don't.. data My preference is the second option although my DBA claims that our end users might want to access the raw data..
|