hello everybody,
do you know, how i can read from a source-code
all table-names with their fields. i want to
search through a whole database for a keyword
without knowing table and field names of the
database. or is there a better way ...?
thank you
gruss
.ingo.
Possibly you're looking for something like this...
FOR EACH _Field
WHERE Field.Field-Name MATCHES "something" NO-LOCK:
FIND _File OF _Field NO-LOCK NO-ERROR.
DISPLAY File.File-Name Field.Field-Name.
END.
"Ingo" wrote:
>
>hello everybody,
>
>do you know, how i can read from a source-code
>all table-names with their fields. i want to
>search through a whole database for a keyword
>without knowing table and field names of the
>database. or is there a better way ...?
>
>thank you
>gruss
>.ingo.