Hey Larry, I'm afraid I spoke a bit too soon on this one. The fix won't be able to get into the GA version of Toad 13, but it will be in the first beta of Toad 13.1. Until then, you can still use Data Gen in Toad 13 by generating the script and sending it to the editor (rather than running it directly). Then, just modify any lines of the form: v_CASEID := (SELECT CASE_ID FROM (SELECT CASE_ID FROM CMS.CMS_CASE ORDER BY DBMS_RANDOM.VALUE) WHERE rownum = 1); to be: SELECT CASE_ID INTO v_CASEID FROM (SELECT CASE_ID FROM CMS.CMS_CASE ORDER BY DBMS_RANDOM.VALUE) WHERE rownum = 1; It's one extra step, but it'll let you still use it until Toad 13.1 beta starts up. Sorry about speaking too soon on this one. -John
↧