You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ddlutils-dev@db.apache.org by "Thomas Dudziak (JIRA)" <ji...@apache.org> on 2006/02/04 15:28:05 UTC

[jira] Resolved: (DDLUTILS-65) DdlUtils does not yet provide a mechanism for specifying the catalog/schema to work in

     [ http://issues.apache.org/jira/browse/DDLUTILS-65?page=all ]
     
Thomas Dudziak resolved DDLUTILS-65:
------------------------------------

    Resolution: Fixed

The platforms now provide alterTables and getAlterTablesSql variants that allow to specify the catalog, schema, and table types to read from the existing database

> DdlUtils does not yet provide a mechanism for specifying the catalog/schema to work in
> --------------------------------------------------------------------------------------
>
>          Key: DDLUTILS-65
>          URL: http://issues.apache.org/jira/browse/DDLUTILS-65
>      Project: DdlUtils
>         Type: Bug
>  Environment: Oracle
>     Reporter: Tim Dudgeon
>     Assignee: Thomas Dudziak

>
> On 1/31/06, Tim Dudgeon <td...@informaticsmatters.com> wrote:
> <snip>
> >>     public void run() throws Exception {
> >>
> >>         OracleDataSource ods = new OracleDataSource();
> >>
> >>         ods.setURL("jdbc:oracle:thin:@localhost:1521:orcl");
> >>         ods.setUser("my_user");
> >>         ods.setPassword("my_password");
> >>
> >>         String sql = "CREATE TABLE MY_TABLE( " +
> >>                 "prop_name VARCHAR2(200) NOT NULL PRIMARY KEY, " +
> >>                 "prop_value VARCHAR2(200), prop_value_ext LONG RAW NULL)";
> >>
> >>         Connection conn = ods.getConnection();
> >>         Statement stmt = conn.createStatement();
> >>         stmt.execute(sql);
> >>         stmt.close();
> >>         conn.close();
> >>
> >>         String schema = "MY_SCHEMA";
> >>
> >>         Platform platform = PlatformFactory.createNewPlatformInstance(ods);
> >>         Database db = platform.readModelFromDatabase("test", null,
> >> schema, null);
> >>
> >>         dumpDb(db);
> >>
> >>         platform.alterTables(db, false, false, false);
> This is the problem here: DdlUtils does not yet provide a mechanism
> for specifying the catalog/schema to work in (. Could you create an
> improvement in JIRA for this ?
> Tom

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira