Run forms6i with oracle 8i

Hi Vishal Badiani
I think the problem is you dont create net 80 configurations to run any product with Oracle 8i but you must check the following: -
1- Create net80 from start programs oracle-orahome 81 network administration Net8 Configuration Assistant and chose local net service name configuration and click next and click Add and next after this you will chose you database version And next now you write the global database name and next chose the TCP/IP protocol And next now type the computer name (host name) and click next chose yes perform A test and next If you receive the error ORA-01017 click change login and type any
User name that exist in the database like system/manager if connecting
Test successful then click next and type any name you want for the
Net Service name and click next and finish Ok.
2- After this you will open the folder that you install oracle like
c:\ora81\network\ADMIN and rename the file (sqlnet.ora) to (sqlnet.old)
And open the file tnsnames.ora and paste the following lines after last line
On the file
DEV.ORCL.US.COM =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = MMK)(PORT = 1521))
(CONNECT_DATA =
(SERVICE_NAME = orcl.us.com)
After this you will change the following on the same lines you past on the previous step.
*** Change the dev.orcl.us.com to any name you want like dev
*** Change the host to you computer name
***Change the SERVICE_NAME to the service name that you created before in the step 1 Ok.
Save the changes you made on the file tnsnames.ora and copy the
File into c:\ora82\net80\admin (the place you install developer)
You will receive the message (do you want replace the file)
Click ok.
3-After this you will open the folder that you install developer 6i like
C:\ora82\net80\admin and rename the file (sqlnet.ora) to (sqlnet.old)
4-start the database.
5-start the listener.
6-type you username and password and database (DEV.ORCL.US.COM) or the name you created.
I hope this useful for you and replay to me please if this not work with you
Mohammed Al-shake
[email protected]
3- After this you will open the folder that you install developer 6i like
c:\ora82\net80\admin and rename the file (sqlnet.ora) to (sqlnet.old)
null

Hi
am sorry the above line's for theis link http://technet.oracle.com:89/ubb/Forum4/HTML/009767.html
thanks

Similar Messages

  • Unable to connect forms6i with oracle 10g

    hi:
    i am facing a problem to connect forms6i with oracle 10.2 g. i already make a entry in TNSNAMES.ora file in forms folder.
    while i am trying to connect it dispaly "ORA-12203: TNS:unable to conect to destination" error.
    please help. Thanks in advance.
    Regards,
    Abhishek

    Hi
    i already make a entry in TNSNAMES.ora Another option...
    1. Pls Verify that the net service name you entered was correct including no spaces.
    2.Verify that the ADDRESS portion of the connect descriptor which corresponds to the net service name is correct.
    3.Ensure that the destination process (for example the listener) is running at the remote node and the cabel of ur local net work connecting to ur server is well connected and working well.
    4. Test ur local network cabel and try to make the connection to another computer set.
    5.u can check from Start > control panel > administrative tools > services that the service name is started or not if it is Started Restarted or refresh it.
    6. Ensure that the listener is running at the remote node and that the ADDRESS parameters specified in TNSNAMES.ORA are correct.
    and the more ....
    Hope this helps...
    Regards,
    Abdetu...

  • Steps to configure forms6i with oracle 9i

    hi,i have installed forms6i, oracle 9i in my system.how to connect forms6i with oracle9i becos if i open formbuilder and follo the steps it tells no listner.so please give steps to connect oracle 9i with forms6i.how to avoid this no listner.

    hello,
    put following lines in tnsname in $ORACLE_HOME \NET80\ADMIN
    TEST=
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = you hostname or Ip address(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = TEST.world)
    Change Test and test.world with you SID
    hope helps you

  • How to Connect Oracle Forms6i with oracle 10g

    Hi,
    I'm using oracle 10g database in my xp operating system.. I installed forms6i on my system and edit the tnsname.ora file in the forms installation folder (C:\orant\NET80\ADMIN\tnsnames.ora) with local database tnsnamesora details..
    But still I cant connect from forms with local database.. it shows the error ''Oracle Forms Designer has encountered a problem and needs to close. We are sorry for the inconvenience.''
    pls anyone help me

    Yes. Long time ago I knew that this is not supported. See metalink/support if there is now any patch for this.

  • Making Siebel Run Fast with Oracle CBO – New PPS Recommendation - optimizer

    Hi All,
    I have some good news if you are upgrading to Oracle CBO. This is a big new find that we discovered a few weeks back.
    There is a certain class of queries that run very slow with the default Siebel recommended settings. Please keep in mind that in order to properly do explain plans in 10G with Siebel SQL you need to issue the following alter session statements. Also if you are using TOAD you have to uncheck the run queries in parallel since if that option is checked a new session will be launched and your options won’t be set.
    ALTER SESSION SET OPTIMIZER_MODE = FIRST_ROWS_10 ;
    ALTER SESSION SET "_OPTIMIZER_SORTMERGE_JOIN_ENABLED" = FALSE ;
    ALTER SESSION SET "_OPTIMIZER_JOIN_SEL_SANITY_CHECK" = TRUE;
    ALTER SESSION SET "_HASH_JOIN_ENABLED" = FALSE;
    The key new find is that the Oracle recommendation of setting optimizer_index_cost_adj = 1 is wrong! Our new recommendation is to set this parameter to 10.
    Here are some more details. This is not a silver bullet for all your Oracle performance tuning issues. Remember it is best to tune specific things that are slow from an end users perspective. In fact that is how we discovered this issue and its solution.
    There is one specific class of queries that this setting will fix. You can issue alter session statements to see the difference in your explain plans. Here is how you will know the query:
    •     Where clause on an intersection table and index that exists that would find just one row. This is the index we want Oracle to use.
    •     Order by on BC base table and another index exists that would satisfy the order by. We don’t want to use this index since millions of rows would be accessed.
    •     Explain plan shows the index for the order by is used instead of the index for the where clause that would have found a single row.
    Here is the actual statement we encountered that lead to our discovery.
    WHERE
    T8.PR_HELD_POSTN_ID = T2.PAR_ROW_ID (+) AND
    T2.BU_ID = T5.ROW_ID (+) AND
    T7.ROW_ID = T4.PAR_ROW_ID AND
    T7.ROW_ID = T8.PAR_ROW_ID AND
    T7.ROW_ID = T3.PAR_ROW_ID AND
    T7.ROW_ID = T6.PAR_ROW_ID (+) AND
    T8.PR_RESP_ID = T1.ROW_ID (+) AND
    (T8.EMP_FLG = 'Y') AND
    (T3.LOGIN = 'UATUSER')
    ORDER BY
    T8.LAST_NAME, T8.FST_NAME
    In addition at OOW this week we heard that an Oracle RAC expert presented Siebel on RAC and recommended setting this parameter back to its default of 100. We also talked with a very senior DBA colleague who made the same discovery over a year ago and is running with is parameter set to 25.
    I can tell you that for us any setting from 1-9 gave the bad access path. 10 fixes the issue.
    This find is so important that we wanted to get this out to the Siebel community ASAP.
    Robert Ponder
    Lead Architect and Director
    Ponder Pro Serve
    cell: 770.490.2767
    fax: 770.412.8259
    email: [email protected]
    web: www.ponderproserve.com

    Hi All,
    I know it is bad to reply to your own posts but this one is too good. Here is another example of this that all of us have.
    With oica = 1 the m1 index is used and this runs a long time. With oica = 10 m6 is used and that clearly is the index Oracle wants to use since it matches the where clause exactly.
    This is from the basic select we all run as part of Server Tables Clean Up. I am even including the alter session statements so you can see the drastic improvement yourself.
    ALTER SESSION SET optimizer_mode = FIRST_ROWS_10;
    ALTER SESSION SET "_OPTIMIZER_SORTMERGE_JOIN_ENABLED" = FALSE;
    ALTER SESSION SET "_OPTIMIZER_JOIN_SEL_SANITY_CHECK" = TRUE;
    ALTER SESSION SET HASH_JOIN_ENABLED = FALSE;          -- "_HASH_JOIN_ENABLED" in 10G
    ALTER SESSION SET OPTIMIZER_INDEX_COST_ADJ = 1; -- then change this to 10 and run EP again.     
    SELECT
    T1.CONFLICT_ID,
    T1.LAST_UPD,
    T1.CREATED,
    T1.LAST_UPD_BY,
    T1.CREATED_BY,
    T1.MODIFICATION_NUM,
    T1.ROW_ID,
    T1.ACTION_ID
    FROM
    SIEBEL.S_SRM_REQUEST T1
    WHERE
    ((T1.STATUS IN ( 'SUCCESS' ) OR T1.STATUS IN ( 'EXPIRED' ) OR T1.STATUS IN ( 'COMPLETE' ))
         AND T1.TGT_DELETE_TS <= TO_DATE('11/20/2007 16:26:27','MM/DD/YYYY HH24:MI:SS'))
    ***** SQL Statement Execute Time for SQL Cursor with ID 10A53620: 48.333 seconds *****

  • Forms6i with Oracle 8

    Can the forms developed in Forms6i need to have Oracle8i only ? Can i not use earlier versions of oracle ie. Oracle8.

    Can the forms developed in Forms6i need to have Oracle8i only ? Can i not use earlier versions of oracle ie. Oracle8.

  • Forms6i connectivity with oracle 10g Lite Edition

    Dear Sir,
    how to connect forms6i with oracle 10g lite edition
    Can you tell me the step by step procedure?
    Regards
    Mukesh Sharma

    Hello,
    look at this thread: connecting form 6i  to oracle database 10G express edition
    and this one: Re: Forms 6i on Oracle 10g UTF8 - Problem solved
    If my answer is helpful, please click on helpful/correct. :)

  • Forms6i with WinXP and OLE

    Message
    Hi experts,
    Hi Experts,
    We are encountering the following scenario, and wonder if anyone else has experienced this, and if so, whether there is a work around we can try.
    Some of our office pcs have recently been upgraded to Windows XP os and have OfficeXP professional.
    In previous tests we have run Forms6i with calls to OLE to launch MsWord, and produced letters with no problems, even when running in Win2k and calling
    Office XP Word. We would be presented with the merged document whenever we chose to "Edit" or "Preview".
    However, now that some of our development machines are running in WinXP we get thrown straight into the data file, rather than the merged word document
    (the documents in question all perform a mail-merge).
    Any ideas?
    TIA,
    Alexandra.

    Hi,
    Last year I build a tester with a PXI rack. I started with a MXI interface. The PXI modules are a part of your PC and it helped me to wire the hardware VI's. Later on when the hardware part was ready I switched over to a embedded controller (Not RT)
    With VISA I can still acces some devices but not all (All PXI devices are non NI except the controller) 

  • How to run local host web application in win 7 64 bit with oracle database?

    Hi all,
    Hope doing well,
    sir i am running my local host web application with oracle database in win 7 32 bit. it's working fine.
    but when i am running the same thing in win 7 64 bit. it's showing login error.
    not going to home page even i checked with this published file open in visual studio it's working fine.
    how to run it correctly?
    thanks in advance.

    The number of times you have been asked to post sufficient details for your questions, we would expect you to have got the message by now... but clearly not.
    952646 wrote:
    but when i am running the same thing in win 7 64 bit. it's showing login error.What error? You haven't posted an error. There are millions of possible errors in computing and you're expecting people to guess which one.
    not going to home page even i checked with this published file open in visual studio it's working fine.
    how to run it correctly?No code, no database version, no details...... = NO HELP.
    When are you going to learn.

  • Anyone running Portal with NOARCHIVELOG mode in the Oracle DB?

    Although we have several high-volume SQL Server customers running their DB in simple recovery mode (no transaction logging) with success, I am trying to determine if anyone is doing the equivalent with Oracle DB.
    Even if you aren't using NOARCHIVELOG mode, please let me know your thoughts on performance, especially since the perception exists that the Portal is less performant on Oracle DB than on SQL Server. If that perception has any basis in reality, there should be an even greater potential for performance gain using Oracle DB, through intelligent tuning.
    The cons of NOARCHIVELOG were pointed out to me by an excellent DBA:
    1. Lose the ability to do hot online physically backup, (both RMAN and Manual)
    2. Lose the ability to do point in time recovery of your database (irrelevant to the Portal)
    3. When something bad happens to your DB, you are guaranteed to lose some data, because you can only recover to last good backup. (This is either acceptable to the business or not. Usually it is.)
    Thanks for your thoughts!

    There are no dumb questions. 'Better' or 'worse' can mean different things from different angles. I won't recommend something to a customer that I saw in an article somewhere, or gained knowledge via hearsay. I have to have tried it successfully with a customer, usually though iterative tuning, testing and monitoring cycles.
    With that said, I see nothing wrong with using NOARCHIVELOG mode for the portal, and am looking to find someone with experience using it with the portal; and I don't mean a portal with four communities and a scant thousand users. I am looking for something more on the scale of our mutual customer who had about 15 front end portal servers, and about 15,000 hits per hour. Who, incidentally, is happily using SQL Server in simple recovery mode, and was game to try it out in the first place.

  • Is it possible to run OBIEE on linux 64 bit mchine with oracle 64 bit

    Is it possible to run OBIEE 10.1.3.4.0 on linux 64 bit machine with oracle 64 bit(10.2.0.1.0) installed
    Thanks in Advance

    Yes, assuming your hardware has the supported CPUs. OBIEE binaries are 32 bits and requires 32 bits OCI libraries to connect Oracle DBs. See the OBIEE [System Requirements and Supported Platforms|http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e10417.pdf] for more information.

  • Is it possible to run Oracle 6i application with Oracle 11g?

    HI,
    We are running oracle developer 6i (6.0) application with oracle 10g database.
    Due to some management decisions we are in planning to upgrade the database to 11g.
    So, tell us that Is it possible to run Oracle 6i application with Oracle 11g?
    Regards,
    fazijee

    Also see Oracle Support note
    Is Forms/Reports 6i Certified to Work Against Oracle Server 10g Rel 1, Rel 2 or 11gRel 1, Rel 2? [ID 338513.1]
    6i isn't certified nor will be certified against 10.2 and 11.x
    Hemant K Chitale

  • Running web forms6 with designer Vs IE5

    Hi every one
    i am running forms 6 with oracle 8.0.5 and OAS 4.0.7 on windows
    NT 4.0 with SP3.
    when i try to run froms6 on the web through the designer for
    testing purpose some of the forms run with out a problem and some
    of them with errors specially when trying to exit from the forms
    give exception error.
    while when i run the same forms through the IE5 there is no error
    and they run fine.
    what could be cause can some one explain is it the some JDK mis
    match or what.
    mobeen
    null

    If you are trying to deploy forms on 3-tier, you will need two things.
    1. you will have to configure your formsweb.cfg for running your applications.
    2. if you want to deploy forms using Internet Explorer you will have to modify your base html file accordingly. If you are using Netscape Navigator, you will need Oracle jinitiator.
    you can also mail me at :
    [email protected]

  • IS Yahoo Messenger applicable with Oracle Forms6i?

    Hi guys,
    Im doing a project regarding the Job Request module using Orcle forms6i. This module will be using by a lot of users per Departments and i want every transactions..every job request entered would be well monitored between me and my users. Im planning to use the Yahoo Messenger to be part of it. I want every transactions posted or approved would be monitor through this Yahoo Messenger. Theres a message coming from this yahoo messenger "that certain transactions was Approved by a USER". Is this possible to use the Yahoo Messenger with Oracle Forms6i?
    Thank you.
    Lala

    I know there is a 'Oracle XMPP/Jabber Instant Messenger' available for the Oracle database on sourceforge.net. You can then sent message from the database to i.e. a google talk client.
    And I also added a pluggable java component inside Oracle Forms 10gR2. [http://www.screentoaster.com/watch/stUEJUR0NIR1pbR19bWlpYU1dS/chat_bean_inside_oracle_forms|http://www.screentoaster.com/watch/stUEJUR0NIR1pbR19bWlpYU1dS/chat_bean_inside_oracle_forms]but I don't know if it can be added to Forms 6i.
    Please mark if it helps.

  • Run client of Oracle Application with Linux

    Hi Evrybody,
    We are looking for relace our applications with Oracle Application (financial) and for our project if is very important to use client machines with Linux OS. Anybody have experience about it?
    If yes, wich Linux is better for you?
    Best regards.
    Mietek Zamroz

    HI,
    We are also looking for Linux clients for Oracle Applications 11i.
    Oracle announced once a Version based on a standard java, not an exclusively Windows-modified jinitiator.
    We are thinking of getting an application server running Win2k and access it with terminal services from
    Linux. It works but it is not ideal in terms of scalability and cost, as the MS stuff does not cluster.

Maybe you are looking for

  • Airprint not working with HP printer after updating to IOS5

    Hi, I have an HP airprint printer (photosmart B210) that worked fine with my ipad2 and iphone 4 all running ios 4. Now I have a iphone 4s as well as the iphone 4 and ipad. After upgrading to ios 5, I can no longer airprint from any of my ios devices.

  • Can not receive mail after last sever update

    After the last server update (9/26/05, Version 10.4.2), mail service no longer receives emails. I can only send email via Squirrel Mail cut cannot receive; cannot receive or send emails via mail client (i.e., Outlook Express). Any help you can provid

  • URGENT: REGARDING ROUTING REPORT(plzz help me out)

    Hi, I am making a report in which i have to display the stock during the routing i.e. in CA03 we get to know which are the operations are implemented on a material. the requirement is if there are 50 pcs of material are in 1st operation and only 10 m

  • Office jet 4620 power cuts off

    Hello Folks.....Please help!! I have an Office Jet 4620. I have tried numerous times today to get the power to stay on. The power button on the printer does not work and I've had to switch it on/off at the wall switch to power up again. The printer w

  • Is the Lumia 820 wireless charging cover compatibl...

    Hello, I have just bought this induction charging base in Amazon Germany. I had purchased the Nokia charging cover for my Lumia 820 already last month. But now that I lay down my phone on the base nothing happens. I thought that induction charging co