Forum Post: db_link
Hello, I create a database link. When I test it with the function of TOAD Context menu I get following result: ********************************************************************* Link Name :...
View ArticleForum Post: RE: Bug in recognizing out binds in SQL execution
Interesting! But in that context, the INTO clause appears to be ignored as there are no values in either B0 or B1, as well as the output being shown on screen. I think that can be further proved by...
View ArticleForum Post: RE: db_link
There may be something after DB_LINK_TEST that is needed. Maybe it's really DB_LINK_TEST. or soemthing. Turn on spool SQL when you test the db link. Then you can see how Toad queries it, and you can...
View ArticleForum Post: RE: Bug in recognizing out binds in SQL execution
>SELECT USER_ID INTO :B0 FROM DBA_USERS; returns more than one value and error is normal in any SQL language. You ask me to show you SQL*Plus example, what I suggest to any user on Toad forum, and I...
View ArticleForum Post: RE: Bug in recognizing out binds in SQL execution
Your statement: select count(*) into :b0:b1 from dba_users; ...is functionally equivalent to: select count(*) from dba_users; ...in SQL*Plus v11.2.0.3, as near as I can tell, as neither B0 nor B1 is...
View ArticleForum Post: RE: db_link
Did you use the DNS name in the description? Whenever I have created a link, I have had to use the I.P. address, not the DNS name.
View ArticleForum Post: RE: db_link
Toad spool (12.11 latest beta): SELECT 'Link Name : "DB_LINK_TEST"' || chr(13) || chr(10) || 'Connection : Successful'|| chr(13) || chr(10) || 'DB Name : ' || n.GLOBAL_NAME || chr(13) || chr(10) || 'DB...
View ArticleForum Post: RE: db_link
What information is in the host column if you run select   * from    all_db_links for the link you are referring to?
View ArticleForum Post: RE: Navigator Panel
It seems to only stick until the next time you save a .sql file. Then that is what it remembers. It's weird.
View ArticleForum Post: how can i set timeout option in toad?
Suppose i have 10 servers and some of them are down. When i am trying to reconnect that server's when reconnection reaches to the down one it waits to much time. how can i skip or set timeout time for...
View ArticleForum Post: RE: how can i set timeout option in toad?
That's not a Toad setting, that's a SQL*Net setting. go here and search the page for "timeout" https://docs.oracle.com/cd/E11882_01/network.112/e10835/sqlnet.htm#NETRF427 There are several timeout...
View ArticleForum Post: RE: Bug in recognizing out binds in SQL execution
i want to execute the same SQL that runs in SQL*Plus with the same result in Toad SQL editor. why? there are also other many things related to that...i,e. getting correct sql_ID or getting plan for...
View ArticleForum Post: RE: Code Tester for Oracle v3.0 is out in the wild...
Thank you for the update and work ... can you tell me how this is supposed to install silently as it seems to have a nested executable that prompts users for input at install time, even though i am...
View ArticleForum Post: RE: Unable to connect to database
Hello, Yes there is a solution for your error. This error occurs when we try to connect an Oracle database, through a Client like Toad for Oracle etc.. The error clearly says an 64-bit Oracle client...
View ArticleForum Post: 12.11.0.82 Editor describ not working
In 64bit version of oracle. pressing F4 on package_name. used to open describe window on package body now gives message : Object package_name. does not exists
View ArticleForum Post: RE: 12.11.0.82 Editor describ not working
Sorry about that. (Looks like it broke in October of last year!) Fixed for next beta.
View ArticleForum Post: ToadInside a bit too sensitive ? 12.11.0.82 64b
I get this feeling that TI become a bit too sensitive - DropDown is displayed even when I get to new line using Enter. Another one is after any dot it gets displayed after := (assignment), even though...
View ArticleForum Post: Toad 12.11.0.82 Describe window issue with coordinates
While describe window is opened I use toolbar icon to add a new column. Unfortunately this dialog is hidden below describe window, I cannot access it until I move describe window aside before opening...
View ArticleForum Post: Cannot cancel "Explain plan"
I tried to display an execution plan using Ctrl+E, but since my DB had an "ORA-00257: Archiver error" at that moment, the statement froze and I could not cancel the execution. Is there a way to add an...
View ArticleForum Post: RE: Cannot cancel "Explain plan"
Yeah once the archiver stops, the DB will just hang any statement that does any kind of change to the database. That includes EP since EP involves inserting rows into the EP table. EP normally happens...
View Article