Hi,
The following query is being built by MartBuilder:SQL> alter table RENATO1.C__COMMENT_BLOCK__main add column (COMMENT_BLOCK_count integer default 0);
ERROR at line 1:
ORA-00904: : invalid identifier ("column")
the correct syntax (according to our Oracle) is:
SQL> alter table RENATO1.C__COMMENT_BLOCK__main add (COMMENT_BLOCK_count
integer default 0);
Table altered. cheers, --renato --Reclaim your digital rights, eliminate DRM, learn more at http://www.defectivebydesign.org/what_is_drm
