Toad for Oracle very slow

HI,, we've toad 8 for oracle and our DB is 9i . The connection from toad to db is very slow . We've another test instance db g but the connection from toad is faster.
So what to check ???
Regards,,

HI,, we've toad 8 for oracle and our DB is 9i . The connection from toad to db is very slow . We've another test instance db g but the connection from toad is faster.
So what to check ???When you compare with two databases, Is the network connectivity Os resources are in same levels in two servers?
You having issues in connecting of Response time, or it hangs some time in SQLPLUS prompt?

Similar Messages

  • Toad for Oracle 10.1 on Windows Server 2008 SP2 64-bit

    Hello guys,
    I want to ask your opinion regarding an issue?
    I want to install the Toad for Oracle application on my machine
    (Windows Server 2008 Enterprise SP2 64-bit)
    I have already installed Oracle DB 11g R2 64-bit for Windows.
    I have tried to install Toad for Oracle version 10.1.1.8 making no use of any Oracle Client,
    but it displays an error "Oracle Client not found!"
    Now, I have read this article Oracle Home is not Valid on TOAD
    and it says
    >
    TOAD required 32 bit Oracle client on 64 bit windows server systems
    all you need is install Oracle 32 bit client, the toad will work.
    >
    I installed the 32 bit Oracle client, but now I'm getting
    Ora-12154 TNS: could not resolve the connect identifier specifiedAny advice?

    See the explanation here - Re: ORA-12154 could not resolve the connect indentifier specified
    Srini

  • How to check the row level security in TOAD for oracle

    Hi ,
    for ex, i have 2 types of users
    normal user and super user
    super user can see the group set (some column name) created by normal user
    but normal user can not see the set created by super user
    this set crestion aslso has 3 types "U','P',S'
    P & S can be viewed by even normal user
    but U should not
    so here we are having some row level security for the normal user .....
    So, in TOAD for oracle how to check that......
    Let me know if i'm not clear

    Like
    I'm the super user....
    And some records are inserted to a table by different users ('a' , 'b', etc....)
    So,if user 'a' logins then he can be able to see only the records inserted by 'a' only...
    how to see in TOAD where such type of scripts (filter conditions) are written.....

  • Toad for Oracle

    Hi,
    I have problem with Toad for Oracle (freeware version)
    I'm using Toad to get data from database which contains English and Korean words.
    Problem is that Toad does not view data in Korean correctly.
    Is look like this:
    http://images30.fotosik.pl/304/0a3018a0cadded78med.jpg
    But when I use PLSQL Developer everything is OK.
    Does anybody know why?
    My NLS_LANG is: KOREAN_KOREA.KO16MSWIN949
    a tried also:
    AMERICAN_AMERICA.AL32UTF8
    but the result is the same.
    Toad does not work properly.
    Regards,
    Nhan

    Here is what I got using SELECT * from NLS_SESSION_PARAMETERS;
    PARAMETER      VALUE
    NLS_LANGUAGE      AMERICAN
    NLS_TERRITORY      AMERICA
    NLS_CURRENCY      $
    NLS_ISO_CURRENCY      AMERICA
    NLS_NUMERIC_CHARACTERS      .,
    NLS_CALENDAR      GREGORIAN
    NLS_DATE_FORMAT      DD-MON-RR
    NLS_DATE_LANGUAGE      AMERICAN
    NLS_SORT     BINARY
    NLS_TIME_FORMAT      HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT      DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY      $
    NLS_COMP     BINARY
    NLS_LENGTH_SEMANTICS      BYTE
    NLS_NCHAR_CONV_EXCP      FALSE
    Edited by: user4418763 on Dec 12, 2008 10:19 AM

  • Export import - using TOAD FOR ORACLE  and ORACLE DATABASE 10G EXPRESS or s

    Hi all,
    Could you please kindly help me?
    I am using TOAD FOR ORACLE to export a table to flat file A. The tool just supports to distinguish fields by "spaces".
    And the web page of ORACLE DATABASE 10G EXPRESS to import the data from flat file A to another database. To load data to a table from a text file, the web page bases on "comma" to distinguish fields.
    So could you have any suggestion for me? I need to export data via TOAD FOR ORACLE. And then import it to another database by the home page of ORACLE DATABASE 10G EXPRESS or sqlplus.
    Thank you so much for your help!

    Dont use TOAD for exporting your data. Use PL/SQL. Below is the code given in Asktom.com that does what you want.
    create or replace function  dump_csv( p_query     in varchar2,
                                          p_separator in varchar2 default ',',
                                          p_dir       in varchar2 ,
                                          p_filename  in varchar2 )
    return number
    is
        l_output        utl_file.file_type;
        l_theCursor     integer default dbms_sql.open_cursor;
        l_columnValue   varchar2(2000);
        l_status        integer;
        l_colCnt        number default 0;
        l_separator     varchar2(10) default '';
        l_cnt           number default 0;
    begin
        l_output := utl_file.fopen( p_dir, p_filename, 'w' );
        dbms_sql.parse(  l_theCursor,  p_query, dbms_sql.native );
        for i in 1 .. 255 loop
            begin
                dbms_sql.define_column( l_theCursor, i, l_columnValue, 2000 );
                l_colCnt := i;
            exception
                when others then
                    if ( sqlcode = -1007 ) then exit;
                    else
                        raise;
                    end if;
            end;
        end loop;
        dbms_sql.define_column( l_theCursor, 1, l_columnValue, 2000 );
        l_status := dbms_sql.execute(l_theCursor);
        loop
            exit when ( dbms_sql.fetch_rows(l_theCursor) <= 0 );
            l_separator := '';
            for i in 1 .. l_colCnt loop
                dbms_sql.column_value( l_theCursor, i, l_columnValue );
                utl_file.put( l_output, l_separator || l_columnValue );
                l_separator := p_separator;
            end loop;
            utl_file.new_line( l_output );
            l_cnt := l_cnt+1;
        end loop;
        dbms_sql.close_cursor(l_theCursor);
        utl_file.fclose( l_output );
        return l_cnt;
    end dump_csv;
    /Here is the link to this thread in asktom.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:95212348059

  • Differences between TOAD for Oracle and Oracle SQL Developer?

    Does someone know the advantages and disadvantages of using TOAD for Oracle and Oracle SQL Developer?
    I work making reports with TOAD, but in a few days I will have to use the SQL Developer (because it´s free) unless I justify the necessity of using TOAD.
    Could some that used both compare them?
    Thanks,
    Facundo.

    Hello Facundo,
    since we are rolling out new client PCs we switch from Toad to SQL Developer. Therefore I'm doing some training for the "normal" users and our developers.
    Most users simply want to have access to the data in tables and views. For those there are 2 main issues:
    - Filters get lost when exiting table while sorting is still applied. Since there is no way to apply filtering before entering the data tab this can become a great performance issue because sorting is applied to many many rows. For views it is sometimes impossible to open the data tab.
    - Exporting date values to Excel needs some know how if you want to sort by this column in Excel, because the date is formatted as "Standard" meaning that the sorting is done as for a text column: 01.01.2009 is less than 02.01.2008. Here you have to use a workaround column with a formula (=1*<datecolumn>)
    The greatest Pro is the easy sharing of connections and reports by XML files.
    Our developers like the easy debugging in SQL Developer. Though they miss the feature that the source is compiled for debug automatically as in Toad. For this we have distributed a script that compiles any PL/SQL object for debugging.
    There are only some Toads installed for DBAs and for users that need access to tables protected by policies that require authentification by OS user since this information is not passed under every circumstance.
    Regards
    Marcus

  • Toad for Oracle 10.5 Schemas

    Hello,
    I am using Toad for Oracle 10.5 and I do not have Admin rights to any Schema Browsers. I have a few questions about copying one Schema to another Schema. I have DEV (development) and TST (test) environments where tables, triggers, packages, etc... are created and manipulated. Also, I am not sure if this is the right forum for this question but if this is not please point me in the right direction. If there are any links, threads, etc... that can assist me please provide them to me so I can review. Is there a way in Toad for Oracle to copy one Schema DEV to another schema TST? Are there any steps that can achieve this or is this only a Admin process. I am trying to implement this on my own instead of sending the task to the Admins within my department. Thanks for reading and taking the time to assist me with this.

    I clicked on the Database - Export - Data Pump Export and once I clicked the green arrow I do receive the Toad Message. 'Your license does not permit executing "Data Pump Export4.", etc...' So that means even if you had dba privilege it was not possible to use that feature.
    I did this yesterday and definitely thought that only certain programmers have rights to this from the error message. Every user/dba in your team who uses the toad for this feature(exp/imp) will face the same error what you came across.
    I found this on net(http://www.club-oracle.com/forums/export-import-table-using-toad-t1227/) :
    Data Pump Overview
    Note: This Toad feature is only available in the commercial version of Toad in either the Professional Edition or with the optional Quest DBA Module.
    thanks again for you assistance.You are welcome Charles.
    Edited by: Veeresh.S on Sep 14, 2012 10:08 PM

  • LDAP and TOAD for ORACLE

    Hi I am using toad for oracle 9.0 trial,
    I want to connect to my database from LDAP Server.
    Now this LDAP Descriptor list box does not populate anything. It is always empty.
    Is there anyone to use toad for oracle via an LDAP server. Thank you.
    Gökhan.

    Hi coffee,
    you can try this approach Error when testing database connection
    You can use basic connection if you don't get your tnsnames names listed.
    Philip

  • Using Toad for Oracle

    Hi All,
    I am using Oracle 10g ver. I am able to connect to this database server using SQLDeveloper.
    I have recently installed Toad.
    I have installed Oracle Client 10.2.0 to run Toad.
    And as I have read tnsnames.ora needs to be created in $ORACLE_HOME/network/admin.
    But i do not see any network/admin directory structure in the $ORACLE_HOME.
    I have manually created this structure and placed tnsnames.ora here.
    The entries are as follows:
    DUMMY_LIVE =
    (DESCRIPTION =
    (ADDRESS =
    (PROTOCOL = TCP)
    (Host = xxxx)
    (Port = 1521)
    (CONNECT_DATA = (SID = xxx)
    When I run Toad, the oracle home (D:\oracle\product\10.2.0\client_1) is shown as valid.
    But when I connect to this database, the error "ORA-12154:TNS: could not resolve the connect identifier specified" comes up.
    Can somebody please tell me where am I going wrong?
    Where exactly should tnsnames.ora be placed?
    Thanks in Advance,
    Sandhya

    There is a list box and button on the Toad connection screen for setting the default oracle home. You must make sure that is set properly. The button next to the list box will open a little registry editor like interface to show you what homes are there and which one you have selected by default. Make sure you have chosen the correct home (the one you though it was supposed to use) - and maybe check the box back on the connection screen that say to make this the defailt for all future connections.

  • Screen refresh for participants very slow on beehive web conference

    When I am sharing my desktop with participant on Beehive web conference, the screen refresh is very slow for the participants. It almost takes 1 minute for the screen to refresh on the participants screen. I am on Windows 7.
    Appreciate your help.
    Thanks in advance.

    Hi,
    Given we have very little control over the network bandwidth of the end user it is difficult to determine what the problem could be - normally the refresh is reasonably fast but if there are a lot of users or a restricted bandwidth it can show down a bit.
    One trick to aid the display is to not move the mouse around the screen - pointing to the entities on the page will increase the amount of information being sent. If you can click one and wait for the screen to be rendered at the other end before continuing it may be a bit quicker.
    Phil

  • How to identify reasons for a very slow transaction?

    Hi All,
    If I see that a SAP standard transaction is very slow for every user, what are the areas that I will have to look to get it resolved.
    All other transactions work quick and only one transaction is very sluggish. How to find the root cause and resolve this?
    Thanks
    Vijay

    Hi,
    I have used Tx Code SGEN to reduce the time to open every Transaction. As opening every transaction require the compilation of some programs, reports etc, which takes a lot of time.
    This transaction S creen GEN erator,  will load(compiled version of ) all the frequently used transactions into the database. Database size will be increased by 2 GB or more.
    Refer this link for more details :
    http://help.sap.com/saphelp_nw70/helpdata/EN/28/52583c65399965e10000000a114084/frameset.htm
    I hope this will help you.
    Best Regards,
    Pradeep Bishnoi
    Edited by: Pradeep Bishnoi on Dec 31, 2008 1:32 PM

  • Unable to connect Toad for Oracle 9.6 to oracle 10g in a windows 7 64-bit

    Hey friends I am Unable to connect toad with oracle 10 in a windows 7 64 bit environment
    Please Help
    Any advice will be appreciated

    read this one :
    Toad ORA-12154: TNS:could not resolve the connect identifier specified

  • How to execute the packaged procedure(having out param) in TOAD for Oracle

    Hi.
    Could you help me
    How to execute the packaged procedure having out parameters in TOAD for Oralce..
    Thanks..

    Use anonymous PL/SQL block to execute it.
    Example.
    DECLARE
      <out variable name> <out variable data type>;
    BEGIN
      <package name>.<procedure name>(<out variable name>);
    END;

  • Performance over DG from mysql to oracle very slow for inserts

    configured het services over gateway from oracle 11.2.0.4 to mysql 5.6
    Have a table I want to pull over into oracle.  1000 rows.
    On mysql : create view vw_mysql_t1 as select columns from my_mysql_table.    
    On Oracle:  create view vw_ora as select columns from  vw_mysql_t1@mysql_link
    On oracle: select * from vw_ora data returns data in 3-4 seconds. 
    however, try an insert to get the data over
         insert into a_table_on_oracle
             (select * from vw_ora)
    takes 11-12 minutes.     
    create table as or insert into same performance.  Tried just inserting 1 row  and same performance 11-12 minutes.  any ideas?

    cant seem to get the trace file to generate.  any ideas, I have the config as below, the gateway is working, I can select data no problem from table@dcv   , just performance is terrible
    logfile not in $ORACLE_HOME/hs/log
    or
    /tmp
    this is my tns
    dcv =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = tcp)(HOST = <IP of server>)(PORT = 1521))
        (CONNECT_DATA =
          (SID = dcv)
        (HS = OK)
    this is my init file
    # HS init parameters
    HS_FDS_CONNECT_INFO=dcv
    HS_FDS_TRACE_LEVEL=255
    HS_FDS_SHAREABLE_NAME = /usr/lib64/libmyodbc5a.so
    HS_RPC_FETCH_SIZE=50000               
    HS_ROWID_CACHE_SIZE=10000
    #HS_LONG_PIECE_TRANSFER_SIZE=1024
    HS_LONG_PIECE_TRANSFER_SIZE=65536
    HS_LANGUAGE=AMERICAN_AMERICA.WE8ISO8859P15    ## The Oracle RDBMS is using a Unicode characterset [ID 756186.1]
    HS_FDS_FETCH_ROWS=1                           ## This is select int datatype
    HS_FDS_SQLLEN_INTERPRETATION=32               ## This is to select NULL values via DB Link [ID 554409.1]
    # ODBC specific environment variables
    set ODBCINI=/etc/odbc.ini
    more /etc/odbc.ini
    [dcv]
    Driver       = /usr/lib64/libmyodbc5a.so
    SERVER       = <IP of mysql server>
    PORT         = 3306
    USER         = un
    Password     = pw
    Database     = dcv
    OPTION       = 3
    CHARSET      = latin1
    [ODBC]
    TRACE        = ON     # also tried 0 and 1 and DEBUG and USER
    TraceFile    = /tmp/odbc.trace
    10:11:19 SQL> select count(*) from "vw_t1"@dcv;
      COUNT(*)
         24794
    Elapsed: 00:00:00.23
    10:11:45 SQL>
    10:11:57 SQL>
    10:11:57 SQL>
    10:11:57 SQL>
    10:11:57 SQL>
    10:11:58 SQL> create table backup_data.delete_me as
    10:11:59   2  select   * from
    10:11:59   3        "vw_t1"@dcv;
    Table created.
    Elapsed: 00:09:47.07
    10:21:49 SQL>
    Theres around 130 columns, varchars, numerics and floats.  Is there a conversion going on that would take that long?

  • Needed: Optimization tips from a Pro for a very slow internet connection

    I am on a remote base in Iraq with about 150 people sharing a satellite connection with a 2MB pipe. It is slow. There is nothing I can do about the volume of people, QoS from the provider, and there is no competition.
    Given that, I would like to know what I can tune on my machine to make the most of a slow, frustrating experience.
    I have noticed although I have browser caching turned on, it appears my browsers (safari, Omni, FF) don't try t take advantage of it. They still spend 10 minutes trying to get in touch with the website and start from scratch. Is there a browser that visits it's cache first and then looks for changes? Are there settings I am overlooking that can force the browser to load from cache first and then look for differences? Are there command line parameters or configuration files I can edit and modify to make a difference for the better?
    I also have a buddy running linux and he installed a DNS caching mechanism that reduced his repeat lookups from 5 seconds to 0. He also installed another website data caching mechanism that truly stores the pages of websites he frequently visits. His experience was enhanced tremendously.
    What do you recommend I do from the command line and within my browsers to maximize facilities like caching to make a slow situation a little better?
    I apprecite your time and advice
    Dan
    US Army (AIRBORNE)
    Mesopotamia, Iraq

    Hi Sahar,
    1) To post your adsl line statistics you can be connected to the home hub or router via wireless.
    Below is some information on how to obtain your adsl line stats. You can also see this link here ADSL Statistics
    ADSL Line Statistic Help:
     If you have a BT Home Hub like the one below...
    Then:
     1) Go to http://192.168.1.254 or http://bthomehub.home
     2) click Settings
     3) Click Advanced Settings
     4) Click Broadband
     5) Click Connection or sometimes called ADSL (see picture Below)
    The direct Address is http://bthomehub.home/index.cgi?active_page=9116 (for bthomehub3.A firmware ending in 1.3)
    or http://bthomehub.home/index.cgi?active_page=9118 (for bthomehub3.A firmware ending in 94.1.11)
    You will need to copy and past all the adsl line statistics ( Including HEC, CRC and FEC errors). You may need to click " More Details"
    There are more useful links on Keith's website here: If you have an ADSL connection, please select this link
    2) To run and post the results of a BT Wholesale Speed Test it is recommended to do this with a wired ethernet connection, as a WiFi connection can be effected by other electronic devices in your property.
    It is also best to have a landline phone of some sort, even if you don't use it, at is is a very handy tool to test your landline for any noise. 
    As any noise on your landline can dramatically reduce your broadband performance.
    You can get a cheap corded landline phone from most electronic stores or online. 
    They are also good in emergencies when there is a power cut as a corded landline phone will still work.
    Hope that helps,
    Cheers
    I'm no expert, so please correct me if I'm wrong

