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

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.....

  • 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.

  • 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?

  • 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;

  • TOAD for Oracle Lite?

    Is there a version of Toad that works with Oracle Lite?
    Thanks for any replies.

    Unfortuneatly no. I have tried SQL Developer but the program didn't seem to find the drivers. I know the 9.0.4 version of JDev would successfully connect to the database but the newer version compains about "No Suitable Driver."

  • Sql loader Wizard  in Toad For Oracle

    when i use oracle xe i can load data using toad with sql loader wizard.
    But in xe i met some problems and i must to set up oracle 10 g db server and now when i'm using toad, nothing happened and didnt any error in sql loader wizard.
    Is it about unicode characters. When i set up oracle,i choosed WE8ISO8859P9 character set and changed regedit nls_lang value is TURKISH_TURKEY.WE8ISO8859P9.Do you think what can be the error

    i solved the problem using command window and i can load data into table
    tenks all
    c: \sqlldr.exe kdevre@orcl control= C:\Users\TT\Desktop\loaderlar\kd_abone.ctl
    but i still understand why i didnt accomplish with toad

  • TOAD for Oracle 11g ?

    Hi !
    Can anybody suggest me that, is there any TOAD versions (free versions) which supports Oracle 11g Database ?
    Thanks in advance.
    Aji

    TOAD, to my knowledge, was never free. It always has a license associated with, which needs to be purchased. There are some trial editions available but they will cease to function after trial period.
    Have you tried using SQL developer instead?

  • I am not able to install the toad version for Oracle 11g

    Hi,
    1] I am not able to install the "Toad for Oracle 11.5 Freeware" it's expire in Oct-2013.Now i am trying to download the new version but the same s/w downloaded and at the time installation it's shown me that this s/w is expire and install new version
    2] Also installed "Toad for Oracle Version 9.0" vesrion it's installed Successfully but when i am trying to start the toad it's shown msg as "Oracle Instant client is not installed.
    3] In "Toad for Oracle Version 9.0" can i exceute the queryies from Oracle 11g database.
    Kindly suggest to way out,
    Regards,
    Sachin

    user7197586 wrote:
    Hi
    Thanks for update.
    If i want to use the Toad,can you please suggest
    Regards,
    Sachin
    Re-asking won't help you to get help, especially when it's for non-Oracle product.
    You've been advised to look at Toad side. Please go ahead.
    -- locking thread --
    Nicolas (moderator).

Maybe you are looking for

  • Desktop Mgr 5 not compatible w/ BB OS 6?

    Hello, Wondering if there's known issue with BB's running OS 6 being incompatible with Desktop Mgr v. 5 (5.0.0.11). We've run into this on multiple computers running Desktop Mgr v. 5, where when a BB running OS 6 is connected, the Desktop Mgr crashes

  • What I would like to see in Iphoto

    I am not sure if this has been brought up, but I have a simple thing I would love to see happen in Iphoto. When it comes Iphoto's automatic organization of photos into directories on the hard drive, I would love it if I could define when I start a da

  • Change order quantity in sales order

    Hi, I have a sales order created. Now i want to change the Order qty depending on certain conditions through  an ABAP Program. Can any one tell me how to change it? I tried bapi SD_SALESDOCUMENT_CHANGE ..but couldn't succeed. I tried passing field to

  • File history not working

    file history doesn't seem to be working at all on my pc. I set it and told it to run than looked at where I had set it to save to, Empty. no matter how many times I run it. On my friends system it work, but intermittently. Tried updating to 8.1 but p

  • I label photos in an album and then Photostream eliminated the label

    I label pictures in iPhoto but they are stripped off when the pictures are sent to Photostream. Is there anything I can do to retain my hard work?