[Home] [Help]
324: where owner = x_tab_owner
325: and table_name = x_tab_name
326: and constraint_type in ('U','P')
327: and not exists ( select null
328: from dba_cons_columns i
329: where i.owner = o.owner
330: and i.constraint_name = o.constraint_name
331: and i.column_name = 'ZD_EDITION_NAME' );
332:
951: where owner = x_tab_owner
952: and table_name = x_tab_name
953: and constraint_type in ('U','P')
954: and exists ( select null
955: from dba_cons_columns i
956: where i.owner = o.owner
957: and i.constraint_name = o.constraint_name
958: and i.column_name = 'ZD_EDITION_NAME' );
959: