Forum Post: RE: Line Numbers for PL/SQL code
Hi Tom, first of all, I was right about that "and rownum = 1" that I mentioned earlier! Insert smug grin here! However, as you noted, you just get the same message over and obver until your session...
View ArticleForum Post: RE: Line Numbers for PL/SQL code
Hi Greg, Tom, I've had a quick look at the inability to jump to the error line using Tom's anonymous block. When I introduce an error and run the code with F5, I get the pop-up that tells me there's an...
View ArticleForum Post: RE: Line Numbers for PL/SQL code
Anonymous blocks are always fun since technically Oracle sees them as a single statement (making debugging them nearly impossible) so where the error actually occurs in the "script" is at the start of...
View ArticleForum Post: RE: Line Numbers for PL/SQL code
LIne 3, relative to the start of the script, is DECLARE.... Line 34, relative to the DECLARE line, even counting the blank lines and comments (if there were any), is ... "open l_cursor for 'select...
View ArticleForum Post: RE: The procedure entry point ons_error_set could not be located...
I followed the steps in another similar thread to resolve this error with Toad 12.10 http://www.toadworld.com/products/toad-for-oracle/f/10/t/22920 . specifically If you have multiple Oracle clients...
View ArticleForum Post: RE: Line Numbers for PL/SQL code
Hi Gregory, > I'm not sure a webex would help in this since the error in the dialog comes directly from Oracle. My thought for the WebEx was so that you could see that when I click the message in...
View ArticleForum Post: RE: Line Numbers for PL/SQL code
Hi Norm, Norm [TeamT] wrote the following post at 19 Apr 2017 1:02 PM: Hi Greg, Tom, I've had a quick look at the inability to jump to the error line using Tom's anonymous block. When I introduce an...
View ArticleForum Post: RE: Line Numbers for PL/SQL code
Hi Norm, I'm replying to this message: > Norm [TeamT] / 19 Apr 2017 at 12:43pm I need to try your suggestions tomorrow, as I'm running out of time tonight. It looks like you may have solved this...
View ArticleForum Post: How is the data fetch limit determined at schema level?
Hi, I have observed that for few schemas, the data fetch limit is 500 rows and for few schemas its 300. I am in Toad version 12.1.0.22. I could not find parameters "Limit Grid Fetch" or "OCI Buffer...
View ArticleForum Post: Data Grid Fetch - control limit at schema level
Hi, I have observed that for few schemas, the data fetch limit is 500 rows and for few schemas its 300. I am in Toad version 12.1.0.22. I could not find parameters "Limit Grid Fetch" or "OCI Buffer...
View ArticleForum Post: RE: Line Numbers for PL/SQL code
This might be of some use. It's a small package containing a pipelined function to search given tables in a specific user, for some text. It takes 4 parameters: OWNER - the owner of the tables....
View ArticleForum Post: RE: How is the data fetch limit determined at schema level?
It's not determined at the schema level. It's determined at the query level. When you run a query that's tied to a grid in Toad, Toad first does an OCI describe on the query to see what the columns...
View ArticleForum Post: Beta Released (12.11.0.68)
Beta Notes Create/Alter DB Objects Added a "Use full TNS info from TNSNames.ora" checkbox to the Create/Alter DB Link dialog.�
View ArticleForum Post: RE: Line Numbers for PL/SQL code
Hi Norm, Norm [TeamT] wrote the following post at 20 Apr 2017 9:28 AM: Morning Tom, Being the curious type, I tried two text searches, on our Production server (11gR2), with and without the use of the...
View ArticleForum Post: RE: Line Numbers for PL/SQL code
Hi Norm, In response to: Norm [TeamT] / 20 Apr 2017 at 11:36am This might be of some use. It's a small package containing a pipelined function…. I created the package and package body in my “sandbox”...
View ArticleForum Post: RE: Adding commas when double-clicking columns in Editor?
IMHO the best way to handle column and table names would be a context sensitive approach: add a comma before the new name, if already a table / column name is there.
View ArticleForum Post: Wrong parsing binds
Toad 12.11.0.68 x64, Oracle 11.2.0.3 x64, Client Oracle 11.2.0.3 x64, Windows 7 x64. Seems that parsing on bind is not working as expected. SELECT ash.inst_id iid, username, '@sql_id '||ash.inst_id ||...
View ArticleForum Post: Bug in Oracle to ANSI join conversion?
Hi everybody, when using Toad to convert a query featuring outer joins written in the old Oracle notation into ANSI notation, I've run into a problem: If I write it like this: select AGENTS.AG_AGCLE,...
View ArticleForum Post: RE: Line Numbers for PL/SQL code
Hi Tom, Strange, it works fine here with a schema containing over 2500 tables, some of them very wide indeed! I suspect you might be overflowing the vSQL variable if a table has too many columns....
View ArticleForum Post: RE: Line Numbers for PL/SQL code
Hi Tom, your IT person needs a sever talking to, s/he is obstruction your ability to do work by the sound of things. However.... You have the ability to create a package in your sandbox I see. Once you...
View Article