You have no oracle clients installed

Hi Brad,

Thank for your message. I have TOAD 9.0 installed. Maybe I need to install the patch.

Thank you again.

Sincerely,

Andrew.

Hi and thanks for your post. I checked the bin directory in the Oracle home is definitely in the PATH variable. I do not however see anything like a SQLPATH variable. When toad starts up it says that there are no oracle clients installed within an error dialog.

Thank you again.

Sincerely,

Andrew.

Hi and thanks for your message. When I click on this button all I get is an error dialog with the original error I got saying: “You do not have any Oracle homes installed!” There is no useful information displayed at all especially no debugging information.

Thanks for your suggestion.

I just wanted to emphasize that complete server installs always include
client software, be it on Unix or on Windows. It is no problem having
them in the same OH.
But perhaps you're right, drifting off topic a bit too much. :slight_smile:

Damir Vadas schreef:

Peter,

I think the whole story starts with problems with Toad and this is
strictly connected with windows environment. I agree with you but please
let us focus on the topis of this forum....a

Hope you do understand me.

Damir Vadas
http://damir-vadas.blogspot.com

Hi;

How to filter the SQL requests into a AWR SQL report ? For example show only the requests where execution time > 10s, etc…

Regards

Sure, no problem.

When I installed Oracle, I chose to put down the server and the connectivity
software, all in one oracle BASE directory.

This included the database server piece, and the SQL*NET/OCI.DLL piece.

I didn’t have to run the installer twice…
image001.png

That’s what I’ve been trying to say J

Obviously you wouldn’t want to install a 2nd ORACLE_HOME (client) into an
existing HOME.

Have you looked at the underlying data model for the AWR tables?

Hi;

How to filter the SQL requests into a AWR SQL report ? For example show only the
requests where execution time > 10s, etc…

Regards

Then I’m not sure you’re going to be able to do this just by
pointing and clicking in Toad or OEM Grid.

We have a browser, but it’s more suited for picking specific metrics for a
point in time. If you want to filter, you have to write your own query.

I’m not even sure the execution time is logged in AWR. Wait events
are…

just a suggestion: sometimes in Control Panel / Environment Variables. There is
a PATH in ‘user variables’ that can override the ‘system variables’. I had a
software install include a ‘user variables’ PATH statement.

question … does SQLPLUS work?

Ian

I’m just glad you saw my post :wink:

9.0.0 is the original release which had this bug. The bug is fixed in 9.0.1.

“SQLPATH” has nothing with your problems.

With SQLPATH you define default directory for scripts. I.e. when you place:
SQL>@run_me

then if “run_me.sql” is not in directory where sqlplus has been started, Oracle looks for all directories defined with SQLPLATH.

Hope this helps,
Damir Vadas

There’s no way to do that in Toad right now.

Here is a query that you can use to find some queries running longer than 10
seconds. Then just put that SQL ID into the field in the AWR SQL report.

select stat . snap_id , stat . sql_id , stat . module , stat . action , stat .
parsing_schema_name ,

   stat . elapsed_time_delta / 1000000 / stat . executions_delta

avg_time_in_seconds ,

   text . sql_text

from dba_hist_sqlstat stat , dba_hist_sqltext text

where stat . executions_total > 0

and stat . elapsed_time_delta /* microseconds */ / 1000000 / stat .
executions_delta > 10

and stat . dbid = text . dbid

and stat . sql_id = text . sql_id

select stat . snap_id , stat . sql_id , stat . module , stat . action , stat .
parsing_schema_name ,

stat . elapsed_time_delta / 1000000 / stat . executions_delta
avg_time_in_seconds ,

text . sql_text

from dba_hist_sqlstat stat , dba_hist_sqltext text

where stat . executions_total > 0

and stat . elapsed_time_delta /* microseconds */ / 1000000 / stat .
executions_delta > 10

and stat . dbid = text . dbid

and stat . sql_id = text . sql_id

There is a separate forum for Toad for MySQL, but for performance advice, you
can download the free version of Spotlight on MySQL.

You might probably fixed your problem already. But I will post this anyway, it might be useful for someone else too.
I just got the same problem. Actually my Toad has been working fine for a long time
and suddenly it stoped working with the same message. And I found out that it conflicts with program Fence by Stardock. After I uninstall Fence, the message is gone. And it works fine.

Patchanee.

I have the following configurations and I am facing the “You have no Oracle Clients ?Installed” and the “You do not have any Oralce Homes installed” Error:

Windows 7 Professional 64 Bit
Oracle 10g Client
Toad Version 9.6.1.1

Please guide me.

Toad needs the 32 bit client.