Forms 6i - Oracle Net8 Easy Config Problem in Pentium4 Machine

Hello to All:
I've installed the software successfully, but I couldn't open the Oracle Net8 Easy Config in Win. 2000 and Pentium 4 machine. It gave an error message "jre.exe has generated errors and will be closed by window. You will need to restart the program". I restarted the machine, but it's still gave the same error. I also tried to add code in tnsnames.ora, it didn't help either.
I need some help please,
Thanks in advance,
TD

You can modify script file "..\orant\NET80\ADMIN\tnsnames.ora"
LOCAL.WORLD =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = DB Server name)(PORT = 1521))
(CONNECT_DATA = (SID = ORCL))
HAFEEZ

Similar Messages

  • Oracle net8 easy config Problem

    i am not able configure Oracle net8 easy config in oracle forms & Reports.When i click the Oracle net8 easy config shortcut,then the window is not shown .After that there is no action .i am using P4 1.7GHz with 128DDR RAM.
    How can i retrive this problem.
    Thanks
    Cyril

    You can modify script file "..\orant\NET80\ADMIN\tnsnames.ora"
    LOCAL.WORLD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = DB Server name)(PORT = 1521))
    (CONNECT_DATA = (SID = ORCL))
    HAFEEZ

  • Problem in Oracle net8 easy config. URGENT

    Dear All,
    I need your favour, actually i instatlled Forms6i on windows XP it is installed successfully and every component(Forms, Reports) are opening without any problem. But whne i am going to configure my Net Services through Oracle Net8 Easy config it is giving close illegal operation,
    Note: i do not have any oracle product installed on my m/c except forms6i.
    Please send me some solution as early as possible.
    Thanx a Lot
    Krishna

    Windows XP is not yet a certified platform.
    That said, why not modify your tnsnames.ora file manually using a text editor.
    Regards,
    Robin Zimmermann
    Forms Product Management.

  • Oracle Net8 Easy Config

    Hi all,
    i installed 8i with W/in2K on p4 and it's run well.
    i installed also forms 6i and when i tried to run Oracle Net8 Easy Config to configure the connection it does not work.
    So, Pls help me to be able to run it and configure the connection.
    Best Regards.
    hany

    use this method to create ur connect string
    edit the tnsname.ora. u can find this file in drive:\oracle81\network\admin directory
    copy this code bellow code with respective changes
    ORCL=
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = name of the hostmachine)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = database sid)
    here orcl is a connect string name
    host is the name of ur host or ip address of ur host
    service_name is ur database sid
    save the file
    use orcl as connect string
    regards
    babjee

  • Easy net8 Config Problem in Pentium4  Machine

    I am using D2K 6i on P4.I am not able to configure net8 easy config.when i click that option there is no action.
    So that i amnot able to server database.
    any Ideas?
    Cyril

    You can modify script file "..\orant\NET80\ADMIN\tnsnames.ora"
    LOCAL.WORLD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = DB Server name)(PORT = 1521))
    (CONNECT_DATA = (SID = ORCL))
    HAFEEZ

  • Net8 Easy config problem on Win2000 server

    After installing the Form6i on the server win2000, I try to start Net8 Easy Config but nothing happens. I couldn't connect to the 8i database in Form6i either. It seems the service name couldn't be resolved. I tried to manually config the file TNSNAMES.ORA. It didn't work either. Is there anything I can do?

    You can modify script file "..\orant\NET80\ADMIN\tnsnames.ora"
    LOCAL.WORLD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = DB Server name)(PORT = 1521))
    (CONNECT_DATA = (SID = ORCL))
    HAFEEZ

  • Memory reference error with Net8 easy config

    I've installed the Oracle 9iDS in the Windos 2000 professional. This i have installed in ORAIDS sepate directory with oracle home as ORAIDS. Using Net8 easy config i can establish the connection with oracle server. Then after, I've also installed the Developer with Forms 6I in the same computer in different directory ORAD2k with sepate home ORAD2K. for this I tried to establish a connection through "Oracle Net8 Easy Config". While i select the menu item "Oracle Net8 Easy Config", it gives me an error :
    The instruction at "0x00010111" referenced memory at "0x016286e0". The memory could not be "written".
    Click on OK to terminate the program
    Click on CANCEL to debug the program.
    Can somebody tell me how to make a connection from Developer (Forms6I and Reports 6I)
    Thank you.

    Hi,
    Copy tnsnames.ora file from ORAIDS/network/admin this path to ORAD2K/network/admin path.
    I hope it will work fine.
    -Neeraj

  • [RESOL]after running net8 easy config php no longer connects with ora_logon

    fixed by adding .WORLD to the ora_logon command :)
    servers:
    oracle 8i 8.1.7.4.0 remotely located called PROD
    windows 2000 server running IIS and php 4.3.4 net8
    above windows server was passed down to me so initial setup was done by someone else
    I needed to update the TSNNAMES.ora file to add a connection to a new oracle database (DEV) on the 2K web server. I located the tnsnames.ora file in c:\orant\net80\admin and created a backup.
    I then ran the net8 easy config to create the new tns name
    I tested the new database with a php file that uses $dbh = ora_login("$user@DEV","$Pass");
    this failed for the new SID. I checked and noticed also that all my old php files pointing to PROD where also failing with the dreaded ORA-12154: TNS:could not resolve service name.
    Now because this was only a quick test to check on the new TNSname I copyed back my old TNSNAMES.ORA file to the c:\orant\net80\admin directory. Problem is all of my php files still give the same error message.
    I started testing
    pngtns PROD == "OK"
    tried to login the way I use to login with the GUI sqlplus
    Username = user@PROD
    Pass = Pass
    HOST = {left blank}
    this gives me the ORA-12154: TNS:could not resolve service name error. It use to work like this
    I then tried
    Username = user
    Pass = Pass
    HOST = PROD
    This worked and I was able to successfully run a query
    Username = user
    Pass = Pass@PROD
    HOST = {left blank}
    This also works
    I then went to the command line and ran sqlplus username@PROD/Pass
    It returns ORA-12154: TNS:could not resolve service name. and askes me for a username
    I put in username@PROD
    then it prompts
    Password: I put in my password here and it works, and connect me to the server
    I tried to change my scripts to ora_login("user","Pass@PROD"); and it produces a
    ORA-12203: TNS:unable to connect to destination.
    Unfortunatly I cannot for the life of me get oci8 functionality to work with this version of php. If I add it to the extensions and uncomment it from php.ini it hangs the whole server. And at this point I'm woried about screwin more things up.
    Any help is very appreciated.
    I verified and setup environmental variables for TNS_ADMIN, and ORACLE_HOME
    I put DEV back in because it made no difference with or without it in the tnsnames.ora file.
    files:
    TNSNAMES:
    # C:\ORANT\NET80\ADMIN\TNSNAMES.ORA Configuration File:C:\orant\net80\admin\tnsnames.ora
    # Generated by Oracle Net8 Assistant
    CMEXAMPLE.WORLD =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = CM_SERVER)(PORT = 1610))
    (ADDRESS = (PROTOCOL = TCP)(HOST = LSNR_SERVER)(PORT = 1521))
    (CONNECT_DATA = (SID = ORCL))
    (SOURCE_ROUTE = YES)
    TCPEXAMPLE.WORLD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Production1)(PORT = 1521))
    (CONNECT_DATA = (SID = ORCL))
    NMPEXAMPLE.WORLD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = NMP)(Server = FinanceServer1)(Pipe = ORAPIPE))
    (CONNECT_DATA = (SID = ORCL))
    PROD.WORLD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = PRODHOST)(PORT = 1525))
    (CONNECT_DATA = (SID = PREM))
    EXTPROC_CONNECTION_DATA.WORLD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(Key = EXTPROC0))
    (CONNECT_DATA = (SID = extproc))
    BEQ-LOCAL.WORLD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = BEQ)(PROGRAM = oracle80)(ARGV0 = oracle80ORCL)(ARGS = '(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=BEQ)))'))
    (CONNECT_DATA = (SID = ORCL))
    SPXEXAMPLE.WORLD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = SPX)(Service = Server_lsnr))
    (CONNECT_DATA = (SID = ORCL))
    DEV.WORLD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = devhostname)(PORT = 15021))
    (CONNECT_DATA = (SID = DEV))
    TCP-LOOPBACK.WORLD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
    (CONNECT_DATA = (SID = ORCL))
    I removed all the extra stuff and left only PROD and DEV. I get the exact same results.
    SQLNET::
    # C:\ORANT\NET80\ADMIN\SQLNET.ORA Configuration File:C:\orant\net80\admin\sqlnet.ora
    # Generated by Oracle Net8 Assistant
    NAME.DEFAULT_ZONE = world
    NAMES.DEFAULT_DOMAIN = world
    #sqlnet.authentication_services = (NONE)
    SQLNET.EXPIRE_TIME = 0
    SQLNET.ENCRYPTION_SERVER = requested
    SQLNET.ENCRYPTION_CLIENT = requested
    NAMES.DIRECTORY_PATH= (TNSNAMES, HOSTNAME)
    Message was edited by:
    user483446

    Tony,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Orcale Net8  Easy Config not display

    I try to configure my forms builder to access the data base but when I click Oracle Net Easy Config , it is not display for me any thing to start the steps of configuration...any one have idea about the problem and how to solve

    After the installation go to your oracle home directory or the
    designer home directory and in that find the file called
    tnsnames.ora (usually located in \\home\network or net80\admin\).
    edit the file and add an entry something like below
    alias.world =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = hostname)(PORT = 1521))
    (CONNECT_DATA =
    (SID = oracledatabase_sid)
    where alias -> is aany name suffixed with .world.
    hostname -> is the name of the host, if possible in the
    hostname give the IP address of the machine.
    oracledatabase_sid -> is the sid the oracle database to which
    you will connect usual values would be ora817, orcl etc.
    This should help.

  • Not able to do Net8 Easy config Please Help!!!

    I have installed oracle 8i and oracle designer 6i on my pc with
    win98. when i try to use net8 easy config, it asks for Host
    Name, i tried to give the name of the machine and database name,
    i receive message ora-12224 error message. I would like to know
    what to input for host name and is there any other method in
    installing designer.
    Thanks
    Shivakumar

    After the installation go to your oracle home directory or the
    designer home directory and in that find the file called
    tnsnames.ora (usually located in \\home\network or net80\admin\).
    edit the file and add an entry something like below
    alias.world =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = hostname)(PORT = 1521))
    (CONNECT_DATA =
    (SID = oracledatabase_sid)
    where alias -> is aany name suffixed with .world.
    hostname -> is the name of the host, if possible in the
    hostname give the IP address of the machine.
    oracledatabase_sid -> is the sid the oracle database to which
    you will connect usual values would be ora817, orcl etc.
    This should help.

  • Oracle Net8 easy Conf ERROR

    Hello everybody.
    Whe I try to start up the Oracle Net8 the NT throw this error message:
    Aplication Error ...
    java.exe
    Exception access (0xc0000005), adress 0x01fcda04
    This Error appears too when I try to start up the OAS4`081 stand along with Netscape 4.73.
    I have NT Workstation 4.0 and Service Pack 6.
    Someone know how solve this error?
    thanks a lot
    Sonia.

    hi sonia,
    probably this is the problem with the display adapter. Increase the monitor resolution and then try the same because with the lower resolution it doesn't support the interface..
    in some cases u have to change the adapter/drivers itself. we had faced the same ... wish u all the best ;-)
    kiran
    null

  • Oracle Forms 10g & Oracle 10g DB Connection Problem

    Toady i have installed oracle forms 10g and oracle 10g db when i run my form it gives me this error how can i resolve it
    "ora-12154 tns could not resolve the connect identifier specified"
    Here are the values in forms 10g tns
    # tnsnames.ora Network Configuration File: C:\DevSuiteHome_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = PLSExtProc)
              IMS =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = IMS)
    and here the values of forms 10g SQLnet
    # sqlnet.ora Network Configuration File: C:\DevSuiteHome_1\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (LDAP, TNSNAMES, EZCONNECT, ONAMES, HOSTNAME)
    (description =
    # (address=(protocol=tcp)(host=localhost)(port=1383))
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (connect_data=(rpc=on))
    What changes should i make to overcome this problem.

    "ora-12154 tns could not resolve the connect identifier specified"The problem is local to the Forms Home, probably in tnsnames.ora (seems that there are tabs in IMS entry name). Carefully check it.$ oerr ora 12154
    12154, 00000, "TNS:could not resolve the connect identifier specified"
    // *Cause:  A connection to a database or other service was requested using
    // a connect identifier, and the connect identifier specified could not
    // be resolved into a connect descriptor using one of the naming methods
    // configured. For example, if the type of connect identifier used was a
    // net service name then the net service name could not be found in a
    // naming method repository, or the repository could not be
    // located or reached.
    // *Action:
    //   - If you are using local naming (TNSNAMES.ORA file):
    //      - Make sure that "TNSNAMES" is listed as one of the values of the
    //        NAMES.DIRECTORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA)
    //      - Verify that a TNSNAMES.ORA file exists and is in the proper
    //        directory and is accessible.
    //      - Check that the net service name used as the connect identifier
    //        exists in the TNSNAMES.ORA file.
    //      - Make sure there are no syntax errors anywhere in the TNSNAMES.ORA
    //        file.  Look for unmatched parentheses or stray characters. Errors
    //        in a TNSNAMES.ORA file may make it unusable.
    //   - If you are using directory naming:
    //      - Verify that "LDAP" is listed as one of the values of the
    //        NAMES.DIRETORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA).
    //      - Verify that the LDAP directory server is up and that it is
    //        accessible.
    //      - Verify that the net service name or database name used as the
    //        connect identifier is configured in the directory.
    //      - Verify that the default context being used is correct by
    //        specifying a fully qualified net service name or a full LDAP DN
    //        as the connect identifier
    //   - If you are using easy connect naming:
    //      - Verify that "EZCONNECT" is listed as one of the values of the
    //        NAMES.DIRETORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA).
    //      - Make sure the host, port and service name specified
    //        are correct.
    //      - Try enclosing the connect identifier in quote marks.
    //   See the Oracle Net Services Administrators Guide or the Oracle
    //   operating system specific guide for more information on naming.
    $

  • JDeveloper - Oracle 8i Lite Connection Problem

    I am trying to connect to Oracle 8i Lite database on my local machine (NT as the OS) from JDeveloper 3.1.1.2, I am getting "Network adapter could not establish connection" error. I can not even do Net8 Easy Config as I have no idea what the SID name is as 8i Lite installation did not ask for any SID name and it just created the polite databse (which works fine from ODBC).
    What is the default SID name for 8i Lite ?
    How to fix this probelm. Any help is greatly appreciated. VR.

    There is some more work you need to do to make JDeveloper work with Oracle Lite. Details are in an earlier response to a similar problem:
    http://technet.oracle.com:89/ubb/Forum2/HTML/003647.html
    Blaise

  • Connecting Forms to oracle database.

    Hi all,
    I installed Oracle 8i and Forms 6.2. They work fine as 2 products but not as one.
    I can't connect forms to the database of Oracle 8i
    the app Oracle Net8 Easy configure doesn't work. I get an error on JRE.exe or/and JREW.exe.
    I did get some advise to put this manualy:
    COPMAC =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
    (CONNECT_DATA = (SID = COPMAC))
    in the file TNSNAMES.ORA (path = C:\oracle\oraForms62\NET80\ADMIN "in my case")
    It still doesn't work.
    when i try to connect i get this error: Ora-12203: Unnaible to connect to destenation.
    I changed the SID to the name of my data base 'COPMAC'.
    Anyone can help me?
    Do i have to configure Oracle 8i or something? Is there an update to correct the JRE.exe error?

    There are many reasons why you can not connect to the database, and so I only can give you some hints:
    1. Do you have more than one oracle-home�s on your computer? Be sure, that your connectstring is in your developer-oracle-home too.(%ORADEV_HOME%/network/admin/tnsnames.ora)
    2. What is the NAMES.DEFAULT_DOMAIN entry in your sqlnet.ora file? Maybe you have to name your domain in tnsnames.ora too, e.g.
    COPMAC.world =
    Then try to connect with COPMAC and COPMAC.domain
    3. Try following settings in your sqlnet.ora
    NAMES.DEFAULT_DOMAIN=world
    TRACE_LEVEL_CLIENT = OFF
    SQLNET.AUTHENTICATION_SERVICES = (NONE)
    NAMES.DIRECTORY_PATH = (TNSNAMES)
    AUTOMATIC_IPC = OFF
    regards
    Anna

  • ORACLE NET8의 새로운 기능 및 개념

    제품 : SQL*NET
    작성날짜 : 1997-11-20
    ORACLE NET8의 새로운 기능 및 개념
    ================================
    Oracle 8에서는 다중 송신의 연결성에 대한 기능이 강화 되었는데 이러한 연결을
    더욱 효과적으로 사용할 수 있도록 NET8에서는 concentration 과 multiple
    protocol에 접근을 제어하기 위한 지원할 수 있는 새로운 기능으로 Connection
    Manager가 추가 되었다.
    Multiplexing feature of Connection Manager
    1) concentrator는 클라이언트에서 요구하는 여러 session들을 받아 하나의
    single transport를 통하여 동일한 Destination 에 하나의 통로를 통하여
    받는다.
    2) MTS에 연결할 수 있는 물리적인 네트워크
    첫번재는 여러 사용자들이 서버에 연결되고 그들의 session이 하나의 통신
    연결위에서 다중 송신될 수 있게 해주는 connection manager 라는
    component를 갖는다.
    두번째는 connection spooling인데, 이는 하나의 multi-threaded server에
    보다 많은 클라이언트에 접속할 수 있는 방법으로 연결 종단에 시분할 방식의
    기술을 이용한다.
    이렇게 함으로써 Net8연결에 있어 상대적으로 상당량의 idle time을 가져올
    수 있고 connection polling은 이러한 idle time의 사용을 만들어 여러
    사용자들이 오랫동안 연결은 공유할 수 있게 해준다. dispatcher의
    connection pool은 connections의 집합으로 dispatcher는 클라이언트
    프로세스들 사이에서 공유된다. 모든 connection들이 dispatcher를 사용하고
    있을 때 하나의 새로운 connection도착하면 dispatcher는 current
    connection들 중에서 지정된 시간 이상 idle하고 있는 connection을 찾아
    임시적으로 drop하고 비어있는 connection slot을 사용하게 된다.
    Connection이 drop된 client에서 다른 작업을 할 경우에 client는
    dispatcher에 대한connection을 복구한다. Connection pooling은 client와
    multi-threaded server사이에 투명하다.
    구현 사례 :
    MTS_DISPATCHERS="(PROTOCOL=TCP)(DISPATCHERS=50)(POOL=NO)(MULT=ON)"
    따라서 전자우편 사용자가 앉아서 입력을 하고 있다면 그 동안에는 통신을 하고
    있는 것이 아니라 서버를 사용하고 있을 뿐이다. 또한 사용자가 data warehouse
    사용자이고 오랫동안 수행하는 query를 한다고 해도 회선상에서는 아무런
    traffic도 없이 사용할 수 있다.
    혹은 사용자가 OLTP환경에 있는 사용자라면 사용자의 사용 빈도는 그다지 높지
    않을 것이다. 사용자는 자동차를 rent하기 위해 호텔에 설치된 터미널에서
    connection manager를 사용할 수도 있다.
    따라서 이처럼 사용되지 않는 동안, 이를 다른 사용자를 위해서 다시 사용할 수
    있다. 이처럼 사용자들은 connection을 재사용하거나 공동으로 사용할 수 있다.
    세번째는 사용자가 서버에 연결된 클라이언트를 가지고 있으며, 그 서버는 또
    다른 서버에 연결되었다고 가정하자. 사용자는 일종의 workgroup및 중앙 기기
    site를 가지고 있으며, 클라이언트는 분산된 질의를 그 중앙 서버에서 벗어난
    데이타에 access하기를 원한다고 하자. 기존의 Oracle7에서는 각각의 클라이언
    트들은 항상 연결을 유지하고 있었다. 따라서 중앙기기는 모든 부서별 그룹
    서버에 연결된 클라이언트 수만큼 연결을 가지고 있었다. 그러나 Oracle8에서는
    한 서버가 다른 서버와 통신을 하고 모든 클라이언트를 위해 분산된 access를
    공유하도록 허용하는 공유된 database link를 가질 수 있는 데 이것이 다중
    송신의 한 방법이다.
    << Client Tool >>
    NET8은 Oracle8의 networking component로서 모든 대다수의 protocol과
    platform들을 통하여 client-server, server-server의 연결에 대한 투명성을
    제공하며 또한 다른 network services와 Oracle Gateway, Rdb와의 연결도
    제공한다.
    NET8은 SQL*NET V2의 성공작으로 현재 지원하고 있는 SQL*NET V2(2.1,2.2,
    2.3)과 완전히 backward compatible하다. NET8 client들은 SQL*NET V2이든가
    NET8과 상호작용 할 수 있고 NET V2 client들은 Net8을 이용하여 서로 작용할
    수 있다.
    1. Oracle NET8 Assistant
    NET8 Assistant는 JAVA Runtime 환경을 요구한다.
    기존 SQL*NET V2.x의 network 구성요소(domain, database, node,
    listener,....)를 정의하거나 관리할 수 있도록 만들어진 Oracle Network
    Manager 제품을 대치하는 NET8의 새로운 제품이다.
    2. Oracle NET8 EASY CONFIGURATION
    기존의 Oracle Client Software V7.x에서 제공되었던 SQL*NET Easy
    confiuration보다 더 사용자가 사용하는 데 있어 사용하기 쉬울 뿐만
    아니라 tns_alias 설정 후 utility 내에서 사용자가 등록한 정보에 대해서
    데이타베이스 서버에 접속할 수 있는 지 여부를 test까지 할 수 있도록 이전
    버젼에서 제공 하였던 utility인 tnsping.exe과 nettest.exe의 기능이 내제
    되었습니다.

    sunnypark 님, 답을 적어주셔서 감사합니다. 그런데 아깝게도 정답은 아니었습니다.
    Automatic Tuning Advisor가 tuning후 주는 4가지 guide중 하나이며,
    이 guide를 implementation하겠다고 click하면 sql문장이 실행을 위한 보조정보를 포함하는 형태로 dictionary에 저장된답니다.
    다시한번 도전해 보세요 ~~

Maybe you are looking for

  • CUCM 5.1.3 to 8.6.2 upgrade

    Hello, I have to do an upgrade of a 3-node cluster CUCM 5.1.3d (5.1.3.5000-3) to 8.6.2. Hardware will remain the same. The servers support 8.6.2. I have two questions: - The upgrade path that I've chosen is: 5.1.3d (5.1.3.5000-3) -> 6.1.4a (6.1.4.200

  • File format to send appointments by email?

    Nokia calendar, on the N8 and E71, cannot add calendar events sent by Outlook in ics format. At least, neither of those phones, which I have owned, appear to be able to pull off that stunt. Is there a way for Outlook users to send calendar items, by

  • Can't put Combobox  in Master-Detail Form

    I'm trying to create Master-Detail form with LOV's, but in both the Master and Detail selection, the Item Type LOV doesn't include combobox. From the looking at some of the Posts, this seems to be possible. Does anyone know what I need to do? Thanks

  • XFCE's Clock shows the wrong time...

    XFCE's clock shows the wrong time constantly (it always shows the GMT time), but whenever I run hwclock -r, it tells me the correct time. Can anyone help fix it?

  • Deployment Failed using Weblogic

    Hello, The following error message appears when deploy to Weblogic. I have tried undeploy then re-deploy the application without luck. The EJB is not in any package. Could anyone show me what I've done wrong? Thanks a million. John. Unexpected Error