Creating a diagram in the query builder by pasting this query:
SELECT OWNER, TABLE_NAME FROM SYS.ALL_TABLES
WHERE UPPER(OWNER) LIKE 'A%'
AND ( UPPER(TABLESPACE_NAME) LIKE 'U%' OR UPPER(CLUSTER_NAME) LIKE 'D%' )
AND NOT UPPER(STATUS) LIKE 'E%'
AND PCT_FREE>0;
In the "Query" tab and clicking on "Visualize the SQL statement in the Query tab", Toad Data Point modifies the query into a new one that returns a different result set.
WORKAROUND:
none
STATUS:
Waiting for a fix in a future release of Toad Data Point