Forum Post: RE: Ctrl-T not working
After reporting the issue, I opened another Toad instance and retried. No problem. So it seems the issue is session-specific. Abe ===
View ArticleForum Post: RE: how to backup entire database by TOAD
Hi Tanin, Is this the same as the question you asked on 2016/6/30 -- http://www.toadworld.com/products/toad-for-oracle/f/10/t/30987 ? There are many ways to backup an Oracle database. How you do that...
View ArticleForum Post: RE: Conversion of SQL scripts to ANSI Format
Hello! I am also looking for a toll for convering old-style MSSQL 2005 syntax to 2012 syntax for example RAISERROR @errno @errmsg into raiserror(@errmsg,@errno,1) and g.klas1_type_id =* a.klas1_type_id...
View ArticleForum Post: How to find the actual source line number mentioned in ORA error
Hi - I'm trying to determine how to find the true line number of the error being thrown in a PL/SQL package. Our QA group is testing in one of their environments so I'm not able to compile and step...
View ArticleForum Post: RE: How to find the actual source line number mentioned in ORA error
What does your error message look like? I have a procedure that deletes a row in a table. I made the table read-only to cause an error when the procedure is called. The error is shown below, and you...
View ArticleForum Post: RE: How to find the actual source line number mentioned in ORA error
Ok, so line 538 is a RAISE statement within an error block, but I questioned whether or not that was the correct line since I've always thought you would have to exclude comments, etc., and this is a...
View ArticleForum Post: RE: How to find the actual source line number mentioned in ORA error
Oh, yeah RAISE would be where the error occurs. You can, if you want, log call stack info from your code. Take a look at this: www.oracle.com/.../o14plsql-2045346.html
View ArticleForum Post: Code Analysis: Unused variable not detected
I don't really know what happens here, hope you can reproduce it. Paste this code into a new editor tab: CREATE OR REPLACE PROCEDURE test_proc AS TYPE number_tab IS TABLE OF NUMBER(12); unused_variable...
View ArticleForum Post: RE: How to find the actual source line number mentioned in ORA error
This is great info, thanks again John.
View ArticleForum Post: RE: Code Analysis: Unused variable not detected
A few rules still use old legacy code which will not process post 9i code. Rule 6405 (Avoid defining variables that are not referenced inside the program) is one of them. If you change 1 MEMBER OF NEW...
View ArticleForum Post: RE: Code Analysis: Unused variable not detected
Thanks for your answer! I totally understand the part about legacy code, but I am not sure what you mean by "change by just 1"? That 2131 shows for unused variables is a minor issue, but I'm really...
View ArticleForum Post: RE: SQL Tracker (Toad for Oracle) with Oracle Reports Builder not...
This is just a shot in the dark...I just remember from days with working with these (many, many moons ago) that when installing, sometimes they created separate Oracle Homes (1 for Reports, and 1 for...
View ArticleForum Post: RE: User Defined Variables in Options
I put the solution on mine blog page: http://damir-vadas.blogspot.co.at/2016/10/toads-automation-designer-and-sqlplus.html @Toad tech guys... Toad 12.10.0.30 x64 version tested Could you checked why...
View ArticleForum Post: RE: SQL Tracker (Toad for Oracle) with Oracle Reports Builder not...
Hi Guys, Thanks for all the help and suggestions. I have used the following approach: In Oracle Reports Builder, under Program->Tracing, you can specify a tracing file name that will contain all the...
View ArticleForum Post: Editor window size
Can I get a full screen editor window in TOAD for long SQL scripts?
View ArticleForum Post: RE: Toad 12.9 Team Coding with PVCS - Undo Checkout leaves object...
[quote user="garyprivette"] [..] I see another post that the object is not reverted back to its original state and recompiled like it used to do, and that this might have been done intentionally. If it...
View ArticleForum Post: RE: Editor window size
When you have a large file in the editor window, or any size file for that matter, simply right-click on the editor window and choose 'format code'. This will make your code easier to read by...
View ArticleForum Post: When exporting data from Toad via csv . . . Toad hangs (Not...
Hello. We all know the quickest way to export from Toad is csv. The largest file I am currently working with is 18 MB. Why does it take anywhere from 30 minutes to an hour to export? When looking at...
View ArticleForum Post: RE: When exporting data from Toad via csv . . . Toad hangs (Not...
Be sure to uncheck "display all results in grid". That makes a huge difference on big exports. When that option is checked, we use the query that is connected to the grid (and we can't unconnect it)....
View ArticleForum Post: RE: When exporting data from Toad via csv . . . Toad hangs (Not...
Well, we fetch 500 rows at time. So it sounds like the first batch of rows has been fetched and exported, and now Toad is waiting for the next batch of rows to arrive. My guess is that the slowness is...
View Article