Driver? or Drive? Did you take a close look at your output file name? Did a drive get unmapped or something? What if you change it to c:\test.mdb?
RE: Export data
RE: Export data
Export data
RE: Materialized view creation with Toad wizard
It's a freeware limitation. The message when the Create MV window opens should explain that more clearly. I'll correct it. Thanks.
RE: Materialized view creation with Toad wizard
Right, no message about it appears, only a message about partitioning.
Thank you very much for your reply and your attention,
Steve
Materialized view creation with Toad wizard
Hallo, I'm using Toad Freeware 12.10, and when I create a new materialized view from Schema Browser (Create button) the wizard window appears with the Ok Button disabled.
This button remains disabled even if I write the view name and I compile the Query tab with the correct query parsing done.
So actually I can create a mat.view only with a ddl script. I DON'T have the same problem with creation of a normal view or a table, the Ok button appears enabled with the wizard window.
Creation of a mat.view with a ddl script completes normally without any kind of errors.
I wait for your feedbacks please.
Thanks to all,
Steve
RE: Code Insight pick list in Toad 12.10.0.30
I was using TOAD for ORACLE 12.7.0.121 and I just switched to a new laptop so I downloaded the latest version of TOAD 12.10.0.30 and setup everything.
I can do the Control-t to get my list of tables to show up but when I add an alias and then do alias dot nothing comes up.
I have restarted toad multiple times but nothing helps. I found this post and thought I would see if there is anything new about this issue? If not I will try to download an old version and see if it works okay.
Thank you
Code Insight pick list in Toad 12.10.0.30
I'm using Toad for Oracle EBS, Previous version 12.1 is much quicker in displaying the table list and its associated columns, but in 12.10 there is a delay in the drop down list to show the tables and columns. I exported Application Data directory folder from 12.1 and imported to 12.10 to keep my Toad options as is, but still the results are same.
In 12.10
under toad insight objects; I selected (synonyms,tables,users and views) only.
Under Toad insight group box ; I selected Enable Code Insight Pick list, Cache code insight results, Show object types as text in pick list and delay popups as 50 milliseconds.
I heavily rely on toad for my day to day development due to slow code insight response I had to switch back to my older version. Any help is highly appreciated.
Thank you!
RE: ADDM/AWR Reports
That window doesn't have any direct connection to the Automation designer, but you could probably make it happen with the other actions.
It's Oracle that generates those reports, not Toad. We just send the command to Oracle and then pull the result.
So, for the AWR Report, for example, if I turn on Spool SQL when the report is generated, I see this output:
Select *
from table(dbms_workload_repository.awr_report_text(
2877469868, -- DBID (Not going to change)
1, -- Insatance ID (Not going to change)
2818, -- Starting snapshot (will change)
2973, -- Ending snapshot (will change)
0)); -- Options (not going to change)
So if you came up with a view where you could select the starting and ending snapshots that you want, you could change the above select statement to get those values from your view, and then put the select statement in an "Export Dataset" action and export to a text file, and put that in the automation designer.
ADDM/AWR Reports
RE: Stop sending me emails!
There are a few different problems with Toad World e-mail subscriptions we are looking into.
One problem that should be fixed now is how the link in the automated e-mails you get when subscribed for each forum post behave.
If you click the link at the end of the subscription e-mail from a forum you no longer want to subscribe to that should behave properly now (e.g. "Or Unsubscribe from Toad for Oracle Forum notifications altogether."). It will now launch the Toad World forum page and display a banner informing you that you are no longer subscribed, and the link on the right of that forum web page (Email Subscribe to Forum / Email Unsubscribe to Forum) will be updated as expected.
Sorry this wasn't behaving as it should have.
Regards,
- Nate Gaffaney, Quest UX team
Stop sending me emails!
I'm permanently getting irritating emails, despite I've turned it off in my account setting. Could you stop it!
RE: DBA set Database Session Limit to One
If you go to Options -> Transactions and set:
- Execute queries in threads (Unchecked)
- Execute scripts in Toad session (checked)
- Session for Explain Plan (Main Toad Session)
and then go to Options -> Display, and uncheck everything under "Object Name highlighting"
....then for the most part, Toad will only create one session. But some of those options are nice to have, so if you want them checked, then there's what you need extra sessions for.
One exception would be debugging. We have to create a separate session when you debug code. And the Database Health Check creates its own session if you use it. There might be a few other things that I'm not thinking of at the moment.
Limiting to a few sessions would probably be a lot easier on the developers, but still give the DBA a little peace of mind.
DBA set Database Session Limit to One
I am looking for verbiage to help our DBA understand the level of impact to our Toad users because he has set the Session Limits to One per user. While it is understandable he made this decision in order to secure the database. We need to make him understand how it has impacted the developers and analysts who use the Toad tool. So, I'm hoping someone with extensive knowledge of Toad can describe that impact in terms easy to understand.
Thanks in advance!!
RE: Getting a "There is not enough storage to run this request" while running a report in TOAD.
This error has to do with graphics You said "report" but I want to clarify since people use that word for different things - are you talking about Toad's Report Manager or something else?
Getting a "There is not enough storage to run this request" while running a report in TOAD.
Oracle 11 g
Linux.
Running a large report in TOAD, on Windows. It gets about1.2 Mil records and gives me a message that it cannot complete the request.
"There is not enough Storage to complete the Request"
Is TOAD using local storage to process records? On the client PC?
Or is it the storage on the server?
If it using space on the server which storage space?
Thank you
RE: Team Coding and TFS Work Item Link Issue
Hi Aleksandr,
This is usually an issue in how Team Foundation Server is configured within Toad -- especially if you're using the "Alternative URL" field in the Advanced tab. Can you send me either a private message on ToadlWorld or a direct message offline with screenshots of the General and Advanced tabs of your TFS configuration window? That would help in tracking this issue down.
Thanks!
-John
Team Coding and TFS Work Item Link Issue
Hi!
We are trying to sync Toad for Oracle with TFS 2015. Source control (TFVC) works fine but we can not add work item link.
We got the error: "11:01:09 Error: Failed to initialize Work Item store for URI: https://myserver:443/tfs/MyCollection : Failed to intiatialize Team Foundation Server URL in TFSWorkItemLin.dll"
RE: How to get Script to work?
I'm not following, so this is best guess. Apologies if I'm wrong.
I think you want to 'add' the EAC and the ACTDES together as a string?
Select
Some stuff here... ,
substr(j.attribute3,1,6) || g.segment3 || ' - ' || substr(t.description,0,50) as EACTDESC ,
Other stuff here ...
Where ... ;
HTH
Cheers,
Norm. [TeamT]