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.

Similar Messages

  • My ipod 7th generation is not recognised by itunes and my computer. I am not able to transfer any songs. Please help me on this regard. I tried all the steps from apple website

    my ipod 7th generation is not recognised by itunes and my computer. I am not able to transfer any songs. Please help me on this regard. I tried all the steps from apple website

    This article should give you the options
    https://discussions.apple.com/docs/DOC-3991

  • My iphone is not charging or showing in my computer. but its getting charged via wall apple charger.. Not able to connect with itunes.. please help.... :(

    My iphone is not charging or showing in my computer. but its getting charged via wall apple charger.. Not able to connect with itunes.. please help....

    No it doesn't. Sometimes it make a sound that it should when connecting but that is it. Never actually charges or syncs. And it is a brand new cord.

  • I try to download abode acrobat xi pro from abode download asssistant,it shows download is completed.but iam not able to get thet downloaded file,please help me

    i try to download abode acrobat xi pro from abode download asssistant,it shows download is completed.but iam not able to get thet downloaded file,please help me

    oatgeo wrote:
    I  checked the proxy and it should be OK. That's mean I have to try and try again until I get it from the slow servers.
    Yes.

  • Hi i am not able to retrieve web/internet history please help. my Internet service provider advise me to contact you.

    for some reason i am not able to retrieve or view my web/internet history please help

    Is the history enabled?
    To see all History and Cookie settings, choose:
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history"
    *https://support.mozilla.org/kb/Options+window+-+Privacy+panel
    Do you see any history in the History Manager (Library; Show All history)?
    *Tap the Alt key or press F10 to show the Menu Bar
    There is also a History button in the "3-bar" Firefox menu button drop-down list.

  • HT204409 I have a MacBook Pro and not able to connect to Internet? PLEASE help!

    I have a MacBook Pro and not able to connect to Internet.  I have other HP comp and iPad and am able to connect.  I have contacted AppleCare....they said disconnect router and leave unplugged for an hour, which I did...still no connection.  Any suggestions?  Thanks!

    Call Apple Care back & tell them their suggestion did not work. 
    Solution may be found if you search in the "More Like This" section over in the right column.

  • I am not able to open any .at website, please help

    .at domain does not open

    hi, thanks for your reply! It wasn't working on explorer either, but now it seems to be working fine, maybe it was just a server failure. Thanks anyway!

  • When i try to download ebooks to my nook it will not let me and comes up with thw error code CE_COPY_NOT_Allowed- not able to copy this book. Please help.

    Has anyone experienced this problem and have come to a solution this never happened on my old computer?

    It sounds as though your PC is infected with fake antivirus software. The detailed cleanup instructions vary depending on which fake AV you have. However, as a first step, try this:
    Download the following on a different PC, copy them to a USB flash drive or CD, and then run them on the infected PC:
    Malwarebytes Anti-malware : http://www.malwarebytes.org/mbam.php
    SUPERAntiSpyware : http://www.superantispyware.com/
    Hopefully these will get you back online safely. If not, search for clean-up instructions for the specific malware.

  • 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

  • [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/

  • 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

  • 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

  • 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

  • I am not able to launch FF everytime i tr to open it, it says FF has to submit a crash report, i even tried doing that and the report was submitted too, but stiil FF did not start, and the problem still persists, please help me solve this issue in English

    Question
    I am not able to launch FF everytime i try to open it, it says FF has to submit a crash report,and restore yr tabs. I even tried doing that and the report was submitted too, but still FF did not start, and the problem still persists, please help me solve this issue
    '''(in English)'''

    Hi Danny,
    Per my understanding that you can't get the expect result by using the expression "=Count(Fields!TICKET_STATUS.Value=4) " to count the the TICKET_STATUS which value is 4, the result will returns the count of all the TICKET_STATUS values(206)
    but not 180, right?
    I have tested on my local environment and can reproduce the issue, the issue caused by you are using the count() function in the incorrect way, please modify the expression as below and have a test:
    =COUNT(IIF(Fields!TICKET_STATUS.Value=4 ,1,Nothing))
    or
    =SUM(IIF(Fields!TICKET_STATUS=4,1,0))
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

Maybe you are looking for

  • ITunes 10.6 and iOS 5.1 Don't WORK ON MY COMPUTER FOR MY PHONE DOESN"T SYNC!!!!

    I AM TOTALLY ANGRY & P1SSED!!!! iTunes 10.6.1 BLOWS  AS WELL AS iOS 5.1. NOW THE PHONE DOESN'T GET RECOGNIZED ON iTUNES OR MY WIFI NETWORK. I RESET NETWORK ON PHONE AND DID A REPAIR THROUGH CONTROL PANEL IN ON COMPUTER FOR iTUNES AND BONJOUR. AND NOW

  • How to override Ctrl-Click behavior in Java L&F

    On the Mac, Ctrl-Click is the popup trigger. While Java L&F designers were obviously aware of this (it is warned about in the Java Look and Feel Design Guidelines, 2nd ed, page 106). However, just two pages later (page 108), they then generically spe

  • 24" Alum: iMac Display Flicker

    I've noticed that upon waking up from sleep, my 24" aluminum iMac's display flickers, especially in the right corner area of the screen. It stops after 10-20 seconds. Is this something I should be concerned with? Thank you.

  • Using field symbols in method issue

    HI All I created a method as follows and the problem is that when i enter to the method the i have dump since the field symbol is not assigned there is a nice way that i can by-pass this issue , the reason that i created a method for that is that i n

  • HT1420 First world problems...  Is there any way to authorize more than 5?

      I have three apple Tv's in my home.  I have 3 macs, 3 iPads, and three iPhones.  Is there really no way to authorize all of MY apple devices at once?