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
I'm working in desoper and I would like to find tables with the column DESFILE_ID. I know that it exists in PROD.FILE_ARCHIVE_INFO, but find_tables_with_column doesn't find anything:
DESDB ~> find_tables_with_column DESFILE_ID
0 rows in 0.07 seconds
TABLE_NAME COLUMN_NAME
No rows selected
thanks Alex, is a minor overlooked bug from when I changed the CACHE_TABLES, thanks for catching it! the query was missing the owner part
Fixed now, for what is worth this is the query working: SELECT t.owner || '.' || t.table_name as table_name, t.column_name FROM all_tab_cols t, DES_ADMIN.CACHE_TABLES d WHERE t.column_name LIKE '%s' AND t.owner || '.' || t.table_name = d.table_name
How is
find_tables_with_column
supposed to work?I'm working in
desoper
and I would like to find tables with the columnDESFILE_ID
. I know that it exists inPROD.FILE_ARCHIVE_INFO
, butfind_tables_with_column
doesn't find anything:However, the column definitely exists:
I'm using
v1.4.2
.The text was updated successfully, but these errors were encountered: