Forum Post: RE: Custom SQL select destroyed when filter name edited
Sorry Larry I went all day (until now) w/o seeing your last comment about this being in the schema browser. Can you send me the DDL for your table so I can try to reproduce this? Send to...
View ArticleForum Post: Dynamic SQL Results to Export Dataset
I suspect this info is out there somewhere, but I'm afraid I'm just not finding it. What I am trying to do is the following: 1) Run a script using dynamic SQL to generate another SQL script 2) I then...
View ArticleForum Post: RE: Which index local or global to choose for attached scenario
This table and index creation already done successfully. I just given the structure from view sql of this table.
View ArticleForum Post: RE: Which index local or global to choose for attached scenario
Ok noted. thanks. Agreed. Can you see the attachment initially i posted? please compare the explain plans and advice which index best suitable for the query given in the attachment. thanks
View ArticleForum Post: RE: Which index local or global to choose for attached scenario
Please read: http://www.toadworld.com/products/toad-for-oracle/b/weblog/archive/2013/10/04/toad-explain-plan-practices-part-i
View ArticleForum Post: RE: Dynamic SQL Results to Export Dataset
Hey Steve, I don't think there is a way to dynamically load a file into export dataset as the query to be run, but I do have another idea. Can you make a view out of it, then just have fixed text...
View ArticleForum Post: RE: Dynamic SQL Results to Export Dataset
Could you possibly create a function that returns the dynamic SQL string that you then retrieve into a text file to manipulate? I like John's view idea (we do that in a number of our scripts), but it...
View ArticleForum Post: RE: ORA-01031 occurs when connecting to Oracle 12c with Toad 11.6
I'm using TOAD 12.10.0.30 and get the same error when connecting to Oracle 11.2.0.4-Databases. But what i've found out: If I'm trying to connect to a RAC-database with 2 instances, i'll get the...
View ArticleForum Post: RE: ORA-01031 occurs when connecting to Oracle 12c with Toad 11.6
> If I should test something else, just let me know. Yes. Please post the entire Spool SQL output (from before you log on until the error pops up in Toad) so I can get some context around what's...
View ArticleForum Post: RE: ORA-01031 occurs when connecting to Oracle 12c with Toad 11.6
Ok, I think this should be fixed for the next beta - 12.11.0.18. Those of you who had a problem in Toad 12.10, please try this beta when it comes out (hopefully this week) and let me know if the...
View ArticleForum Post: RE: Custom SQL select destroyed when filter name edited
Just following up online incase anyone besides Larry is watching this thread. It should be fixed for next beta (thanks to Michael for the assist). Larry, let me if you still have any problems.
View ArticleForum Post: Re: [Toad for Oracle - Discussion Forum] new user
Hi: Thanks for your message. I will be out of the office for vacation, returning Tuesday, January 3, 2017. I will be checking mail periodically. Please forward a message to cisdba@interact.ccsd.net if...
View ArticleForum Post: RE: Object Compare Link Option not working
Hello John, I appreciate your attention to this issue. Real life scenario 1: A developer makes a code change in development and validates that it is working. When Approved, the developer makes a...
View ArticleForum Post: RE: Object Compare Link Option not working
Here is the second function to compare to.
View ArticleForum Post: RE: Which index local or global to choose for attached scenario
ok noted. thanks. Just let me know which is best among the give below. SQL query when executed given below results. select pzPVStream from pc_link_attachment where pxLinkedRefTo like...
View ArticleForum Post: Re: [Toad for Oracle - Discussion Forum] new user
Hi: Thanks for your message. I will be out of the office for vacation, returning Tuesday, January 3, 2017. I will be checking mail periodically. Please forward a message to cisdba@interact.ccsd.net if...
View ArticleForum Post: RE: Dynamic SQL Results to Export Dataset
The first script I run contains a UNION ALL to a number of databases across database links. So my cleanup script just replaces the last line (UNION ALL) with a semi-colon. Perhaps you found another way...
View ArticleForum Post: RE: Dynamic SQL Results to Export Dataset
If you're writing pl/sql or even sql to create it, just append that to the end of your string. When I'm doing something like this, I would do something like put the union all at the beginning of the...
View ArticleForum Post: RE: Dynamic SQL Results to Export Dataset
My usual trick for this type of query to create SQL is to use the ROW_NUMBER analytic in a CASE statement to prevent the extra trailing(or leading) text; SELECT 'Select database, node "Server", mkid...
View Article