Integration with version control system: what about tables/indexes?

Dear all,

I discovered the VCS-plugin for PL/SQL Developer. A real good tool to integrate my Oracle-development with my version control system (in my case this is Serena ChangeMan Version Manager).
I successfully tested check in/check out of stored procedures, function, packages and views, but unfortunately I didn't find a way to check in/check out tables and indexes. Do I miss something, or is this not included in the current VCS-plugin?

Thanks in advance for any answer,

Peter
 
There is indeed no version control for tables. When tables evolve during development, you will typically need to store the DDL scripts that apply these changes (e.g. an alter table add column statement) instead of the complete new table DDL.
 
SVCO

The above website/company promises version control over all schema objects. Never used the program so I can't tell you if it does what you need, or if it does it well.

If you try it out, could you post your findings here?

 
Back
Top