Maybe you are looking for

  • Icloud calendar not on correct day when in Week or Month view

    Hi icloud calendar highlights a day behind, I almost forgot to pay a bill due as calendar was showing yesterdays date highlighted when viewed in Week or Month view! and assumed the bill was due tomorrow but of course it's due today! It's correct when

  • Tab key to indent

    Is it possible to make the Tab key indent in a text box, instead of moving to the next item. I was thinking it would be possible using a customer format script or a custome keystroke script. Thanks for any help.

  • ID CS6 Kindle Plugin Export Error

    I'm using InDesign 6 v 8.0.1 on a Mac Pro running OS X 10.7.5 Lion. After giving up on the Kindle Plugin for InDesign last year -- I couldn't install it, like others -- I finally managed to get the plugin to install today. I fired up one of my simple

  • Intaract with oid and bring the all groups resides in oid through ldap

    Hi, i would like to intaract with oid and bring the all groups which were resides in oracle intrnet directory through ldap. can u please give me the procedure that i can follow or else suggest me a documentation regarding this . regards, srinivas

  • Automatically delete row data on interactive report

    Hi All, I would like to know it's possible to automatically delete row data on interactive report when the check box is checked. I'm appreciating if you all can share your opinion or solution. Thanks a lot in advance! Best regards, Liz