Forum Post: RE: Alias Replacement
OK. Been using alias replacement since it was introduced. That must have been over 15 years ago. Big loss for me. Thanks for the quick response.
View ArticleForum Post: Editor Window Hangs when edit SQL script
I assume this is an option setting that I have not set correctly... But I can't find it... I have a large SQL file (~35,000 lines) that basically has my "SQL History" in it so I can find stuff I have...
View ArticleForum Post: RE: Editor Window Hangs when edit SQL script
I just had a thought just after sending that might work, but it's too late for 12.11. We should be able to do a shallow parse and get just the statement at caret when parser data is invalid to...
View ArticleForum Post: Live and online presentations - where to find two of them?
Hello - I was looking at the live and online presentations available here for TOAD for Oracle: https://www.quest.com/events/#byproducttoadfororacle_bybrandallproductlines I see an interesting video...
View ArticleForum Post: Popup Editor: Display Functions
In the Grid Popup Editor, would it be possible to have the "Toggle Word Wrap" stay selected when moving between rows? The data that I am reviewing is extremely long and after moving to the next row, I...
View ArticleForum Post: RE: Popup Editor: Display Functions
The word wrap option not sticking would be a bug IMO. I'll log. The XML Pretty Print would be easy enough, but would need some thought. If you were in an editable data grid and used that it's going to...
View ArticleForum Post: RE: Popup Editor: Display Functions
Thanks for logging the word wrap. I understand how it could be seen as a bug, but some feature like this would be greatly beneficial. Correct, the data should be reformatted only for display purposes....
View ArticleForum Post: RE: Popup Editor: Display Functions
I think we could bypass the edit detection for the initial format, but then if the user makes an edit after that, now we're suddenly working with the formatted XML and that's what would get saved. Is...
View ArticleForum Post: Displaying the Library tab
Using Toad... Left hand side. I like to add a tab for displaying the schema librarys Thanks
View ArticleForum Post: Can I create a variable in TOAD/SQL to prompt for a date(s)?
Group, I'm using TOAD to query the Oracle database. My better expertise is in VB.net. I have very little SQL experience. My question: Can I create a variable in TOAD/SQL to prompt for a date(s)? Here...
View ArticleForum Post: Toad - re-visiting having it use a single connection
Hi, I've read over https://www.toadworld.com/products/toad-for-oracle/f/10/t/25412 and also https://support.quest.com/kb/96478 but this doesn't seem to take care of it for us. I am asking b/c we...
View ArticleForum Post: Re: [Code Tester for Oracle - Discussion Forum] Can I create a...
'&variable_name' i.e. '&date1' '&date2' should prompt for input. This has nothing to do with Toad as Toad us just an I.D.E. It has everything to do with Oracle sql, *sqlplus, PL/Sql....
View ArticleForum Post: Scheduling from Toad
Is it possible to schedule to have code run monthly in Toad?
View ArticleForum Post: RE: Re: [Code Tester for Oracle - Discussion Forum] Can I create...
I have typed this program but still not getting the execution........ DECLARE start_date DATE; end_date DATE; begin start_date := to_date('2017/05/16 09:00:09' , 'yyyy/mm/dd hh24:mi:ss'); end_date :=...
View ArticleForum Post: RE: Re: [Code Tester for Oracle - Discussion Forum] Can I create...
Not sure how your code snippit may fit into something else, but you can do what you are trying to do in regular sql. Put the format models for the dates directly in the select statement. See Below Just...
View ArticleForum Post: RE: Re: [Code Tester for Oracle - Discussion Forum] Can I create...
YES IT is working but ....i want to try while declaring this variable into start_date and end_date
View ArticleForum Post: TOAD for Oracle 11.5 on Windows 10 and tnsnames.ora with IFILE
Hello, For a customer we use TOAD for Oracle 11.5 on Windows 7. Now we want to create the package for Windows 10. The problem here is that the IFILE lines in tnsnames.ora are not detected anymore. How...
View ArticleForum Post: inconsistent formatting behavior
All, I'm currently on Toad 12.11.0.82. Within an IF statement, I'm doing two calls to a single routine (parms are different). Strange enough, the code gets formatted quite differently: if...
View ArticleForum Post: RE: Re: [Code Tester for Oracle - Discussion Forum] Can I create...
You don't have to do any of that. Write you SQL statement: SELECT * FROM UTV.TICK WHERE (TICK_DATE BETWEEN to_date(:start_date) AND to_date(:end_date)) ORDER BY TICK_DATE; When you will execute this...
View Article