Location of log file

This below one find the table name in the log.I want location of log file.Please any help

> find / -type f -name "*.log" -exec grep -i 'sct' {} 2>/dev/null \;
. . importing table "sct"
. . exporting table sct
. . importing table "sct"
. . exporting table sct

Thanks ,
MR

Add a "-l" to the grep to see at least what the filename is. Check man grep on your system if you have an option to print the full path maybe.
Also some greps have -R do search recursively so you could spare the find.