You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
case when utc.data_type = 'VARCHAR2' then to_char(utc.char_length )
when utc.data_type = 'NUMBER' and (utc.data_precision is not null or utc.data_scale is not null)
then to_char(case when utc.data_precision is null then 0 else utc.data_precision end) || ',' || to_char(case when utc.data_scale is null then 0 else utc.data_scale end)
when utc.data_type like 'TIMESTAMP%' then null
else '0' end as data_length
-- TODO mdsouza: utc.hidden_column and utc.virtual_column