How to access Subversion from Oracle PL/SQL ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T23:06:32Z http://stackoverflow.com/feeds/question/140153 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/140153/how-to-access-subversion-from-oracle-pl-sql 4 How to access Subversion from Oracle PL/SQL ? bergeroy 2008-09-26T15:16:28Z 2009-02-04T22:49:11Z <p>For a governmental agency, we build a release management system developped in PHP and Oracle. The data for this application is stored in database tables and is processed with PL/SQL packages and procedures.</p> <p>The release management process is extensively based on metadata coming from Subversion repositories. We access the repositories from PL/SQL through the internal Oracle JVM to execute svn commands on the unix server on which resides the Oracle instances. The results from svn commands are received in XML and parsed before beeing processed by PL/SQL. Accessing Subversion this way is not very performant for frequent repeated use.</p> <p>Currently, what we do is storing the Subversion metadata in database tables at each commit in the Subversion repositories (via Subversion hooks). We extract the log information for each Subversion transaction and keep it in some oracle tables. We are then able to obtain Subversion metadata with normal SQL queries.</p> <p>Is there better ways to access Subversion from PL/SQL ?</p> http://stackoverflow.com/questions/140153/how-to-access-subversion-from-oracle-pl-sql/140192#140192 2 Answer by Steve K for How to access Subversion from Oracle PL/SQL ? Steve K 2008-09-26T15:23:36Z 2008-09-26T15:23:36Z <p>If your using Oracle's Java JVM, you could try to use <a href="http://svnkit.com/" rel="nofollow">SVNKit</a> to communicate with the SVN server nativly from Java, instead of shelling out to the operating system to execute commands.</p> http://stackoverflow.com/questions/140153/how-to-access-subversion-from-oracle-pl-sql/140276#140276 1 Answer by Corey Trager for How to access Subversion from Oracle PL/SQL ? Corey Trager 2008-09-26T15:35:35Z 2008-09-26T15:35:35Z <p>I think the basic flow makes sense. I would recommend doing experiments to see where exactly the performance bottlenecks are and then take if from there. For example, is it crossing from PL/SQL to Oracle JVM? Is it JVM shelling out to execute the svn command? Is it the svn round trip? Is it the parsing of the XML?</p> <p>Let's say, for example, it's the svn round trip. Maybe you could have a process on the oracle machine that caches answers from the svn server so that at times the round trip could be avoided? Maybe the svn round trip could be async?</p> <p>But, like I said, you need to know where the bottleneck is.</p> http://stackoverflow.com/questions/140153/how-to-access-subversion-from-oracle-pl-sql/513753#513753 0 Answer by Ash for How to access Subversion from Oracle PL/SQL ? Ash 2009-02-04T22:49:11Z 2009-02-04T22:49:11Z <p>I'm also looking for an API to integerate Subversion and Oracle. I need to be able to pull Oracle PL/SQL objects (procedures, packages) into Subversion and then once changes are made to objects it should be applied to those objects in Oracle database.</p>