active questions tagged toad - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T08:03:51Zhttp://stackoverflow.com/feeds/tag/toadhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1847947/problem-with-toad-for-mysql-and-version-control1Problem with Toad for MySQL and version controlVilx-2009-12-04T16:06:49Z2009-12-08T15:21:27Z
<p>I'm trying to use SVN with Toad for MySQL to keep two DBs on two development machines in sync. When I modify a table on one machine Toad changes the appropriate scripts and checks them in just fine.</p>
<p>On the other machine, when I try "Update database" or "Updata schema" or even "Get Latest" on the specific table, I get a window which shows that the table has changed, but when I click OK I get an empty script window that says <code>-- no changes detected</code> (and the OK button is disabled). When I try to alter the table manually, Toad says that it doesn't match with SVN and wants me to update it, but that just brings me to the first window. And since the first window cannot be closed successfully (it can be only cancelled), I can't even edit the table.</p>
<p>Has anyone had this before? What am I doing wrong?</p>
<p><strong>Added:</strong> Another problem: I added a new table on one of the machines. When I try to update the other one, I get <code>MySQL Database Error: Table 'my.table' doesn't exist</code>.</p>
http://stackoverflow.com/questions/1862986/difference-between-execute-and-execute-as-script0Difference between 'Execute' and 'Execute as script'fras852009-12-07T21:23:36Z2009-12-07T21:38:16Z
<p>Hi Guys.</p>
<p>I'm currently experiencing what I believe is strange behavior when using Oracle with TOAD. </p>
<p>I have a query:</p>
<pre><code>SELECT
COUNT(as_at_date)
FROM
job_log
WHERE
as_at_date = TO_DATE('24/11/2009', 'dd/mm/yyyy');
</code></pre>
<p>When I try to run this using Toads 'Execute statement' button I get zero rows returned. However when I use 'Execute as script' I get one row returned, which is as expected.</p>
<p>Can anyone explain to me why using the different commands would produce differences in the result set?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/18075/sql-query-tools3SQL/Query tools?shsteimer2008-08-20T14:18:10Z2009-11-24T22:49:52Z
<p>I haven't really done a ton of database work in a few years and have become unaccustomed with the tools available. Back a few years ago I was working with oracle databases and was using primarily TOAD with a little bit of MS Access as my tools of choice to prototype the queries I was using in my applications. I really loved TOAD in that it was super intuitive and really easy to use and I'm hoping to find something similar for MS SQL Server. Something open source or free is preferable, since I doubt my client will want to pay for anything, but I'm willing to hear suggestions of things that cost money if they are far and away the best in class tool available. </p>
http://stackoverflow.com/questions/147917/monitoring-a-database-instance0Monitoring a database instanceRonald2008-09-29T08:21:53Z2009-11-22T21:59:52Z
<p>Anyone have any idea? And any open source sofware which also seens to perform this kind of functionality?</p>
http://stackoverflow.com/questions/1761563/toad-debugger-question0Toad: Debugger questionunknown (google)2009-11-19T07:43:37Z2009-11-19T07:46:27Z
<p>Hi guys:</p>
<p>Why the <strong>a-in</strong> param in the function <strong>info</strong> will become <strong>undefined identifer</strong> in the initialize_values stored proc? But I can executeit normally without any problem.</p>
<pre><code>CREATE OR REPLACE PACKAGE BODY HR.bt
IS
FUNCTION info (a-in IN VARCHAR2)
RETURN sth_rt
IS
l_name PLS_INTEGER;
PROCEDURE initialize_values
IS
BEGIN
l_name := INSTR (a-in, c_name_delim, 1, 1);
</code></pre>
<p>Thanks for any help,
Ricky</p>
http://stackoverflow.com/questions/1754590/question-about-pl-sql-stored-program-text1question about pl/sql stored program textYousui2009-11-18T08:58:35Z2009-11-18T10:14:32Z
<p>hi all.
I use TOAD to do my PL/SQL development. In TOAD when i type a procedure name and press f4, I can see this procedure's source code. I think TOAD get the source code from v$sqltext view. To confirm my thought, I wrote a query:</p>
<pre><code>select * from v$sqltext
</code></pre>
<p>but when I execute the upper query, Oracle give me an error:</p>
<blockquote>
<p>ORA-00942: table or view does not
exist
00942. 00000 - "table or view does not exist"
*Cause:<br>
*Action: Error at Line: 29 Column: 15</p>
</blockquote>
<p>So I think TOAD get the procedure's source from other place instead of v$sqltext view. Anyone can tell me about this? Great thanks.</p>
http://stackoverflow.com/questions/1724072/multiple-select-statements-within-if0Multiple Select Statements within IFkleen2009-11-12T17:45:06Z2009-11-13T10:24:11Z
<p>I could use some help to write a prog./sql construct for a report..</p>
<p>The Sql should first check for the prompt & then decide which "select" statements should run</p>
<p>something like (pseudo-code)</p>
<pre><code>Select ACCT,LOC FROM (
IF :loc = 'MN' THEN
Select acc as ACCT,location as LOC
ELSE IF :loc = 'MA' THEN
Select accid as ACCT,locid as LOC
ELSE IF :loc = 'PA' THEN
Select accountid as ACCT,location as LOC
END IF)
</code></pre>
<p>the above doesnt seem to work. Please help!</p>
http://stackoverflow.com/questions/1706163/why-i-cant-stop-my-pl-sql-program-at-breakpoint-which-i-set-in-toad1why i can't stop my pl/sql program at breakpoint which i set in TOADYousui2009-11-10T07:24:13Z2009-11-11T14:35:57Z
<p>hi guys,
i have a simple oracle stored procedure proc1 as follows:</p>
<pre><code>CREATE OR REPLACE PROCEDURE SYS.proc1
IS
total NUMBER := 0;
temp INTEGER := 0;
BEGIN
FOR i IN 1 .. 5
LOOP
temp := 2 * i;
total := total + temp;
END LOOP;
DBMS_OUTPUT.put_line (total);
END;
</code></pre>
<p>the owner of proc1 is sys. sys have enough privileges to debug proc1 as the follow sql command shows:</p>
<pre><code>SELECT *
FROM session_privs
WHERE privilege LIKE '%DEBUG%';
</code></pre>
<p>i'll get the following result:</p>
<pre><code>DEBUG CONNECT SESSION
DEBUG ANY PROCEDURE
</code></pre>
<p>i use oracle 11g as the following sql commands shows:</p>
<pre><code>SELECT * FROM v$database;
SELECT * FROM v$instance;
</code></pre>
<p>the upper queries gives me:</p>
<pre><code>1223277241,ORCL,8/21/2009 5:28:25 PM,886308,8/21/2009 5:28:28 PM,1,10/15/2007 10:08:59 AM,NOARCHIVELOG,3510666,3399439,CURRENT,8/21/2009 5:28:26 PM,10008,3536169,11/10/2009 3:16:51 PM,NOT ALLOWED,8/21/2009 5:28:25 PM,READ WRITE,MAXIMUM PERFORMANCE,UNPROTECTED,ENABLED,1223308473,1223308473,PRIMARY,886308,DISABLED,SESSIONS ACTIVE,DISABLED,NONE,NO,NO,NO,NO,7,Microsoft Windows IA (32-bit),2,2,3536339,NO,NO,NO,orcl,0,DISABLED,,0,,,NO,,NO,
</code></pre>
<p>and</p>
<pre><code>1,orcl,WD00070136,11.1.0.6.0,11/9/2009 11:04:29 AM,OPEN,NO,1,STOPPED,,ALLOWED,NO,ACTIVE,PRIMARY_INSTANCE,NORMAL,NO
</code></pre>
<p>in TOAD, i set breakpoint at proc1, then i click the "execute the plsql with debugger" button. TOAD run proc1 and display the result immediately. It just does not stop at breakpoint. I don't know why. Does anybody ever run into this problem? how do you fix it? Great thanks!</p>
<p>ps: i use toad 9.7.2</p>
http://stackoverflow.com/questions/1511073/toad-sql-editor-prompt-when-file-changed0TOAD sql editor - prompt when file changed?Marcus Leon2009-10-02T18:17:54Z2009-11-05T18:30:35Z
<p>In TOAD, if I'm editing a sql file in the sql editor window and that file is changed (ie: by making an edit to it in Textpad), TOAD doesn't prompt you to get the changes. Is there a way to get TOAD to give you a prompt?</p>
<p>Conversely, in Textpad if you have a file open and it is changed, Textpad will prompt you and ask if you want to reload the file with the changes.</p>
<p><strong>Edit</strong>: We're using TOAD v. 8.6.1</p>
http://stackoverflow.com/questions/1682542/dbms-debugger-causes-toad-to-hang0DBMS debugger causes TOAD to hang James Collins2009-11-05T18:20:21Z2009-11-05T18:20:21Z
<p>I can start the dbms debugger in Toad and use it normally but if I hit the 'halt execution' button or just hit the 'Run' button to reach the end of the function it causes TOAD to hang. Windows reports it as not responding and I have to kill it through the task manager. </p>
<p>I have had this problem in Toad 9.7.2.5 and Toad 10 on two different laptops.</p>
<p>Has anyone else experienced this problem? </p>
<p>If you have did you find a solution to this?</p>
http://stackoverflow.com/questions/1531365/free-alternative-of-toad-for-db20Free alternative of TOAD for DB2Rakesh Juyal2009-10-07T12:35:33Z2009-10-21T08:39:29Z
<p>I am currently using <a href="http://www.toadsoft.com/toaddb2/index.html" rel="nofollow">Toad for DB2</a> to work on my DB2 database. I just wanted to know is there any free alternative to Toad for DB2, </p>
<p><strong>Note:</strong>
<a href="http://stackoverflow.com/questions/214930/alternatives-to-toad">Similar question</a> is posted earlier, but it was for TOAD [ oracle ], none of the solution specified is for DB2 obviously.</p>
http://stackoverflow.com/questions/1577262/tool-compare-the-tables-in-two-different-databeses0Tool Compare the tables in two different databesesunknown (yahoo)2009-10-16T10:17:47Z2009-10-16T15:47:42Z
<p>I am using Toad. Frequently i need to compare tables in two different test environments.
the tables present in them are same but the data differs.
i just need to know what are the differences in the same tables which are in two different data bases.Are there any tools which can be installed on windows and use it to compare.</p>
<p>Much appreciate your help:)</p>
http://stackoverflow.com/questions/1476275/toad-insert-record-button-disabled0Toad 'insert record' button disabled.Attilah2009-09-25T09:12:36Z2009-10-06T12:21:57Z
<p>I'm using Toad 8.6 and when I try to add new records using the Schema Browser, Data tab, my 'insert record' is grayed out. so, I installed the 9.6 version and the same problem persists.</p>
<p>see the grayed out buttons in red in the picture.</p>
<p><img src="http://img193.imageshack.us/img193/8876/toadproblem.jpg" alt="alt text" /></p>
<p>but i'm able to add records through the SQL insert statement at the SQL Editor of Toad. Weird !</p>
<p>is there something I'm missing ?</p>
<p>How can I solve this ?</p>
<p>thanks.</p>
http://stackoverflow.com/questions/69764/what-do-you-use-to-write-and-edit-stored-procedures-in-oracle3What do you use to write and edit stored procedures in Oracle?minty2008-09-16T06:18:23Z2009-09-11T07:47:18Z
<p>There are many options for editing and writing Stored Procedures in Oracle; what is the best tool for you and why? (one tool per answer.)</p>
http://stackoverflow.com/questions/1347837/query-optimization-why-does-this-speed-up-the-query1Query Optimization - Why does this speed up the Query? David Stein2009-08-28T15:43:40Z2009-08-28T16:16:50Z
<p>I'm using Quest's TOAD for SQL Server on a SQL Server 2000 Server. </p>
<p>Here is my query:</p>
<pre><code>SELECT CASE SLCE.GroupName WHEN 'Other' THEN ARM.FBCOMPANY
WHEN 'Inter Co.' THEN ARM.FBCOMPANY
ELSE SLCE.GroupName END AS [Company Name],
ARM.fcustno AS [Cust No],
ARM.fbcompany AS [Cust Name],
ARM.fcinvoice AS [Invoice No],
ARM.fdgldate AS [Post Date],
year(arm.fdgldate) AS [Year Posted],
CASE ARM.fcsource WHEN 'S' THEN 'Shipper'
WHEN 'O' THEN 'Sales Order'
WHEN 'R' THEN 'Receiver'
WHEN 'C' THEN 'Customer'
ELSE ARM.fcsource END AS [Source Doc Type],
CASE ARM.fcstatus WHEN 'N' THEN 'New'
WHEN 'U' THEN 'Unpaid'
WHEN 'P' THEN 'Partially Paid'
WHEN 'F' THEN 'Paid in Full'
WHEN 'H' THEN 'Held'
WHEN 'V' THEN 'Voided'
ELSE ARM.fcstatus END AS [Invoice Status],
ARM.fpono AS [Cust PO No],
ARM.fsalespn AS [Sales Person],
ARI.fitem AS [Item No],
ARI.fprodcl AS [Prod Class],
ARI.fshipkey AS [Qty Invoiced],
ARI.ftotprice AS [Net Invoiced],
ARI.fpartno AS [Part No],
ARI.frev AS [Part Rev],
cast(ARI.fmdescript AS VARCHAR(20)) AS [Part Description],
ARM.fsono AS [Sales No],
ARI.fsokey AS [SO Rels Key],
ARI.fordqty AS [Qty Ordered],
RED.[YEAR] AS [Year],
RED.PERIOD AS [RF Period]
FROM dbo.armast ARM
INNER JOIN dbo.aritem ARI
ON ARM.FCINVOICE = ARI.FCINVOICE
INNER JOIN slcdpm SLC
ON SLC.fcustno = ARM.fcustno
LEFT OUTER JOIN slcdpm_ext SLCE
ON SLC.identity_column = SLCE.fkey_id
INNER JOIN REDFRIDAYDATES..TBLREDFRIDAYALLDATES RED
ON RED.date = CAST (FLOOR (CAST (ARM.fdgldate AS FLOAT)) AS DATETIME)
WHERE ARM.fcstatus <> 'V'
AND RED.[YEAR] = year(getdate())
AND ari.frev = 'REP'
AND ARI.fsalesacc IN ('4010001', '4010002', '4010003', '4010004', '4010005', '4010006', '4010007', '4010008', '4010009', '4010010', '4010018', '4010019', '4010020', '4010021', '4010031', '4010050', '4022000', '4031000', '4045000', '4055000', '4057000', '4060000', '4070000')
</code></pre>
<p>Here is TOAD's option (with differences highlighted) is:</p>
<pre><code>INNER JOIN dbo.aritem ARI
ON ARM.FCINVOICE = ***COALESCE (ARI.FCINVOICE , ARI.FCINVOICE)***
INNER JOIN slcdpm SLC
ON SLC.fcustno = ARM.fcustno
LEFT OUTER JOIN slcdpm_ext SLCE
ON SLC.identity_column = SLCE.fkey_id
INNER JOIN REDFRIDAYDATES..TBLREDFRIDAYALLDATES RED
ON RED.date = CAST (FLOOR (CAST (ARM.fdgldate AS FLOAT)) AS DATETIME)
WHERE ARM.fcstatus <> 'V'
AND RED.[YEAR] = year(getdate())
AND ari.frev = 'REP'
AND ARI.fsalesacc IN ('4010001', '4010002', '4010003', '4010004', '4010005', '4010006', '4010007', '4010008', '4010009', '4010010', '4010018', '4010019', '4010020', '4010021', '4010031', '4010050', '4022000', '4031000', '4045000', '4055000', '4057000', '4060000', '4070000')
***AND ARI.[fpartno] >= CHAR(0)***
</code></pre>
<p>Can someone please tell me why that coalesce and additional and statement speed up this query by more than 50%? </p>
http://stackoverflow.com/questions/1255369/oracle-query-help-using-toad0Oracle Query Help - Using TOADPhill Pafford2009-08-10T14:53:17Z2009-08-10T15:36:06Z
<p>Hi all,</p>
<p>I have used this type of functionality before but is MSSQL but can't get it to work for Oracle, any tips?</p>
<pre><code>DECLARE
MY_TBL NUMBER := 1;
BEGIN
IF(MY_TBL > 0) THEN
SELECT * FROM MY_TBL ORDER BY MY_TBL_ID DESC;
END IF;
END;
</code></pre>
<p>What I would like to have is a flag variable set to zero or one, if one display the results, if zero skip. This is just a simple script to have all my tables and select statements in one script ans flag the ones I need to see the results for. So if I have 5 tables I would use the ELSIF function to add more like this</p>
<pre><code>DECLARE
MY_TBL1 NUMBER := 1;
MY_TBL2 NUMBER := 1;
BEGIN
IF(MY_TBL1 > 0) THEN
SELECT * FROM MY_TBL1 ORDER BY MY_TBL1_ID DESC;
ELSIF(MY_TBL2 > 0) THEN
SELECT * FROM MY_TBL2 ORDER BY MY_TBL2_ID DESC;
END IF;
END;
</code></pre>
<p>and so on. Thanks for any help on this,
--Phill</p>
<p>EDIT:</p>
<p>Here is what I have:</p>
<pre><code>VAR result_set REFCURSOR
DECLARE
my_tbl_1 NUMBER := 1;
my_tbl_2 NUMBER := 0;
my_tbl_3 NUMBER := 0;
BEGIN
IF (my_tbl_1 > 0)
THEN
BEGIN
OPEN :result_set FOR
SELECT *
FROM my_tbl_1
ORDER BY my_tbl_1_id DESC;
END;
ELSIF (my_tbl_2 > 0)
THEN
BEGIN
OPEN :result_set FOR
SELECT *
FROM my_tbl_2
ORDER BY my_tbl_2_id DESC;
END;
ELSIF (my_tbl_3 > 0)
THEN
BEGIN
OPEN :result_set FOR
SELECT *
FROM my_tbl_3
ORDER BY my_tbl_3_id DESC;
END;
END IF;
END;
PRINT result_set
</code></pre>
http://stackoverflow.com/questions/1234291/no-descriptor-for-this-position-oracle-error0"no descriptor for this position" Oracle errorMarcus Leon2009-08-05T16:22:46Z2009-08-05T16:29:47Z
<p>We're trying a basic insert statement:</p>
<pre><code>INSERT INTO HOLIDAY (HOLIDAY_TYPE_CODE, CALENDAR_NAME, HOLIDAY_DATE, DESCRIPTION, CREATE_TS,
UPDATE_TS) VALUES (2, 'CZK', '17-NOV-2009', NULL, SYSDATE, NULL);
</code></pre>
<p>And we get this error:</p>
<pre><code>ORA-24334: no descriptor for this position
</code></pre>
<p>What are we doing wrong here??</p>
http://stackoverflow.com/questions/1153145/sql-and-toad0SQL and toadam7072009-07-20T12:01:48Z2009-07-22T02:11:46Z
<p>I have a select query that fetches some values based on user input, for EG :-</p>
<pre><code>SELECT
company, accounts
from testdrive
WHERE company LIKE '&Company', accounts = '&Account'
order by company desc
</code></pre>
<p>On running this in Toad, the user is prompted for values.. but I want to know how can the <strong>USER</strong> specify the "conditions" ALONG with the values?? Detno >, <, != etc</p>
http://stackoverflow.com/questions/952620/advice-from-toad-for-oracle-formatter1Advice from Toad for Oracle FormatterSteven2009-06-04T19:27:12Z2009-06-12T18:26:24Z
<p>What does the warning mean?</p>
<p>Why is the second example worse than the first?</p>
<pre><code>SELECT product_id, prod.name name, sample_id
FROM lims.sample JOIN lims.product prod USING (product_id)
</code></pre>
<p>vs.</p>
<pre><code>SELECT product_id, prod.name name, sample_id
FROM (SELECT sample_id, product_id FROM lims.sample)
JOIN lims.product prod
/* ADVICE: [131] This item has not been declared, or it refers to a label */
USING (product_id)
/* ADVICE:
ADVICE SUMMARY
Count Recommendation
----- --------------
1 [131] This item has not been declared, or it refers to a label
The Oracle equivalent error messages are PLS-00320 and
PLS-0321.
*/
</code></pre>
<p>FYI: Both queries run fine and return the same results.</p>
http://stackoverflow.com/questions/926323/cannot-connect-with-toad-but-can-with-other-tools-apps0Cannot Connect with TOAD but Can with Other Tools/AppsKit2009-05-29T14:39:20Z2009-05-29T14:47:08Z
<p>I am able to connect to an Oracle database using several tools, but am unable to connect using Toad for Oracle 8.5.3 (<em>though before a login/logout to Windows I was able to</em>).</p>
<p>I am not using <strong>TNSNAMES.ORA</strong> to connect. I have two Oracle homes:</p>
<blockquote>
<p><code>C:\Oracle\product\10.2.0\client_1
(OraClient10g_home1)</code> and
<code>C:\Oracle\product\10.2.0\client_2</code>
(ODACHome2)</p>
</blockquote>
<p>where client 2 was installed after client 1.</p>
<p>I have tried Toad with each home, but I get "ORA-12154: TNS:could not resolve the connect identifier specified" when I supply the database name, user name, and password. I can connect using SQL*Plus using this same information, and I can connect via ADO.NET (ODP.NET). <strong>tnsping</strong> (client 2) to the server works, but <strong>tnsping</strong> (client 1) does not.</p>
<p>My <strong>PATH</strong> environment variable contains, in order:</p>
<blockquote>
<p><code>C:\oracle\product\10.2.0\client_2\bin;C:\oracle\product\10.2.0\client_1\bin</code></p>
</blockquote>
<p>and changing the order of <strong>PATH</strong> seems to have no effect. When I added the line</p>
<blockquote>
<p><code>NAMES.DIRECTORY_PATH= (LDAP, TNSNAMES)</code></p>
</blockquote>
<p>to <strong>sqlnet.ora</strong> of client 2, Toad still could not connect, but the error message appeared much more quickly.</p>
http://stackoverflow.com/questions/834439/alternative-to-sql-tools-and-toad-ides-for-oracle-query-development1Alternative to SQL Tools and Toad IDEs for Oracle query developmentamit2009-05-07T12:43:21Z2009-05-07T12:47:15Z
<p>Are there any better alternatives to using SQL Tools and TOAD for writing stored procs and queries for Oracle DB? </p>
<p>Better in the sense of being able to debugg large queries and stored procedures. </p>
<p>Any pointers are welcome!</p>
http://stackoverflow.com/questions/752820/is-there-anything-as-good-as-toad-for-postgres-windows1Is there anything as good as TOAD for Postgres (Windows)?misc0909122009-04-15T17:25:47Z2009-04-15T19:42:53Z
<p>Hi guys, I'm just looking for a management tool like TOAD for Postgres. Anyone used a good one?</p>
<p>Edit - I work mostly within the data itself and the database already has a mature model/design. I use the edit windows the most (well, in TOAD for Oracle anyway.)</p>
<p>As far as I know, Toad only exists naturally for: Oracle, MS SQL, DB2 and MySQL...</p>
<p>--JS</p>
http://stackoverflow.com/questions/603165/what-tool-do-you-use-for-developing-and-administrating-your-database0What tool do you use for developing and administrating your database?Ascalonian2009-03-02T17:22:23Z2009-03-02T17:57:11Z
<p>I have always used <a href="http://www.quest.com/toad/" rel="nofollow">TOAD</a> by Quest to do my development and administration work in Oracle and MS SQL Server. However, I am trying not to be myopic in my choices. Are there other tools that you would recommend that will allow me to connect to the database(s) and perform my development and administrative duties?</p>
http://stackoverflow.com/questions/490054/two-identical-tables-in-oracle0Two Identical tables in Oraclewayde2009-01-29T00:32:11Z2009-01-31T01:20:53Z
<p>I have created two identical tables which list all the exceptions with regards to certain rules of products in the data base. table one is for week 1 table two is for week two the exception are just view on a weekly basis and no correction is made in the data base. week twos data includes the exceptions in week one i want to exclude week ones exceptions from week twos. only to view the new exceptions </p>
http://stackoverflow.com/questions/480670/how-do-i-set-a-field-to-null-in-quest-toad-browse-database-objects-view0How do I set a field to null in Quest Toad "Browse Database Objects" view?Cory House2009-01-26T17:43:53Z2009-01-29T13:41:17Z
<p>Simple question, would love a solution if there is one! I assume there has to be some keyboard shortcut that will insert a null but Google isn't helping.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/107984/toad-unicode-input-problem1Toad unicode input problemSerhat Özgel2008-09-20T11:56:38Z2009-01-28T01:45:30Z
<p>In toad, I can see unicode characters that are coming from oracle db. But when I click one of the fields in the data grid into the edit mode, the unicode characters are converted to meaningless symbols, but this is not the big issue.</p>
<p>While editing this field, the unicode characters are displayed correctly as I type. But as soon as I press enter and exit edit mode, they are converted to the nearest (most similar) non-unicode character. So I cannot type unicode characters on data grids. Copy & pasting one of the unicode characters also does not work.</p>
<p>How can I solve this?</p>
<p>Edit: I am using toad 9.0.0.160.</p>
http://stackoverflow.com/questions/439326/toad-credential-retrieval-failed-error0TOAD "Credential retrieval failed" errorMarcus Leon2009-01-13T15:22:06Z2009-01-15T03:20:23Z
<p>Semi-regularly when using TOAD, I will try to connect to a DB and get the error "ORA-12638 Credential retrieval failed". I have to restart my TOAD to get past this. It's a pain if I have other connections active. Does anyone know how to avoid or get around this error?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/425025/toad-vs-aquafold-connecting-to-oracle1TOAD vs AquaFold - Connecting to OracleRicardo Villamil2009-01-08T16:56:24Z2009-01-08T17:13:56Z
<p>Hi, does anyone have any experience using both of these products and willing to share some pros and cons of each? I love TOAD but I'm moving to Mac, so I'll have to give it away. I can always run TOAD in a VM, but at the same time I'd like to try something new and native to Mac OS. Toad is a memory hog and crashes constantly, so if I could find anything with similar features and more stable I wouldn't mind the change.</p>
<p>I'm specifically concerned about code completion (Intellisense like), code formatting, SVN integration and the usual schema browsing, speed. Toad has great speed and that's one thing I really like about it.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/189865/how-to-get-toad-to-send-out-daily-sql-pool-executed-in-toolssga-trace-optimizati0How to get Toad to send out daily SQL pool executed in Tools|SGA Trace/optimization.Nick Long2008-10-10T02:01:22Z2008-10-10T02:01:22Z
<p>Anyone knows how to do that? I can currently go to Tools|SGA Trace/optimization. to check the currently executed SQL. But i want toad to be able to send me daily. I think can use windows schedule task to achieve that . But how exactly to go about that anyone knows?</p>
<p>Will be good if anyone can also suggest if it is possible to also have a tuned SQL report churned out beside this SQL pool thing.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/147906/tabbed-vs-tree-for-navigaion-which-is-the-preferred-approach0Tabbed VS Tree for navigaion. Which is the preferred approach?Ronald2008-09-29T08:18:04Z2008-09-29T14:42:23Z
<p>I realize that in of TOAD books right, it justifies the reaons on why it uses tabbed pane is that tree view involves too much scrolling.</p>
<p>But for me i like tree view better. As it only shows you the top level.
I see TOAD user interface. i thought the tabbed panels was very confusing for me to switch around.</p>
<p>What are your opinions regarding this?</p>