term73 / oracle-ddl2svn

Automatically exported from code.google.com/p/oracle-ddl2svn
0 stars 0 forks source link

JAVA_SOURCE DB_LINK #28

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
scheme2ddl.config.xml

add
    <bean id="dao" class="ru.qwazer.scheme2ddl.Dao">
        <property name="map">
            <map>
                <entry key="JAVA_SOURCE">
                    <set>
                        <value>OBJECT_GRANT</value>
                    </set>
                </entry>
                <entry key="DB_LINK">
                    <set>
                        <value>OBJECT_GRANT</value>
                    </set>
                </entry>

and
    <util:set id="types_for_getting_DDL">
        <value>JAVA_SOURCE</value>
        <value>DB_LINK</value>

not export JAVA_SOURCE and DB_LINK
why?

Original issue reported on code.google.com by Michai...@gmail.com on 21 Oct 2011 at 7:28

Attachments:

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
Thanks for reporting. I find bug when exporting **user** db_links.

Use new version 1.5.1 with fixed bug. I'll upload it in 10-15 minutes.

For configuring new objects for export use config section 
    <util:set id="types_for_getting_DDL">
        <value>DATABASE LINK</value>
        <value>JAVA SOURCE</value>
    </util:set>

Also see result of 
  select distinct t.object_type  from user_objects t
for additional object types to export.

You tried to configure depended object section. I try to clarify this in 
documentation.

I created new issue #29 add possibility to export **public** db_links

Original comment by resh...@gmail.com on 1 Nov 2011 at 11:10