Hi all,
If I have a value, let's say "ABCDE," and I know this value
exists in a field of a table, but I don't know which table or field that this value is in. How do I go about using Oracle's data dictionary to search for the field and the table in which this value "abcde" is in?
I have only able to find all tables in the schema, shown blow, but couldn't go futher because I don't know how.
e.g:
I used this the following sql to find all the tables in the schema that I'm interested in.
sql:
select * from all_objects
where owner = "EVMS"
and object_name="Table";
Thanks,
Wendy
If I have a value, let's say "ABCDE," and I know this value
exists in a field of a table, but I don't know which table or field that this value is in. How do I go about using Oracle's data dictionary to search for the field and the table in which this value "abcde" is in?
I have only able to find all tables in the schema, shown blow, but couldn't go futher because I don't know how.
e.g:
I used this the following sql to find all the tables in the schema that I'm interested in.
sql:
select * from all_objects
where owner = "EVMS"
and object_name="Table";
Thanks,
Wendy