Reputation: 155
I am new to Oracle , so i want to do Source Code Control in Oracle, so there is a option supply in Oracle SQL Developer
1.Is this Better solution to do Version Controlling to Oracle
2.Can i use PL/SQL
Upvotes: 1
Views: 4089
Reputation: 4767
Firstly, your question talks about two un-related concepts - using source control in SQL Developer and the other about PL/SQL. Hence here is a response that will hopefully disambiguate everything for you:
The approach has the advantage that you can develop and test your scripts independent of the database instance - you can clone the existing production database into a test database, create the original stored procs and database objects and then verify any changes or defect fixes to these objects without impacting production. Also, since you are checking in these files using source control you also have access to the revision history to observe how the scripts changed over time.
I hope this long answer gives you an insight on how to achieve your objective.
Upvotes: 6