On 7/31/07, Robert Einsle <[EMAIL PROTECTED]> wrote:

> DDL-Utils creates here an SQL-Statement:
>
> --- cut ---
> SELECT  <COLUMNS> FROM <TABLE> WHERE 1 = 0
> --- cut ...
>
> but i think, this is wrong, i muss the Database-Schema. The correct
> Statement should be:
>
> --- cut ---
> SELECT  <COLUMNS> FROM <SCHMEA>.<TABLE> WHERE 1 = 0
> --- cut ...
>
> I think, this is a Bug.

DdlUtils does not fully support qualified table/sequence/... names
(incl. the schema) yet. For now, you'll probably have to qualify them
in the schema XML or, if all tables etc. are in the same schema which
is corresponds to a user, access the db as this user.

Tom

Reply via email to