SmpTraining
MIS
Hi guys,
I'm having trouble finding a table/field name so I thought of entering a rogue value using the front-end and searching all the fields for this value.
I don't know how to write the SQL for this though.
lists all the fields but how do I write a statement to check for the specific value?
Thanks for any help.
Steve Phillips, Crystal Trainer/Consultant
I'm having trouble finding a table/field name so I thought of entering a rogue value using the front-end and searching all the fields for this value.
I don't know how to write the SQL for this though.
Code:
select distinct t.table_name, f.field_name
from user_tables t, dict_flds f
where t.table_name = f.table_name
lists all the fields but how do I write a statement to check for the specific value?
Thanks for any help.
Steve Phillips, Crystal Trainer/Consultant