DBA Data[Home] [Help]

SYS.CDBVIEW dependencies on COL$

Line 39: from sys.obj$ o, sys.col$ c, sys.user$ u, sys.com$ co

35: and o.obj# = c.obj# and o.owner#=u.user# and o.type# = 4
36: and c.col# is null;
37:
38: cursor colcommentscur is select c.name, co.comment$, c.type#
39: from sys.obj$ o, sys.col$ c, sys.user$ u, sys.com$ co
40: where o.name = upper_oldview and u.name = upper_owner
41: and o.owner# = u.user# and o.type# = 4 and o.obj# = c.obj#
42: and c.obj# = co.obj# and c.intcol# = co.col#
43: and bitand(c.property, 32) = 0;