Oracle file handling in Virtual Environment

Hi Gurus,
We have a 9i environment, where file handling is being done till now.
The client now got migrated to 10g, on a virtual environment.
We are using external tables, and doing file operations (populating CSV files etc..) till now on 9i.
I heard that the concept of files (directory paths) does not exist on the VDC(Virtual Data Center) environment.
Can anyone clarify on this, why this can't happen, and if so what is the workaround for such cases.
Thanks & Regards
RK Veluvali

I've never had such problems, but I've sure heard about them (or problems like them) a fair amount over the years.
If you can report specific problems to Adobe here (1 problem per report), there is a chance it will do some good:
Recently active topics in Photoshop Family about Photoshop Lightroom
Note: one thing I realized way back is that I did not want to leave anything up to Lightroom (or chance), file-handling-wise, and so always assure my naming convention does not result in duplicate files. I NEVER want a -2 added to any of my files (ok, sometimes when testing, but otherwise: not). So anyway, to make a long story short, I recommend conventions and workflow which avoids the drama as much as possible.. - good luck (sorry I've not been more help..).
Rob

Similar Messages

  • Implementations of Oracle EBS on virtualized environment

    dear experts
    our company wants to implement Oracle EBS R12 on virtualized environment .
    is any one of you ever did such implementation or worked in such environment ??

    Some virtualization technologies are certified with EBS - pl see these MOS Docs
    Certified Oracle Solaris and SPARC Virtualization and Partitioning Technologies for Oracle E-Business Suite [ID 1234632.1]
    Using Oracle VM with Oracle E-Business Suite Release 11i or Release 12 [ID 465915.1]
    Support Position for Oracle Products Running on VMWare Virtualized Environments [ID 249212.1]
    HTH
    Srini

  • 11g in virtual environment

    Good day to all,
    I have certain questions regarding Oracle 11g working under virtual environment, and any information in this regard is most welcome.
    We are planning to migrate multiple existing databases(say 9i, 8i, 10g) on one bigger server with sufficient RAM, CPU and other resources.
    We are planning to migrate all the above databases on 11g and use some virtual environment software to install multiple 11g databases on that server.
    I think the migration should not be a big issue as we will use simple export and import.
    My questions and doubts in this regard are as follows
    (1) Is it practical to run production databases in virtual environment
    (2) Is 11g is mature enough to be used in such environment(or 10g r2 will be better option)
    (3) If one runs multiple databases or instances in virtual environment, how the Kernel setting of one database will effect the other one as I have heard that these virtual software’s( for example VMware) shares some common files for system resource.
    (4) Which OS will be a better option in such scenario(HP UX, SUN Solaris, Windows....)
    (5) If any one is working in such scenario can suggest his or her own experience.
    (6) Any other suggestion will be appreciated.
    Regards
    Ans

    (1) Is it practical to run production databases in virtual environment Yes
    (2) Is 11g is mature enough to be used in such environment(or 10g r2 will be better option) Yes. Infact, there are some really good features of 11g that you may want to consider. Deciding 10g or 11g, depends on the type of databases are in hand. It would be better if you'd do some testing on both environments to come to a better conclusion.
    (3) If one runs multiple databases or instances in virtual environment, how the Kernel setting of one database will effect the other one as I have heard that these virtual software’s( for example VMware) shares some common files for system resource.
    http://download.oracle.com/docs/cd/E11081_01/doc/doc.21/e10901/resources.htm#CJADCIHE
    http://download.oracle.com/docs/cd/E11081_01/doc/doc.21/e10898/ha.htm#insertedID1
    (4) Which OS will be a better option in such scenario(HP UX, SUN Solaris, Windows....) Depends on lot of things. If you use Oracle 11g, you may want to conseder Oracle VM with Oracle Unbreakable Linux/Oracle Enterprise Linux
    Hope it helps.
    Regards,
    Z.K.

  • File Handler Leak?

    After we upgrade to 4.0.71 from 3.0, we see multiple file handlers are opened for the last jdb file. We have 100+ clients and each clients have their own environment, thus caused us top the file handler limit on linux.
    We are using
    OS: Linux 2.6.18-92.1.6.el5 #1 SMP Fri Jun 20 02:36:06 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux
    The environment is writable.
    I would like to confirm if this is related to the issue fixed in 4.0.92:
    Fix a problem where cleaned and deleted log files could accumulate in the log cleaner's backlog, or list of files to be cleaned. This occurs when multiple cleaner threads are configured. The impacts of this problem are:
    1. The EnvironmentStats.getCleanerBacklog stat is incorrect, which could lead the application to unnecessarily increase the number of cleaner threads.
    2.
    3. If EnvironmentConfig.CLEANER_MAX_BATCH_FILES is set to a non-zero value, log cleaning is disabled when the number of deleted files in the backlog reaches this limit.
    [#18179]
    or is another bug or expected behavior.
    To be specific:
    I ran the lsof for the berkeley DB directory:
    java 13665 mybuys 147r REG 253,0 141869 25927939 /berkeley-db/00000000.jdb
    java 13665 mybuys 148r REG 253,0 141869 25927939 /berkeley-db/00000000.jdb
    java 13665 mybuys 279rw REG 253,0 0 25927936 /berkeley-db/je.info.0.lck
    java 13665 mybuys 280w REG 253,0 0 25927937 /berkeley-db/je.info.0
    java 13665 mybuys 281uw REG 253,0 0 25927938 /berkeley-db/je.lck
    java 13665 mybuys 282r REG 253,0 141869 25927939 /berkeley-db//00000000.jdb
    and note that there are 3 instances of 00000000.jdb. I only see one file hander to this file when server just restart. We have a periodical process to refresh the Berkeley DB from data feed, and we see two handler increased in each refresh. The environment handler, entityStore, and primaryIndex are all singleton per client.
    Can someone explain why there is a need to have multiple hanlders opened for one jdb file (and seems always the last one). Is there a workaround with it.
    Edited by: JoshWo on Mar 2, 2010 3:14 PM

    Everything you asked about is per environment, not per environment handle. In general, we never allocate expensive resources like file handles for each environment handle.
    For us, it is not critical to have many file handlers but we just need to be able to estimate before deployment so OS limit can be set correctly (I believe the max is 40K per process on Linux). Any formula to publish?For any environment:
    <li> Read-only handles: You can set the maximum to 3, but that is the smallest maximum you can specify. If you only have one log file then only one handle will be open. But if you have 3 log files, then 3 file handles may be opened.
    <li> je.lck: 1 handle is always open.
    For a read-write environment, there are the following 3 additional handles (added to the above):
    <li> Write handle: 1 handle for writing.
    <li> Fsync handle: 1 handle for fsync.
    <li> je.lck: 1 additional handle for exclusive locking.
    Also, you mentioned "maximum number of open-for-read handles is reached". Can you point a documentation link on this parameter or elaborate more here? Is it per environment handler or per environment?EnvironmentConfig.LOG_FILE_CACHE_SIZE is in the javadoc, in the je package.
    So overall (if you set LOG_FILE_CACHE_SIZE to 3), you should assume:
    -- 4 handles for a read-only environment
    -- 7 handles for a read-write environment
    I suggest you test this. I'm giving you these numbers by reading the code, not by testing.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Requirement for installing Oracle EBS on virtual environment

    Hi
    I have a server with oracle Linux 5. We have the requirement to install oracle EBS 12.1.3 in a virtual environment.
    for which I have downloaded the VM template files for x86-64 processor as matched to my server configuration.
    So how should I go with visualization.I have checked a few things over the net which says about Oracle virtual box, oracle virtual Server, oracle virtual manager.
    I am in confused state what to consider to do visualization.
    first time I am handling this visualization in my career.
    Thanks,
    Charan
    Edited by: charanjaitu on 24 Apr, 2013 3:10 PM

    Hi;
    Please review:
    https://blogs.oracle.com/stevenChan/entry/oracle_vm_templates_available_for
    Also see:
    Demo Vision Installation of Oracle EBS R12.1.3
    Regard
    Helios

  • Oracle Application Server 10g on a virtual environment

    Hi,
    Can anyone provide us the Step by Step approch to install Oracle Application Server 10g on a virtual environment on solaris cluster?

    HI,
    Oracle is provided two documents for OAS install in Solaris (32bit and 64bit).
    Here I am providing both documents.
    http://docs.oracle.com/cd/B31017_01/solx86.1013/install.pdf --- Oracle app server install 32bit
    http://docs.oracle.com/cd/B31017_01/sol.1013/install.pdf -- orcle app server install 64bit
    Award points it is useful.
    Thanks,
    satya

  • Config Pre-Built Oracle Virtual Environment for Minimalist

    Hi There
    I know you probably’ve got asked this question before - and i understand the 1GIG minimal requirement- , but is it possible to install the whole Pre-Built Oracle Virtual Environment, but then disable relevant components to clustering in order to utilize as a basic oracle environment.
    Alternatively is there a Pre-Built Oracle Virtual Environment for 9i.
    Regards
    Kayode

    Hi There
    I know you probably’ve got asked this question before - and i understand the 1GIG minimal requirement- , but is it possible to install the whole Pre-Built Oracle Virtual Environment, but then disable relevant components to clustering in order to utilize as a basic oracle environment.
    Alternatively is there a Pre-Built Oracle Virtual Environment for 9i.
    Regards
    Kayode

  • Oracle product not supported on Vmware virtual environment

    Members,
    Oracle certification says Oracle products running on Vmware virtual environment are not supported.
    One of my development Identity manager setup is running on Vmware virtual environment.
    As of now application is running fine and I am getting support from Oracle on product issues.
    Can anyone suggest what could be the impact of this in future and what types of issues I can expect in future.
    Thanks,
    S M

    Could you verify this behaviour outside a VMware virtual machine?
    If yes, then please open an SR on Metalink to let support diagnose.
    Provide an RDA, AWR snapshot if you have licensed the Diagnistic Pack - if not than provide STATSPACK snapshots.
    Sorry - but this is a database upgrade forum :-)
    Regards
    Mike

  • I need help on Oracle 9  file handler & utility packet!

    Hello ALL:
    I need to write a short SQL program to update the database via reading an external data file. How do I configure the standard oracle packet of oracle 9 to include the file handler? Please help me with details on oracle init files and some sample SQL commands to call the external file. I really appreciate the help. OracleUser.

    Tubby:
    Again, thank you. My answers to your feedback is Yes, No, Yes.
    I would thought that using the file handle would get the job done.
    Any how,
    1) how do I loop thru rows, say A1, A2.....A10,000 and use the content
    reading the this external table such as the content in A1 to compare against a certain column with many entries in a table in oracle using Loop/End Loop and select?
    2) What does oracle do the this external table at the end of session!
    3) Could I also create multiple external tables, let say 2?
    Thanks Tubby.

  • Oracle adf file handling af: inputFile and convert to binary to send in

    Hi ...
    I want to try to do is select a file by a <af: inputFile and convert it to binary without having to upload it to the UCM .... I have some idea of how it would be something like this ....
    <af:form usesUpload="true">
    <af:inputFile label="Upload:"
    valueChangeListener="#{backingBean.fileUploaded}"/>
    <af:commandButton text="Begin"/>
    </af:form>
    import java.net.MalformedURLException;
    import java.net.URL;
    import javax.faces.application.FacesMessage;
    import javax.faces.context.FacesContext;
    import javax.faces.event.ActionEvent;
    import javax.faces.event.ValueChangeEvent;
    import javax.xml.namespace.QName;
    import javax.xml.ws.Holder;
    import org.apache.myfaces.trinidad.model.UploadedFile;
    import org.tempuri.*;
    String Binary = new String();
    public void fileUploaded(ValueChangeEvent event) {
    UploadedFile file = (UploadedFile) event.getNewValue();
    if (file != null)
    FacesContext context = FacesContext.getCurrentInstance();
    FacesMessage message = new FacesMessage(
    "Successfully uploaded file " + file.getFilename() +
    " (" + file.getLength() + " bytes)");
    context.addMessage(event.getComponent().getClientId(context), message);
    public void llamarWs(UploadedFile file){
    URL url;
    try {
    Holder<String> holder = new Holder<String>();
    Holder<Boolean> holderResponse = new Holder<Boolean>();
    url = new URL("10.10.20.152:8088/VTDWEntelSAEDWS/DWSAEDService.asmx?wsdl");
    DWSAEDServiceSoap servicePort = new DWSAEDService(url, new QName("http://tempuri.org/","DWSAEDService")).getDWSAEDServiceSoap();
    servicePort.uploadDocument(holder, arg1, arg2, arg3, arg4, arg5, holderResponse);
    String respuest = holder.value;
    } catch (MalformedURLException e) {
      but I can not make it work ...
    Edited by: 892270 on 16-Aug-2012 08:46

    User, please always tell us your jdev version as the solution might depend on it.
    Instead of posting some code, can you please elaborate on the use case? From the code I don'T understand what you try to do. Data (file) uploaded through the af:inputFile is binary. The file may only be a text file, but it might be an image. The inputFile doen not know as it only represents the data stream send from the client.
    In you code I don't see that you actually read the data from the stream, neither do I see any action on the stream. Can you describe what you mean by
    but I can not make it work ...You may read http://tompeez.wordpress.com/2011/11/26/jdev11-1-2-1-0-handling-imagesfiles-in-adf-part-1/ for more info about file handling in ADF
    Timo

  • "virtual environment software"

    Hello!
    I'm researching about "grid computing" in Oracle. I'm just start, little_knownledge about it. If you have document or nkown about it, please help me.
    Thanks for your help!

    (1) Is it practical to run production databases in virtual environment Yes
    (2) Is 11g is mature enough to be used in such environment(or 10g r2 will be better option) Yes. Infact, there are some really good features of 11g that you may want to consider. Deciding 10g or 11g, depends on the type of databases are in hand. It would be better if you'd do some testing on both environments to come to a better conclusion.
    (3) If one runs multiple databases or instances in virtual environment, how the Kernel setting of one database will effect the other one as I have heard that these virtual software’s( for example VMware) shares some common files for system resource.
    http://download.oracle.com/docs/cd/E11081_01/doc/doc.21/e10901/resources.htm#CJADCIHE
    http://download.oracle.com/docs/cd/E11081_01/doc/doc.21/e10898/ha.htm#insertedID1
    (4) Which OS will be a better option in such scenario(HP UX, SUN Solaris, Windows....) Depends on lot of things. If you use Oracle 11g, you may want to conseder Oracle VM with Oracle Unbreakable Linux/Oracle Enterprise Linux
    Hope it helps.
    Regards,
    Z.K.

  • HOW: File handling - Date and time of file created/modified

    Hi all,
    Is there any way by which we can find out the date and time of the file created in operating system using file handling through PL/SQL.
    Eg:-
    I have a directory in which I am storing some files, and for a given file name I must know when that file was created, i mean date and time.
    Might be there is some simple way, please help out.
    regards
    CJ

    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:439619916584#73995149457661
    Remember to get the correct privs (java privs) on the directory.
    Mette

  • NFS: server reboot - client problem with "file handle" - no unmont

    Hello,
    when I restart a NFS-server and a client has a NFS-share on it still mounted, that NFS-share becomes unusable on the client: everything causes the client complain about an old "file handle", even trying to unmount that share!
    So my question is: How to deal gracefully with a NFS-server reboot and avoiding this file handle problem?
    Apart from going to each client and unmount the NFS-share by hand?
    Thanks!

    Do I need to Give these values manually again as they are moved from Env to other?
    When we transport ID objects, the values stored in the channel get lost and have to be manually enetered......it happens even for DEV --> QA environment.
    Now your channel should reflect PROD-related data.
    2- Why my Receiver communiation channel coimg as
    Communication Channel | PRD_400 | RFC_QA3_Receiver:
    The channel name does not depend on the environment it is present....verify the name once again!
    Regards,
    Abhishek.

  • Agent Unreachable, collection status: file handles exhausted

    Hi, I have a problem with management agent. Status of agent in grid control is Agent Unreachable. Here is an output of emctl status agent:
    Oracle Enterprise Manager 10g Release 5 Grid Control 10.2.0.5.0.
    Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
    Agent Version : 10.2.0.5.0
    OMS Version : 10.2.0.5.0
    Protocol Version : 10.2.0.5.0
    Agent Home : /opt/oracle/agent10g
    Agent binaries : /opt/oracle/agent10g
    Agent Process ID : 26832
    Parent Process ID : 26821
    Agent URL : https://bs11.xxxx.lan:3873/emd/main/
    Repository URL : https://gridcontrol.xxxx.lan:1159/em/upload
    Started at : 2010-07-06 14:24:30
    Started by user : oracle
    Last Reload : 2010-07-06 14:31:50
    Last successful upload : 2010-07-06 15:11:47
    Total Megabytes of XML files uploaded so far : 51.87
    Number of XML files pending upload : 4
    Size of XML files pending upload(MB) : 0.01
    Available disk space on upload filesystem : 60.35%
    Collection Status                            : File handles exhausted
    Last successful heartbeat to OMS : 2010-07-06 15:11:52
    I wonder what does this message mean Collection Status                            : File handles exhausted I can't find any solution to my problem, I tried restarting agent, clearstate, upload, resynchronization... all of this did nothing.

    Did you already check: Master Note for 10g Enterprise Manager Grid Control Agent Performance & Core Dump issues [ID 1087997.1]
    On http://support.oracle.com
    https://support.oracle.com/CSP/ui/flash.html#tab=KBHome%28page=KBHome&id=%28%29%29,%28page=KBNavigator&id=%28bmDocTitle=Master%20Note%20for%2010g%20Enterprise%20Manager%20Grid%20Control%20Agent%20Performance%20&%20Core%20Dump%20issues&bmDocDsrc=KB&bmDocType=BULLETIN&bmDocID=1087997.1&viewingMode=1143&from=BOOKMARK%29%29
    Regards
    Rob
    http://oemgc.wordpress.com

  • Java.lang.NoSuchMethodError: oracle.forms.handler.IHandler.getApplet()Ljava

    Hello to all
    I hope it is right forum for my question
    I have found for error I get in Directprint this following:
    When you migrate to the latest Forms version (10.1.2.3 or 11) and try using a JavaBean created with an older Forms version, you can get the following error, at runtime, in the Java Console:
    Exception in thread "thread applet-oracle.forms.engine.Main-1" java.lang.NoSuchMethodError: oracle.forms.handler.IHandler.getApplet()Ljava/applet/Applet
    The reason is you try to use a Java Bean compiled with an older Forms JAR file, like f90all.jar.
    So, to correct the issue, you have to change the Java code then re-create the JAR file:
    private Main formsMain = null;
    Replace:
    formsMain = (Main) handler.getApplet();
    by:
    // getting the Forms Main class
    try{
    Method method = handler.getClass()
    .getMethod("getApplet", new Class[0]);
    Object applet = method.invoke(handler, new Object[0]);
    if (applet instanceof Main) {
    formsMain = (Main)applet;
    }catch(Exception ex) {;}
    Then create and deploy the new JAR file to your /forms/Java folder.
    My problem is
    But I am very poor in java code, could you guide me to do what that article said, or pointing me where find instruction how do this following
    So, to correct the issue, you have to change the Java code then re-create the JAR file:Can I create Jar Directprint.jar, with command
    jar cf jar-file input-file(s)
    C:\DevSuiteHome_1\jdk\bin\jar cvf DirectPrint.jar DirectPrint.java
    Because when I open jdeveloper to associate (Creating JAR deployments using JDeveloper ) it got error (jdeveloper with debug
    Thanks for any help

    I hope it is right forum for my questionIt's not {noformat}:){noformat}
    Try {forum:id=82}
    Best,
    john

Maybe you are looking for

  • My apps wont update after upgrading to os 6

    Hi,   After upgrading my IPhone 3GS, it will not download and install apps that need updating. Always worked before the update. Anyone else having this problem?

  • Sales Analysis in COPA

    Hi, To my understanding data from fields Customer Groups 1-5 and Condition Group 1-5 get copied to sales orders and invoices for sales analysis. My question is that does the data have to be copied into a sales order and invoice for SALES ANALYSIS or

  • "Value Interaction" - "Navigate" not working properly in pivot table

    hi, if there is a column, columnX (the properties: value interaction -> navigate -> target : requestB) in request A and one of the columns in requestB is also columnX and in requestB, in the filter part, "the columnX is prompted" is set if the view o

  • Merge the total line about header and item in the Hierarchical Seq ALV

    Hello guys, Now i used CL_SALV_HIERSEQ_TABLE to create a Hierarchical Sequential ALV. but there are two total lines, one is to calculate the numerical fields in the header(main) and another is calculate the numerical fields in the item(slave). my req

  • Hr abp:custom infotype

    hii while creating custom infotye structure for status field in the domain level i maintaind 3 fixed values as follows   value     description   01               Notapplicable   02               Unsatisfactory   03               Need improvement when