Is it possible to put (9iAS and 8i) in one server box?

I'm trying built a testing enviroment at home. I only have 1 server win2000 and I have installed 8i on it already. Can I also install 9iAS to have both the database server and application server together?
Thanks
Wenchel
null

In what order did you install these products and what about the Oracle homes and their directories. I'll appreciate if you can provide this info 'cos I have tried to do this installation (one box) without success we had to rely on the separate boxes.

Similar Messages

  • Is it possible to put together and order an iPhoto book using my iPad?

    Is it possible to put together and order a printed iPhoto book using my iPad

    No. The iPhoto for iOS can edit photos and share them to social media sites like Facebook. But the app does not have the capability of creating photo books.

  • Is it possible to copy formats and styles from one document to another?

    Is it possible to copy formats and styles from one document to another?
    Or use a commen styledocument as a masterdocument?

    Only by creating a template with what you want.
    Apple has removed the ability to import styles inPAges 5 along with almost 100 other features.
    Peter

  • Is it possible to move the master data from one server to onther server?

        is it possible to move the master data from one server to onther server?

    iOS: Transferring information from your current iPhone, iPad, or iPod touch to a new device

  • Drawback of putting producer and consumer in one loop. [Ethernet IP]

    The "Create Assembly Instance" exapmple vi have two separte loops. One for the input (producing data) and the other for the output (consuming data). Would it be possible to combine everything into one loop? Are there any drawbacks to using one loop for the input and the output?
    and i know one drawbacks will be that both consumer and producer will have to have the same rate.. 

    That's an interesting piece of code.  It's not so much a producer/consumer as it is two separate loops handling input and output.  Take a look at this link to see what producer/consumer is: http://www.ni.com/white-paper/3023/en/  You can also find the code by going to File->New and opening the "From Template" folder under VI.
    What controls your state machine?  With events not being possible on a RT system, I'd expect you'd have some form of polling.  Polling would still use a time period between polls.  Granted, the network requirement would definitely break determinism, as you've already noted.  If you're doing this, why not put it into a timed loop?  Timed loops aren't always determinstic.  That's why there is a "Finished Late?" terminal.  It's not the loop that makes the code deterministic, it's the way you put your program together. By moving it into a timed loop, you gain the ability to give it a priority.  I'll explain why this is important in a minute.
    You're welcome to combine the two into a single loop if you still meet your timing requirements.  That's a design choice that is up to you.  I don't know what your other Ethernet/IP "stuffs" is, but I'd likely combine this into my output loop if possible.  I'm assuming it has something to do with the data you care to send.
    The overhead from the loop isn't enough to worry about the worload on the CPU.  Ultimately, the code within the loop determines how rough you're being on the CPU.  That's true in one loop or in four loops.  Splitting code into multiple loops just lets you prioritize code.  If everything is in a single loop, it all must run before the next iteration.  If your code is split into ten loops, as an example, only what is inside each loop must be run on that loop's iteration.  Using priority, as you've mentioned, ensures you determine which loop runs first.  Let's say that loop completes and gives the other loops time to run on the CPU.  Before they complete, the loop wants to run again.  The CPU will go back to that loop and run.  By splitting the loops up, you've ensured this piece of your code will run even if the CPU can't handle processing all of the code within that period.  Rather than hurting determinism, you've aided it.  The parts of your code that you aren't worried about being deterministic happen when the CPU has time for them.  The parts that you NEED to be deterministic happen deterministically and push those other parts of the code out of the way.
    Looking at the example code you're showing, I'd really want to know what it is you plan to do with the code and what you need to be deterministic.  I'd assume you plan to read the data, process it, and send a corresponding output.  If you need ALL of this to be deterministic, I'd put it within a single loop or use queues to send data from the input loop (commented as consumer) to the output loop (commented as producer).  This decision would really just depend on how fast you care to acquire data and how deterministic you desire the output to be.  Without using the queues, you create something called "race conditions."  When you send an output, is that related to the newest input or one before it?  You simply cannot tell.  
    Jeff B.
    Applications Engineer
    National Instruments

  • 9iAS and Silver Stream on UNIX box

    Hello,
    Is it advisable to have 9iAS and Silver Stream web servers on one UNIX box.
    Your pros and cons are much appreciated.
    Thanks in advance.

    I think you are confusing the concept of "Oracle9ias Instance" with that of a database instance. They are two different things with no relation to each other. For Oracle9ias an instance is just an installation identifier (with no dependence on any database instance). All that matters is that you provide unique instance names for each installation. Just give it any logical name (such as "infra" for the infrastructure install and "bi" for the business intelligence installation and so on and so forth).
    HTH,
    Ashesh Parekh
    Oracle9iAS product Management

  • Connect and Apache on one server

    I need to reconfigure Connect not to use port 80, because I
    need this port for my XAMPP apache installation. The port 1935 ist
    also not available. I found a related technote, recommending so
    modifications in my custom.ini file. How do i have to configure the
    custom.ini to run Connect as well as APache on one server?

    Hi,
    I have done this in Windows and Linux both for CF 9, but you can follow the same for ColdFusion 10. The place where we have to enter the IP address, put in the IP address of Remote server where you have installed ColdFusion 10.
    In Web Server machine create the Identical directory as /opt/ColdFusion10/config/wsconfig and then place all the files,
    Manual Connector for Apache: http://helpx.adobe.com/coldfusion/kb/coldfusion10-apache-manual-connector-configuration.ht ml
    In ColdFusion server machine, you don't have to create this connector directory.
    Please check this article, this is for CF 9.
    http://helpx.adobe.com/coldfusion/kb/manually-configure-web-server-connector.html
    Hope this helps.
    Regards,
    Priyank

  • How to copy procedures and packages from one server to another?

    Hi,
    I have 439 packages and 178 procedures located in one server called MAXWELL.
    I need to copy these objects to another server called TITAN.
    The schema names is SPCBR in both servers.
    So both servers have an instance running with this schema SPCBR.
    SPCBR in TITAN server has their tables with table data which was generated by an export/import process from MAXWELL server.
    However, procedures and packages were not copied by the export/import because I used the clause 'tables'.
    Now, what can I do in order to equalize procedures and packages in both databases? I can't risk in damaging or duplicating data in my database located in TITAN server, ok?
    Thanks,

    Another simple alternative, according to AskTom (http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:454220160386)
    ---------------- getcode.sql ----------------------------
    set feedback off
    set heading off
    set termout off
    set linesize 1000
    set trimspool on
    set verify off
    spool &1..sql
    prompt set define off
    select decode( type||'-'||to_char(line,'fm99999'),
    'PACKAGE BODY-1', '/'||chr(10),
    null) ||
    decode(line,1,'create or replace ', '' ) ||
    text text
    from user_source
    where name = upper('&&1')
    order by type, line;
    prompt /
    prompt set define on
    spool off
    set feedback on
    set heading on
    set termout on
    set linesize 100
    ------------------- eof --------------------------------
    it extracts one procedure, function or package to a file. Thats it. If you
    wanted to get all of the procedures in a schema extracted to the current working
    directory, you would run a script:
    --------------- getallcode ---------------------------
    set termout off
    set heading off
    set feedback off
    set linesize 50
    spool xtmpx.sql
    select '@getcode ' || object_name
    from user_objects
    where object_type in ( 'PROCEDURE', 'FUNCTION', 'PACKAGE' )
    spool off
    spool getallcode_INSTALL.sql
    select '@' || object_name
    from user_objects
    where object_type in ( 'PROCEDURE', 'FUNCTION', 'PACKAGE' )
    spool off
    set heading on
    set feedback on
    set linesize 130
    set termout on
    @xtmpx.sql
    ---------------- eof ---------------------------------
    You can see how to filter on that one by adding to the where clause if you want.
    Just run @getallcode_INSTALL to run all of the scripts...

  • Copying database objects and data from one server database to another server database in AG group

    Hi,
    I am still trying to wrap my head around sql clusters and AGs and I have a project that requires I take a vendor's database and restore it weekly so its available on the production server which is clustered.
    The vendor's database on the cluster is in an AG group and encrypted.
    Right now, I plan to restore the database on a sql staging server and use the SSIS Transfer SQL Server Objects Task to copy the table structure and data from Stage to the Production database of same name and I would first drop the objects in production
    database using the same task.
    I am concerned that this might cause issues with the passive cluster due to "logging" from active to passive. The database is about 260 MBs and I am not sure how many tables.
    Has anyone run into this type of scenario before or have a better solution?
    Thanks
    Sue

    IF I understand anything about clustered sql and logging, the sql server should take the log file and recreate the same scenario on the passive side of the cluster.
    Is that correct?
    Hi Sue,
    Yes, for AlwaysOn Availability Group, the transaction log is basically replayed from the primary to all of the secondary's.
    Besides, from my point of view, as we cannot directly restore a database that is part of an Availability Group, it is a good way using SSIS task to drop and recreate all tables then transfer data from the restored database to the primary replica. Schema changes
    and data changes will also happen on the secondary  replica.
    There are some similar links for your reference.
    http://dba.stackexchange.com/questions/21404/do-schema-changes-break-sql-server-2012-alwayson-or-are-they-handled-transpare
    http://blogs.msdn.com/b/sqlgardner/archive/2012/08/28/sql-2012-alwayson-and-backups-part-3-restore.aspx
    Thanks,
    Lydia Zhang
    If you have any feedback on our support, please click
    here.
    Lydia Zhang
    TechNet Community Support

  • Install Oracle 11G, RAC with VMWare, APPS R12, and OBIEE on one server?

    Dear Experts,
    I'm looking to upgrade my skills, and want to learn more of:
    Oracle 11G, RAC, VMWare, APPS R12, and OBIEE
    My server has two quad cores (8 CPU altogether) and 16 gigs of RAM.
    Years ago, I took a shots at installing RAC on multiple servers and firewire.
    One thing I remember was that after I installed RAC, I was not able to use the database unless I enabled all the RAC processes on the server. So, I was not able to just boot the database and use it in the traditional single server manner.
    Which I will also want to do.
    1) Does this symptom/aspect/characteristic of RAC install still exist?
    2) Is it realistic to install all this software on one server?
    If so, what is the order of operations for the install?
    3) If I have to prioritize, I'd like to install
    Oracle 11G, OBIEE, and APPS R12,
    Would installing R12 and OBIEE on the same server present any conflicts or issues?
    If not, what is the order of operations for the install?
    11G, R12, then OBIEE?
    Thanks a lot!

    Hi,
    1) Does this symptom/aspect/characteristic of RAC install still exist?No.
    2) Is it realistic to install all this software on one server?
    If so, what is the order of operations for the install?For learning/traning/demonstration purpose you can Install all these software on same machine.
    3) If I have to prioritize, I'd like to install
    Oracle 11G, OBIEE, and APPS R12,
    Would installing R12 and OBIEE on the same server present any conflicts or issues?
    If not, what is the order of operations for the install?
    11G, R12, then OBIEE?There will not be any conflicts. I would suggest you to select vmware or virtual box in order to configure all these sw's.
    I have done such a configuration on my laptop with i7 Quad processor, 16GB RAM and 640 GB HDD.
    I have Installed 2 node RAC, 2 Node ERP and all are running smoothly without any issues.
    Refer:
    http://appsdbaworkshop.blogspot.com/2011/10/11gr2-rac-on-linux-56-using-vmware.html
    thanks,
    X A H E E R

  • SCE CM and SM in one server?

    Hi,
    Can i install Subscriber Manager (SM) on the existing Collection Manager (CM) server?
    Can SM and CM work properly in one server?
    Any input is appreciated. Thank you

    eneral: IPV 6 Deployment in IPCC ,Rogger & CM.
    Posted by: cisco4kaleem - consultnat, al jeraisy
    Apr 5, 2009, 10:34pm PST
    HI
    As there is a plan to upgrade from IPV 4 to IPV 6 want to make sure if the system need to be upgrade to support IPV 6
    the version of Rogger A,B is MS Win 2003
    AWSA and B MS wind 2003
    CM A&B is 4.1 Windows 2000
    IVR A and B Windows 2000
    1. Current systems readiness for understanding the packet format of IPV6. This covers HW, SW (OS and DB), and Application
    2. Current systems readiness for migrating to the new IPV6. This covers HW, SW (OS and DB), and Application
    Appreciate early response.

  • Is it possible to show live and vod in one stream?

    hello
    i am playing here with fms i want to make a sort of home
    tv-channel
    i have created ".swf-tv_set" for the end user wich connects
    to my server
    the question is: what techniques should i use (on server-side
    maybe) to control what type of data (live or vod) is being streamed
    to the user? i have also created "director's swf" to switch between
    output data, but how can i switch live/vod in one stream, to which
    the user is already connected?
    thank you in advance.

    Hi mexxik,
    To switch between VOD and LIVE, you 're advised to code it at
    the SSAS as long as the LIVE stream is not coming from Flash Media
    Encoder.
    The SSAS could be something like below:
    application.userStream= Stream.get("currentStream");
    application.userStream.setBufferTime(0);
    application.userStream.play(videoSignal2,-1);
    Sidney

  • Is it possible to configure transaction and merge replication one database as a publisher?

    Hi All,
    We have a requirement to configure replication between the servers and its plan is as fallows:
    A------>B -- One way transactional replication ---  Already Configured
    A------> C --Merge Replication (Both ways)--- This is in plan
    1) Our requirement to configure Merge replication is to allow multiple users to access both publisher and subscriber databases. Configuring Merge replication with a combination of Transactional replication is correct or do we end up facing issues?
    2) A to B transactional replication is already configured so if we configure merge replication between A to C will effect existing replication?
    Please let us know if you need any details on this. Thank You.
    Grateful to your time and support. Regards, Shiva

    Hi Sir,
    Thanks for the information. But I have small doubt, "best to use merge all the way" is that mean you recommend to use Merge replication for all the servers.
    A------>B --
    Merge Replication (Both ways) 
    A------> C --Merge Replication (Both ways)
    Please correct me if I am wrong
    Grateful to your time and support. Regards, Shiva

  • Procedure Data Export and Import from One server to another server

    Dear all,
    I want to transfer my all Production Server data into Quality Server or Development Server. So how can i transfer my all data in this and please tell me procedure for transfer data into different server. and also tell me which server u preferred for store production data. Please help me out as soon as possible.
    Thanks in Advance
    Keyur chauhan.

    That is possible throgh Remote Client copy or Client Export Import depends on the size of data which you want to transfer.
    http://www.sap-basis-abap.com/bc/client-copy-from-production-to-quality-server-to.htm.
    http://help.sap.com/saphelp_erp2004/helpdata/en/69/c24c4e4ba111d189750000e8322d00/content.htm
    Please go through these links.
    I would prefer to transfer the data in QA system so that all the user testing can be done easily.
    Regards,
    Subhash

  • Migrating CMSA Assets and Data from one server to another

    Hello,
    Is there an official way to migrate the data from one CMSA installation to another one?  In the near future we're going to need to move from our development machine into the production environment, and it would be great if there was a way to get all the assets we've created in dev over to production without the need to manually re-create them all.
    Is this possible?
    Cheers,
    Kristian

    Check out http://help.adobe.com/en_US/LiveCycle/9.5/AssetComposerTechGuide/WS2bacbdf8d487e5824fb272 0612b944351b6-8000.html for this.

Maybe you are looking for