Is that property just a stub or do I need to do something to enable setting the table name? The SQL in question being executed is just very vanilla select/from/where statements. No aliases or joins in 2/3. Here's the simplest one:
SELECT
Content,
ContentID
FROM ContentItems
WHERE LastModifiedByUserID != -1
AND (ContentTypeID = 1
OR ContentTypeID = 2
OR ContentTypeID = 7)
AND ContentItems.Content LIKE '%href%'
Getting the table-name would be convenient for the replace portion of writing a find/replace tool for links in our CMS DB.