How do I import an excel file into TOAD? I am on version 12.10.0.30. Thanks.
import excel file
Automation Designer - Execute Script issues
Hi,
So in my scenario i am comparing about 80 schemas to 1 "Gold" schema, which creates a diff script and then i want to execute all of those scripts.
I've created an app in automation designer that i run from command line that runs the comparison, creates the diff scripts, then it gets to the execute script step and it fails after running the first script because of errors.
When i run this in toad it prompts after every script due to errors even though in the Script Error Options i don't have the "Fail Action on Script Error" box checked.
I've also tried checking the box along with the "Except if error is in the ignored list" box and adding all of the errors to the list and checking those and i get the same result.
I'm using Toad for Oracle Xpert version 12.10.0.30.
Is this a known bug?
Thanks,
Scott
Toad for Oracle 11 - Unable to move/resize dialog boxes
When I am opening/saving files I am unable to resize/move/drag around the Open/Save/Save As dialog box. Where is the setting located to allow this? Thanks.
WITH statement error on execute package body
I am using Toad for Oracle Base tool , registered copy version 10.1.1.8.
I have a situation where several records should be generated and inserted in another table, but the number of generated records is depending on a property witch has different values for different records.
For that I have developed a statement like :
INSERT INTO TableFinal
(
fa,
fb,
fc)
WITH dataTab
(f1, f2, r) AS -- here points the error
(SELECT f1, f2, 1 as r
FROM Table1
WHERE condition1
UNION ALL
SELECT f1, f2, r + 1
FROM dataTab
WHERE r < f2) -- the dataTab generates r records , depending on the property f2 of record in Table1
SELECT
tb.f1,
ta.r,
tb.fx
FROM dataTab ta
join Table1 tb
ON ta.f1 = tb.f1
ORDER BY ta.r;
witch is part of a package body.
The package body is ok when build outside Toad example Oracle SQL Developer tool or PL/SQL Developer tool. Even in toad the package can be run but does not compile.
Error shown is 'ERROR line 12, col 7, ending_line 12, ending_col 7, Found '(', Expecting: AS' witch points to the with..... line of the statement
Tablespace DDL
Hi Team
I am very fond of TOAD and want to see how toad is generating Tablespace DDL
i tried to use SQL Tracker to see the script of Tablespace but i couldnt get the script that TOAD is using to generate the DDL
I tried DBMS_METADATA but its not giving me the correct way, where as TOAD is providing the correct way.
Can some one help me to get the Correct SCRIPT to pull the Tablespace DDL how toad is pulling the same way
Appreciate it.
Wip process interface api takes too much time in R12.2.5 instance
Toad 12.10.0.30 Automation Designer
removing objects from Team Coding
Add Login Record - TNS Database dropdown blank
We are using Toad for Oracle 12.9.0.71. Our TNS Names are setup correctly, however when going to add a login record the TNS Database dropdown is blank. This makes it hard to easily find a database name. To make this a little more interesting, on the main screen for listing all my connections, the TNS Database dropdown does correctly show all the database names. And once I select that dropdown, if I go into the Add Login Record screen, the TNS Database dropdown now has values. So I have a workaround to enable this, but this seems like a really odd way for this to behave. Is there any kind of patch or something that resolves this behavior?
Toad crash 64/32 bit issue
Toad & native tools
we installed Toad DBA suite for oracle latest version & when try to connect appear error can't initialize
then we add TNS_ADMIN in environment variable , toad working well but we can't connect within oracle native tools
when we removes TNS_ADMIN native tools working well but toad not working
Can help me to solve this issue
Toadworld Digest emails
Hi,
I dont know where to submit this but I have my Toadworld email settings all disabled and I keep receiving the email Digest.
Please tell me how to stop it or remove this account.
Thank you.
LF
Unable to connect to database
Bug in recognizing out binds in SQL execution
Hi all,
Toad 12.11.0.82 beta and last Toad 12.10, all x64 on Oracle 11.2.0.3 x64
Toad cannot run query of type:
select count(S.SUBSCRIBER_NO) into :b0:b1 from
Problem is ":b0:b1" which toad see as :b0" and error is:
ORA-01036: illegal variable name/number
Brg
Damir
db_link
how can i set timeout option in toad?
Trace File Browser Explanation
I have been tasked to create an Intro to Oracle Tracing using the Trace File Browser within Toad. I've search all over the internet trying to find a guide or some sort of tutorial that can explain the tabs on the Trace File Browser for 12.10. Is there any one who can explain/describe what each of those tabs suppose to display or list?? For example, how can one explain what kind of information/data is on the Raw Data tab or the Waits by Object tab.
Clipboard issues in TOAD Editor
TOAD v12.10.0.30 - Windows
Keyboard based Clipboard (Ctrl-X, C, V) operations in the TOAD editor seem intermittent. Sometimes it works often it doesn't. A similar symptom is seen with Shift based operations, such as capitalising characters. Only TOAD shows this issue. Other editor applications don't. I've downloaded a keyboard control code monitoring application and there are no issues with my keyboard. This is a TOAD issue.
two schema snapshots and need to log in to compare?
Toad Formatter Bug - 12.10.0.30
There appears to be a bug in the Toad Formatter when using the ListAgg() function within a Pivot. The formatter does not recognise that "Within Group" is valid and so fails with syntax check. This can be demonstrated with this simple query.
Select * From ( Select 'Cheese' a, Level b From Dual Connect By Level <= 5) Pivot (Listagg (b) within group (order by 1) for a in ('Cheese'));