Forum Post: Bug in Toad 12.10 formatter
After I started to use new version (12.10) I noticed that some part of the code formatting was changed. So I investigated the issue and found that one formatting option has no effect anymore....
View ArticleForum Post: Double insert
Hi! 12.11.06/12.10.0.30 DROP TABLE tst#; CREATE TABLE tst# ( ID NUMBER ); CREATE SEQUENCE tst#_seq; CREATE OR REPLACE PROCEDURE proc_tst# (cur OUT SYS_REFCURSOR) IS BEGIN INSERT INTO tst# (id) VALUES...
View ArticleForum Post: RE: 12.11.0.6: Feedback for new option in Team Coding settings
Hey Dennis, Looks like that was an oversight. I'll get that fixed for the next beta. Thanks for letting me know about that! -John
View ArticleForum Post: getting a sum of a "Grouped by" query
is it possible to sum the totals of a "grouped by" query? My query syntax is below: select b.region, count (b.parentcode) from pers a, parentunit b where a.parentcode=b.parentcode and a.empstatus =...
View ArticleForum Post: RE: getting a sum of a "Grouped by" query
Hey Joe, Don't know what the overall goal is, but if you want to get the full sum on a per-row basis, try this using the sum analytic: select b.region, count (b.parentcode) knt, sum(count...
View ArticleForum Post: RE: getting a sum of a "Grouped by" query
You can use the CUBE function to get the total. I have included an example below… David SELECT TYPE_CD , SUM( CNT ) CNT FROM ( SELECT 'Balls' TYPE_CD , 1 CNT FROM DUAL UNION ALL SELECT 'Jacks' TYPE_CD...
View ArticleForum Post: RE: Double insert
It's a bug in Toad. We're doing an OCI describe before running the query, to determine the ideal fetch size of the result set. This is causing the proc to be executed twice. It's only going to happen...
View ArticleForum Post: View by I/O shows "not setup"
Toad for Oracle Xpert 12.1 with DB Admin. Auto optimize SQL "View by" pulldown allows I/O, but when I run it, in the I/O column every alternative shows "not setup". What do I have to set up to make...
View ArticleForum Post: Setting to send query output in Editor to multiple output grids
Hi, I am working on Toad for Oracle Base Version 12.1.0.22. The problem i am facing is when i run queries in the editor tab , the previous output grid is being overwritten everytime. I would like to...
View ArticleForum Post: Code completion within queries
This feature already works great, but there are some things that I don't understand or could be improved. 1. Why is "col.owner = con .owner" not suggested in the following query? SELECT * FROM...
View ArticleForum Post: RE: View by I/O shows "not setup"
Hi James, IO is a statistic we retrieve through SQL Trace. In order to retrieve it, you would need to set up the Trace in SQL Optimizer for Oracle (the standalone product that opens when you do the...
View ArticleForum Post: RE: Code completion within queries
Good stuff, I can reproduce 1,2, and 4 have logged them as defects. #3 I've logged as something to investigate as well. Thanks, Michael
View ArticleForum Post: RE: Setting to send query output in Editor to multiple output grids
There is no way to do this now. If your result sets are small you can execute all 5 statements as a single script and you will get 5 grids. Executing as a script fetches all results so memory...
View ArticleForum Post: Beta Released (12.11.0.7)
Beta Notes Proxy Connections "Authentication Required" type proxy connections are now supported in Toad. So, with this kind of set up: create user app_user identified by app_user_pw; create user...
View ArticleForum Post: RE: AV from data grid after double-click on CLOB
Thanks, John - haven't been able to produce any errors in .7
View ArticleBlog Post: Copy User Settings in Toad for Oracle
I wanted to highlight the following important feature from Todd Phillippe, a Quest Systems Consultant. Todd gets this question at least once a month and it has to do with transferring Toad for Oracle...
View ArticleForum Post: Confirm window does not appear when creating a script in schema...
In prior versions of Toad when I would create a SQL script in schema browser a "confirm window" would apear if the file aleady exists. What configuration setting do I change to have this happen?
View ArticleForum Post: RE: Confirm window does not appear when creating a script in...
Seems like a bug. I'll investigate.
View ArticleForum Post: copy connections from 10 or 12.1 to 12.10
Is there a way to copy the connections from v10 or v12.1 to 12.10? In v10 and 12.1 they are in an INI file where 12.10 they are in an XML file. Using the Import feature does not work either. Thank You
View ArticleForum Post: Disconnected Session Error Prompt Is A HUGE Annoyance! Workaround??
I use Toad every day, and I'm fine with that most of the time. However, I am getting really, REALLY annoyed with the error prompt that pops up when a session is disconnected. The thing is, I could be...
View Article