Application and Oracle software in One file system.

DB Version:11g
We have a relatively busy OLTP financial application installed on the same file system as oracle software (ORACLE_HOME). Is it a good idea to install applications on the same file system as ORACLE_HOME? Will Oracle recommend this?

ExpansiveMind wrote:
DB Version:11g
We have a relatively busy OLTP financial application installed on the same file system as oracle software (ORACLE_HOME). Is it a good idea to install applications on the same file system as ORACLE_HOME?This is a fairly common scenario. As long as
- you have a decent system administratoir who knows how to monitor disk I/O and that monitoring does not show I/O contention
- you have decent (tested) backups and a good database backup strategy
- you are happy with performance
- your compliance auditors are satisfied
then there should be no real issue.
Will Oracle recommend this?Oracle will probably not get involved other than to discuss High Availability scenarios and point you to things like the Maximum Availability Architecture white papers at http://www.oracle.com/technology/deploy/availability/htdocs/maa.htm .
Now if you contracted their consulting/services group, they would likely do an evaluation of your specific needs and likely recommend separating things as a result of that evaluation.

Similar Messages

  • Installing Oracle databse in RAW file system

    Hi All
    Can you pls provide links or oracle documents to install Oracle database in RAW file systems...
    We have searched but didn't get any exact procedure to carry on ...
    Regards
    Hariharan.Thyagarajan

    Hi
    We have gone through some link and your's too , we can create logical disk in our disk drives, but we are not good in mapping the raw devices in the windows environment.
    say we have created raw devices partition for all tablesapces, spfile, redolog files etc in our disk drives, we are not good in maaping that in the DBCA OUI ?
    Can you pls help us on this ?
    Regards
    Hari

  • Common Supplier master database for Custom Applications and Oracle Financia

    Hi,
    We would like to build a custom applications (Multiple) for our organization core business operations using .NET on the database which is being used by Oracle financials R12.1.1. These custom applications are going to have its own application servers. BUT the database is common for both custom applications and oracle financials. This database is going to house on the Oracle RAC.
    We would like to have a common supplier master for both custom applications and Oracle payables. Could you please help me with below questions?
    1. How to create/Update/Query the supplier records in the supplier master tables provided by Oracle financials using custom applications?
    2. How can we store the additional data elements needed by each custom application? We can't use the DFF on the supplier tables as the data elements for each custom application is going to be different. even though they use same supplier.
    3. We might have multiple supplier with same name but different FEIN/SSN numbers. As per the design Oracle financials doesn't allow the same supplier name entered multiple times even though FEIN/SSN number is different. How can we workaround this limitation?
    Thanks,

    Hi,
    Please find my comments below:
    1. How to create/Update/Query the supplier records in the supplier master tables provided by Oracle financials using custom applications?
    A: You may use Supplier Open interface and Sites Interface to Create the Supplier Records. I don't think there is any API to update Supplier Info. Since both the applications exist on same database, I think you can query the Vendor tables from Custom applications also.
    2. How can we store the additional data elements needed by each custom application? We can't use the DFF on the supplier tables as the data elements for each custom application is going to be different. even though they use same supplier.
    A. Designing different tables depending on Custom Application ID and Vendor ID seems to be the only option.
    3. We might have multiple supplier with same name but different FEIN/SSN numbers. As per the design Oracle financials doesn't allow the same supplier name entered multiple times even though FEIN/SSN number is different. How can we workaround this limitation?
    A.One alternative is to create a single supplier with each FEIN/SSN number as site. Second one is to create Supplier Name concatenated with FEIN/SSN numbers as different suppliers and store the actual name in some DFF or other field. Standard functionality won't allow such duplication (Cannot Create Supplier/Employee With The Same Name Of Existing Supplier [ID 743430.1]).
    Hope it helps.
    Regards,
    Sridhar

  • How do I put a DVD in and transfer it as one file to my external?

    How do I put a DVD in and transfer it as one file to my external?

    What you are referring to is called "ripping".  You can use something like HandBrake which is free to do this.  HandBrake will not allow you to do this with commercial / encrypted content (e.g. most movies which you might purchase on DVD). 
    http://handbrake.fr/

  • JDeveloper and Oracle Software Packager

    Is there any integration between JDeveloper 3.2 and Oracle Software Packager.
    If not are there any standard 'Best Practices' for generating builds from JDeveloper in structures that can be used by OSP/OUI.
    null

    Please provide enough information for us to know what you are trying to do and with what version.
    You could be asking about anything from the box the software comes in (if it did) to built-in PL/SQL packages and we should not have to guess at your meaning.

  • Can anyone help me write a code about coping data from many files and paste them to one file !?

    Hello ! 
    As I said in title , I have alot files (e.g. 60 files) and I want to write a code to copy 5 columns (for examples) of special sheet of files and paste them in one file respectively. For perceive it I explained it more below .
    Suppose one of my files is simplified as this : http://s000.tinyupload.com/?file_id=00699705919876414523
    The name of  this file is 2006Oct and assume my excel files are like "2006Oct, 2006Nov,2006Dec,2007Jan ... 2010Dec". At first I should go to "my files" sheet of 2006Oct file and copy columns " A,B,C,D,E,F " that has "PerturbationNumber=1"
    respectively and then paste these to a file that is output file and repeat this process for the other files ( 2006Nov and etc ) and paste data in output file sequentially. 
    I appreciate and look foreward for any help in this issue.
    Majid

    Try code below
    Sub CombineBooks()
    Dim wb As Workbook
    Dim sourceSht As Worksheet
    Dim destSht As Worksheet
    Set destSht = ThisWorkbook.Sheets(1)
    destSht.Cells.Clear
    FolderName = "C:\temp\test\"
    file = Dir(FolderName & "*.xlsx")
    firstSht = True
    Do While file <> ""
    Set wb = Workbooks.Open(Filename:=FolderName & file, ReadOnly:=True)
    Set sourceSht = wb.Sheets(1)
    With sourceSht
    sourceLastRow = .Range("A" & Rows.Count).End(xlUp).Row
    If .Cells.AutoFilter Then
    .Cells.AutoFilter 'turn off autofilter
    End If
    .Cells.AutoFilter Field:=6, Criteria1:="1"
    If firstSht = True Then
    Set copyRange = .Range("A1", .Range("E" & sourceLastRow)).SpecialCells(xlCellTypeVisible)
    destSht.Range("F1") = "FileName"
    firstSht = False
    destNewRow = 1
    Else
    Set copyRange = .Range("A2", .Range("E" & sourceLastRow)).SpecialCells(xlCellTypeVisible)
    destNewRow = destSht.Range("A" & Rows.Count).End(xlUp).Row + 1
    End If
    copyRange.Copy Destination:=destSht.Range("A" & destNewRow)
    LastRow = destSht.Range("A" & Rows.Count).End(xlUp).Row
    If destNewRow = 1 Then
    destSht.Range("F2:F" & LastRow) = file
    Else
    destSht.Range("F" & destNewRow & ":F" & LastRow) = file
    End If
    End With
    wb.Close savechanges:=False
    file = Dir()
    Loop
    End Sub
    jdweng

  • Writing LabVIEW measurements of two loops (Charge cycle and discharge cycle) in one file

    Hey,
    I was wondering if it is possible to write Labview measurements from two loops (Stacked Sequence Structure) into one file. Currently, it is writing the charging data in one file and discharging data in one file. I have to combine the data everytime to graph the charge and discharge cycles and sometimes there's about 50 cycles and copying and pasting does take up lot of time. 
     I'll try to upload my vi in a bit
    Solved!
    Go to Solution.

    Hey Mike,
    I'm very new to Labview, could you please show an example.
    btw, I attached my vi and I didn't build it
    Message Edited by Support on 07-15-2009 11:27 AM

  • Can one network hard drive back up both a Mac and a PC?  What file system?

    We have both a Mac and a PC on our home network. I would like to use a network external drive to back them both up, instead of connecting each to its own external drive for backups. Iomega makes one, for example.
    The external drives I see advertised say that they are both Mac and PC compatible, but don't explicitly say that you can connect both at the same time. Can you?
    If so, what file system does the network drive use? Does it have a partition, one side with HFS for Mac and the other with NTFS for Windows? Is this really workable?
    And most importantly, will such a network drive work with TM?
    Confused,
    Barb

    I have a late 08 MackBook Pro and several Vista & XP machines. I currently backup the MBP and the primary Vista machine to a 1 TB drive attached via USB to an Airport Extreme router. No problems backing both up through the APE to the USB drive.
    The one thing I read when getting ready to set this up is that I should format the drive with the Apple file system, not one of the Microsoft file systems. I did (did it as an external drive off the MBP), and had no subsequent problems with Time Machine backups or Vista backups (using Acronis True Image).

  • ADF Application and Oracle Portal Login Page

    We have developed ADF application and deployed it in Oracle AS 10.1.2 along with the custom JAAS module, which is working fine with the application custom login page. As a next page, I want to use Oracle Portal login page for the authentication and authorization.
    How can I accomplished it? Any idea?
    Thanks,
    AP

    Shay,
    1. I created blank ADF project
    2. I copied myreport.jsp file (this one was generated by Oracle Report Builder) under ..ViewController/public_html directory
    3. Created directory 'lib' under ViewController/public_html/WEB-INF/lib
    4. Copied reports_tld.jar file under the directory created in 3.
    5. Created simple jspx page with the af:link (btw af:goLink does not exists in JDev 12c), set 'destination' to myreport.jsp
    After the steps above I could not even compile the application, many problems too many to list here, Basically JDev is trying to build the project with .jsp file generated in Report Builder and is unable to.
    So to be sure we are on the same page: I am trying to embed JSP report files generated by Report Builder into ADF project, then create EAR file and deploy on standalone WLS. Finally execute JSP web only report.

  • Deliver a report in XML format and save it to local file system on the server

    We have OBIEE 10.1.3.4 on Redhat linux. We want to have generate a report in XML format and saved it to the server's file system. Did not realize this is s difficult task. Basically
    1) How to create a XML report? It is not listed in the output items of a layout template.
    2) How to deliver XML the report  to local file system. Look into the Delivery section of Admin page. FTP should be the best choice, but does that means that one need to install and run ftp server on the BI server box?
    Thanks

    Hi,
    Since I still have problems on this subject, I would like to share on how it progresses.
    Currently I have a problem of timeout in step "Truncate XML Schema" with the URL that I mentioned above.
    The exact error is the following : 7000 : null : com.sunopsis.sql.l: Oracle Data Integrator TimeOut : connection with URL [...]
    The connection test is still OK.
    I tried to increase the value in the user's pref but there's no change.

  • Oracle financial application and oracle 8i problem

    Hi
    Every one,
    I install the oracle financial appliation and oracle 8i,
    it give following error messages
    " TNSLSNR.EXE unable to locate dll
    the dynamic link library orancrypt8.dll could not find path
    G:\oracle\bin............ "
    oracle financial application successfuly installed.
    I installed nt 4 service pack 6a,
    I start the " owsctl start wrb "
    " owsctl start admin "
    owsctl start <listener> already start.
    Please inform me what is the problem ? what step I am missing
    during running the oracle financial application ?
    How I could install and run the oracle financial application ?
    any one can inform me about the steps of installation and runing
    of oracle financial application ?
    secondly, oracle 8i is also not working, it give error messange
    tns error message.
    oracle financial and oracle 8i installed on separate dirtory.
    advane thanks for guidance
    Mateen
    [email protected]
    (may reply by e.mail)

    The sofware that I use 4 this purposal is MS RegClean and it's woorking fine if U don't like 2 do that manualy.
    Ivan Slade

  • Can we use both Stand alone and Extended classic in one SRM system

    Hi All,
    Our client is now using Stand alone SRM system with back-end R/3 FI-CO system. Now they want to go Extended classic scenario for few product categories.
             Would it be possible to use both in one SRM system? If possible could you please provide what are the sequential steps to do this?
                 Thanks in advance.
    Regards,
    Ram

    Hi Ramesh,
    How did you end up solving your problem, as i have the same scenario.  Did you use this BADI (
    SRM Server->Business Add-Ins->Control Extended Classic Scenario->Activate Extended Classic Scenario)?  Based on my reading, it seems this BADI is relevant to switch between extended classic and classic scenarios. 
    From what i understand, we can control the standalone scenario via the define backend system configuration (SAP SRM -> SRM Server -> Technical Basic Settings -> Define Backend System for Product Category).  In my scenario, I have one set of product categories, so i will likely need to implement this BADI (BBP_DETERMINE_LOGSYS, method:   DETERMINE_LOGSYS - SAP SRM -> SRM Server -> Business Add-Ins ->Shopping Carts and Requirement Items -> Determine Backend System / Company Code) in order to determine the correct backend system based on company/plant for example. 
    Did you then leave the extended classic scenario activated (IMG --> Supplier Relationship Management -> SRM Server-> Cross-Application Basic Settings->
    Activate Extended Classic Scenario)? 
    Or how did you achieve both standalone and extended classic using one SRM server?
    cheers,
    AD

  • C++ Application and Oracle Data Source

    Hi everyone,
    I am a bit of a newbie in this domain so am a bit confused with some of the options I have for my task. My task is to have a C++ application which will write/read/update data to/from an Oracle database. What are my options in this case?
    I have read about OCI and OCCI, about ODBC drivers etc. but how does it fit in. If I use OCI or OCCI, do I need an ODBC driver (since from what I have seen, these aren't available for free and free is also one of the requirements)? If not, what do I need to be able to use OCI or OCCI?
    If I am wrong and there are free ODBC drivers for Linux, where can I find them?
    Or does this whole question sound like garbage? :(
    Thanks in advance.

    Hi,
    This is my experience, if you know for sure that your application is going to execute always against a Oracle Data source, perhaps you shouldn't use ODBC and you should go for OCCI. This should be a good starting point:
    http://www.orafaq.com/faq/oci
    And here is another question, how can I set up a development environment to compile a C++ application (written using ODBC) on a Solaris server? I need the headers and the library against which I have to link the application. My Oracle database is 9.2.0.4.0.
    Any help will be appreciated. Thanks!

  • IO - Read two image files and put them into one file

    Hi,
    i have 3 files in all. The two image files and one text file. I need to place the image in the first image file, followed by text in the text file and then the image in the second image file, into one file.
    Can anyone tell me how do i go about doing this ?
    i tried using fileinputstream and fileoutputstream, which works fine if all the 3 files have text but when the first and the third file have image, the code doesn't give any error but the result file displays only the image from the first file and nothing else.
    i am running short of time and need to do this really soon.
    if anyone has done anything like this. please let me know,
    thanx,
    poonam

    One approach would be to programmatcally create a single zip/jar file from the three input files. You can use the java.util.zip and java.util.jar packages for this purpose.
    The other apprach would be to create a single image by drawing images and text strings on a BufferedImage object.
    I think the first approach is preferable because you can easily extract the individual files from the zip/jar file

  • Performance Issue : Application and oracle database in different sub-net

    Hi,
    We have an 24/7 application that uses oracle 11g R2 as the back end database. The application sits on a separate box and the oracle database sits on a separate box.
    Unless we keep both the machines in the same sub-net, the throughput of the application becomes very slow and kind of un-usable in performance setups.
    In fully loaded conditions, the application will be inserting around 12K records per minute into the database. In such scenario, restarting the application takes longer time (more than 2 hours) when the oracle server is on a different network as compared to the application. In real world, the oracle will be in a separate dedicated network and the DBAs resist to have an application in the same sub-net.
    Is there a way we can keep the application and the oracle database server in a different network (but present in same location) and achieve same throughput/performance when both servers are on same subnet.
    Thanks,
    Krishna

    871609 wrote:
    Hi,
    We have an 24/7 application that uses oracle 11g R2 as the back end database. The application sits on a separate box and the oracle database sits on a separate box.
    Unless we keep both the machines in the same sub-net, the throughput of the application becomes very slow and kind of un-usable in performance setups.
    In fully loaded conditions, the application will be inserting around 12K records per minute into the database. In such scenario, restarting the application takes longer time (more than 2 hours) when the oracle server is on a different network as compared to the application. In real world, the oracle will be in a separate dedicated network and the DBAs resist to have an application in the same sub-net.
    Is there a way we can keep the application and the oracle database server in a different network (but present in same location) and achieve same throughput/performance when both servers are on same subnet.
    Thanks,
    KrishnaHave the DBAs explained why they resist having the apps and db servers in the same subnet? Every place I've ever worked configured it exactly that way ... db and apps servers on different machines in the same subnet.

Maybe you are looking for

  • What Changes is Reqd in Int. Process to proces Multiple record by  1..1 RFC

    HI Sdner, File -  ECC - RFC (Sync) - Currently File / But This can be Other System also. I have Done this By BPM . File  - Receiver Step - Sender Step (Sync) - Sender Step - File . and this is running fine for single record. But Now Problem is RFC is

  • Problem while installing bluetooth driver

    I am using windows 7 ultimate OS in my dell Inspiron N5110. There is no Bluetooth icon in my control panel and because of that I cannot connect my Bluetooth devices to my laptop. While I was downloading Bluetooth driver from an external source a wind

  • Macbook or MacBookPro?

    Hey guys, I have a MacBook and im just not sure if I should sell it and buy a MBP. The reason is because I am planning to start video editing with FCE 4 also buying a video camera?I just think my MB could not handle the editing? Thanks, Josh

  • My Itunes freezes or "not responding"

    I recently got the ipod video 60GB and I uploaded multiple videos on my itunes. Before it was working fine. Now whenever i try to open it, the screen comes up then freezes almost immediately. I tried to reinstall it and did virusscans, and nothing. W

  • Re: Standard BI Query

    Guys, I have activated the standard query time-to-fill, i am getting an error Value '-1' is invalid for property 'Ref. Characteristic' of element 'Time-to-Fill (Days)' I checked the exception aggregation, Under Exception aggregation points to use sta