Monday, June 5. 2006I don't maintain a table-create scriptComments
Display comments as
(Linear | Threaded)
Good point.
The only time I did a table create script was when I had to package a software in a installable (i.e. off-the-shelf-software) where you will need to at least create the database and tables first before loading in the data. Otherwise, database backup would suffice.
I look at this similar to the argument between having design doc and source code. Everything is inside the source code and is always the latest, then why you still want to maintain the design doc ? You already have the database, why still need the script ?
So it all depends on who is looking at it from which angle. No right or wrong answer.
MK, the target audience of design doc is developers and it is (somewhat) necessary, but i couldn't think of any audience for the db script.
Well, the user actually will have for the DB Script included in the User manual... Instead, they will ask for more... They even want ER Diagram with cardinality...
Prepare for that for UPM...
For a DBA, a db would suffice. However, what if someone joins in tomorrow and he needs to look at the table structure to understand the application?
What if another DBS comes in? Scripts are tedious, complicated, a bore to maintain etc etc etc, but one cant deny that they do come in useful at times. |
Picture of the week
![]() Calendar
QuicksearchDon't like the current style?Categories |
|||||||||||||||||||||||||||||||||||||||||||||||||
Just had a little chat with the database administator I mentioned in previous post and we discussed about the reason of upgrading Oracle DB, generally from 7 to 8i or from 8 to 9i. I told him that I did not actually use any new features of the newer ver
Tracked: Jul 08, 00:45
In previous post I talked about how to use the DBMS_METADATA.GET_DDL() function to obtain the data definition of tables and indexes. But as you know there are a few more types of object which are considered as important as table, like user-defined funct
Tracked: Jul 10, 12:19