Doubt with integration of excel with oracle DB!

Hi friends,

I have an ee 10g I deal on win XP SP2 on virtual box I am able to run isqlplus so my box as my host. I wanted to fill in some data from the database to the current excel worksheet in the host machine. I need step involved in the fulfillment of this or of the documentation would help me better.

Kind regards
Maury

http://www.orafaq.com/wiki/ODBC_FAQ#How_does_one_get_Oracle_data_into_MS-Excel.3f

Tags: Database

Similar Questions

  • Doubt with Oracle reports Format Trigger

    Hi friends,

    I created a format trigger in oracle reports is the code
    Function F_Department_NameFormatTrigger return Boolean is
    v_report_url varchar2(300);
    Begin
     v_report_url :=‘http://localhost:8888/reports/rwservlet?
    report=empReport.rdf&userid=hr@orcl&destype=cache&desformat=htm
    lcss&p_dept=’||:department_id;
    SRW.SET_HYPERLINK (v_report_url);
    Return (TRUE);
    End;
    but I get an error rep-0738: only one feature is allowed here can u please let me know what's wrong in this encoding.

    Kind regards
    Maury

    You are probably using the wrong quotes. Please try this:

    Function F_Department_NameFormatTrigger return Boolean is
    v_report_url varchar2(300);
    Begin
     v_report_url :='http://localhost:8888/reports/rwservlet?report=empReport.rdf&userid=hr@orcl&destype=cache&desformat=htmlcss&p_dept='||:department_id;
    SRW.SET_HYPERLINK (v_report_url);
    Return (TRUE);
    End;
    
  • Integration of the OPA 10.4 with Oracle E-business Suite

    We have a requirement for the integration of the OPA 10.4 with Oracle E - business suite.

    The condition is hypocritical:

    (1) EBS can call rules of the takeover bid on any screen - I think that this will be achieved by Oracle determinations Server (ODS) with probably a middleware between both to facilitate the exchange of webservice.

    Request- I just wanted to know if there is another way to better or if it is only best option?

    Are there examples of projects or pointers that can help us get a better understanding of the present?

    (2) given certain conditions of release in EBS, the modules of the OPA may be invoked, but this time there may be a few involved OPA interview screens.

    Request- How to proceed and achieve this goal?

    Any help on the above queries is really appreciated.

    (1) it is for an older version of OPA, but you might find something useful in this tutorial.

    (2) launch a browser window in passing a single parameter "caseid" to OPA startsession URL, so that a data adapter that you write can load and save data interviews of EBS based on the id of the object.

  • Using Oracle Partition Exchange with Oracle Data Integrator (ODI) 11g

    Hello

    I'm trying to follow http://www.ateam-oracle.com/configuring-oracle-data-integrator-odi-with-oracle-partition-exchange/

    But impossible to get the same options in 11g.

    Can I use the Exchange Partition Oracle 11g ODI.

    Thank you.

    Yes, exchange of partition is certainly possible in ODI 11 g

  • WebCenter content can be integrated with Oracle iStore or Oracle EBS?

    Hello

    WebCenter content can be integrated with Oracle iStore (as seeds/integration without many glitches/modification) or Oracle EBS as a whole?

    Thanks in advance.

    Srinivas

    Hi Srinivas,

    Yes, ECM can be integrated with Oracle EBS (suite business enterprise) and thus other Oracle applications such as Peoplesoft, Siebel etc..

    Details can be read from the following link: http://docs.oracle.com/cd/E23943_01/doc.1111/e17953/toc.htm

    Thank you
    Srinath

  • Integrate Oracle BI Publisher with Oracle Form [authentication]

    Report & Oracle FMW 11g R2 (11.1.2) form

    Oracle BI Publisher 11.1.1.6

    Oracle Database 11 g Release 11.2.0.4.0 - 64 bit Production


    With the help of the link below, I want to integrate Oracle BI Publisher with Oracle form

    http://www.Pitss.EU/fileadmin/Pitss/images/de/White_Papers/White_paper_BIPublisher_WebServices.PDF

    But I need to know one thing, as mention in link, weblogic user/pwd in the java code for authentication with BI Publisher, above

    My Question here, what is the best way to manage authentication with BI Publisher while integrating with Oracle Form?

    I think, in a document, just to mention for example,

    It will not be advisable if keeping the user weblogic/pwd in Java code, at the end of this java code becomes a jar file and deployed to the server and then downloaded to the client computer. ensure that completely and the values are hardcoded, if the password change question once again, this means having user/pwd in jar will never be a good solution.

    For a quick overview, I'd do it keep advice the user/pwd in db in encrypted form and access to oracle form with decrypted and pass the value in the api ReportServiceClient.CallRunReport)

    If you feel, every time you need to access user/pwd of db and decypte it, that I advise you here, get user/pwd when set in the context of db and out of context with decrypted.

    Another may be the best idea.

  • doubt with the creation of the sales order

    Hi all, I have a doubt with the creation of the order customer. When we get into the details of the order I found that according to the type of order we should decide whether to enter PO # or not (Source: _ http://docs.oracle.com/cd/A60725_05/html/comnls/us/oe/ordreqfd.htm _).

    My doubt is, so how can we find requiring an order Type PO # to be included on the sales order form. I mean, can we find from a query or there are defined rules...

    Any help is appreciated,

    Thanks in advance!

    Published by: Sandy on April 17, 2012 11:28

    Look for po_required_flag in oe_transaction_types_all

    Sandeep Gandhi

  • Doubt with an Insert query!

    Hi friends I have a doubt with a SQL here is the following code.
    INSERT INTO
                         (SELECT employee_id, last_name,
                                      email, hire_date, job_id, salary,
                                      department_id
                           FROM employees
                          WHERE department_id = 50)
               VALUES (99999, 'Taylor', 'DTAYLOR',
                            TO_DATE('07-JUN-99', 'DD-MON-RR'),
                             'ST_CLERK', 5000, 50);
    The same insert statement can be performed with
    INSERT INTO EMPLOYEES (employee_id, last_name,
                                      email, hire_date, job_id, salary,
                                      department_id)
                        VALUES (99999, 'Taylor', 'DTAYLOR',
                            TO_DATE('07-JUN-99', 'DD-MON-RR'),
                             'ST_CLERK', 5000, 50);
    What advantage the first request has on the other.

    Thanks in advance to everyone.

    Kind regards
    Maury

    These two statements are the same.

    However, it would be different:

    INSERT INTO
      (SELECT employee_id, last_name,
            email, hire_date, job_id, salary,
            department_id
       FROM employees
       WHERE department_id = 50
       with check option )
    VALUES (99999, 'Taylor', 'DTAYLOR', TO_DATE('07-JUN-99', 'DD-MON-RR'), 'ST_CLERK', 5000, 50);
    

    "WITH CHECK OPTION" would ensure that only employees for Department 50 are inserted.

    See also:
    http://download.Oracle.com/docs/CD/E11882_01/server.112/e17118/statements_10002.htm#i2066598

    Published by: Sven w. March 17, 2011 19:22 - typo correction

  • Can't integrate the OAF with Oracle workflow pages

    Dear friends,
    I am a newcomer is OAF.
    So you please help me by giving a paper on the OPS integration with Oracle workflow form pages.
    I need a step by step tutorial.


    Help, please

    Hi Dina

    I want to say is you can call the workflow of a plsql procedure using the code given by me in my previous answer, and the link I gave shows you how to call a procedure the FPÖ plsql. In this way, you can get the functionality.

    Thank you
    AJ

  • Exerted on the free Oracle OLAP features with Oracle 11 g EE?

    Hello

    Exerted on the free Oracle OLAP features with Oracle 11 g EE?

    Information found on the Internet:

    -Oracle Corporation markets the Oracle database OLAP Option optional additional costs to complete the "Enterprise Edition" of its database.
    -Oracle OLAP database is it preinstalled with the rest of the Oracle database ERA. You just need her license for use on the Machine of DB when you choose to use it.
    -Oracle OLAP is a multidimensional analytical engine world class integrated into the Oracle 11 g database.

    Please confirm if I can try some OLAP features in my office where I have Oracle 11 g what EE installed as asked me to do an initial POC?

    Kind regards
    Sudhir

    Hello

    I think that the OLAP license is covered by the OTN Developer License - http://www.oracle.com/technetwork/testcontent/standard-license-088383.html

    You should contact your representative local Oracle sales if you are still not sure

    Thank you

    Stuart Bunby

    OLAP blog: http://oracleOLAP.blogspot.com
    OLAP Wiki: http://wiki.oracle.com/page/Oracle+OLAP+Option
    OLAP OTN: http://www.oracle.com/technology/products/bi/olap/index.html
    DW OTN: http://www.oracle.com/technology/products/bi/db/11g/index.html

  • Advantage of the portfolio after the migration to HSM with Oracle 11.2.0.1.0

    Hello

    I found this integration for Utimaco Cryptoserver guide: http://hsm.utimaco.com/solutions/db-encryption/ and now I wonder if it is necessary to keep the original portfolio after the migration of HSM with Oracle 11.2.0.1.0. As I understand it, eventually all the necessary keys are stored in HSM. Is still used portfolio in a way or is it possible to reuse maybe after you set the METHOD to FILE sqlnet.ora?

    Thank you

    Hi flyer007,

    If you used the Wallet before Oracle, then migrate the master key of TDE from there to an HSM is a renewal of key operation; the keys of the table (for the TDE column encryption), and tablespace (for TDE tablespace encryption) key is decrypted with the old key in the portfolio) and encrypted again with the new MK unified (in the HSM).

    Your RMAN backup files, export files Data Pump and same 'live' in the redo logs, TEMP and UNDO tablespace can be encrypted with the old MK in the wallet, that's why we NEVER delete the portfolio.

    Of course, the Oracle database automatically knows what MK he needs.

    Good luck

    Peter

  • Is avilable Vault database with Oracle EBusiness Suite?

    Hello

    I want to know if the Oracle Database Valut installation option comes with Oracle EBusiness Suite, or we need to install it separately as part of the installation of the database?

    Thank you and best regards,
    Srikanth

    I think that you must install it separately. Check the MOS

    Integration of Oracle E-Business Suite Release 11i with Oracle Database Vault 10.2.0.4 - 428503.1

    HTH
    -André

  • Run with Oracle Web determinations/Oracle determination server problems

    Dear OPA team

    I have problems to run my project within the "run with determination determinations/Oracle Oracle Web server.


    When I do build and run with Oracle Server of determination: I get the message "cannot copy the Oracle determination to destination server files."

    When I do build and run with ' Oracle Web determinations I get error message on my web browser, the message is detailed below

    Any help would be appreciated
    Thanks K

    /////////////////////////////////////////////////////////////////////////////////////////////////////
    Error message in the browser (firefox and IE).
    ////////////////////////////////////////////////////////////////////////////////////////////////////


    Type Exception report

    Message

    Description the server encountered an internal error () that prevents to satisfy this demand.

    exception

    javax.servlet.ServletException: Servlet.init () for servlet WebDeterminationsServlet threw the exception
    org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
    org. Apache.Coyote.http11.Http11Processor.Process (Http11Processor.Java:873)
    org. Apache.Coyote.http11.Http11BaseProtocol$ Http11ConnectionHandler.processConnection (Http11BaseProtocol.Java:665)
    org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
    org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
    org.apache.tomcat.util.threads.ThreadPool$ ControlRunnable.run (ThreadPool.java:689)
    java.lang.Thread.run (unknown Source)

    first cause

    com.oracle.determinations.web.platform.exceptions.WebDeterminationsException: could not initialize Velocity Engine of Templating
    com.oracle.determinations.web.platform.templatingengine.VelocityTemplatingEngine. < init > (VelocityTemplatingEngine.java:97)
    com.oracle.determinations.web.platform.servlet.WebDeterminationsServletContext.init(WebDeterminationsServletContext.java:167)
    com.oracle.determinations.web.platform.servlet.WebDeterminationsServletContext. < init > (WebDeterminationsServletContext.java:91)
    com.oracle.determinations.web.platform.servlet.WebDeterminationsServlet.init(WebDeterminationsServlet.java:51)
    org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
    org. Apache.Coyote.http11.Http11Processor.Process (Http11Processor.Java:873)
    org. Apache.Coyote.http11.Http11BaseProtocol$ Http11ConnectionHandler.processConnection (Http11BaseProtocol.Java:665)
    org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
    org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
    org.apache.tomcat.util.threads.ThreadPool$ ControlRunnable.run (ThreadPool.java:689)
    java.lang.Thread.run (unknown Source)

    first cause

    org.apache.velocity.exception.VelocityException: failed to initialize an instance of org.apache.velocity.runtime.log.Log4JLogChute with the current run configuration.
    org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:206)
    org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:255)
    org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:795)
    org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:250)
    org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:589)
    org.apache.velocity.app.VelocityEngine.init(VelocityEngine.java:135)
    com.oracle.determinations.web.platform.templatingengine.VelocityTemplatingEngine. < init > (VelocityTemplatingEngine.java:95)
    com.oracle.determinations.web.platform.servlet.WebDeterminationsServletContext.init(WebDeterminationsServletContext.java:167)
    com.oracle.determinations.web.platform.servlet.WebDeterminationsServletContext. < init > (WebDeterminationsServletContext.java:91)
    com.oracle.determinations.web.platform.servlet.WebDeterminationsServlet.init(WebDeterminationsServlet.java:51)
    org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
    org. Apache.Coyote.http11.Http11Processor.Process (Http11Processor.Java:873)
    org. Apache.Coyote.http11.Http11BaseProtocol$ Http11ConnectionHandler.processConnection (Http11BaseProtocol.Java:665)
    org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
    org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
    org.apache.tomcat.util.threads.ThreadPool$ ControlRunnable.run (ThreadPool.java:689)
    java.lang.Thread.run (unknown Source)

    first cause

    java.lang.RuntimeException: Log4JLogChute configuration error:
    sun.reflect.NativeConstructorAccessorImpl.newInstance0 (Native Method)
    sun.reflect.NativeConstructorAccessorImpl.newInstance (unknown Source)
    sun.reflect.DelegatingConstructorAccessorImpl.newInstance (unknown Source)
    impossible (unknown Source)
    org.apache.velocity.util.ExceptionUtils.createWithCause(ExceptionUtils.java:67)
    org.apache.velocity.util.ExceptionUtils.createRuntimeException(ExceptionUtils.java:45)
    org.apache.velocity.runtime.log.Log4JLogChute.initAppender(Log4JLogChute.java:133)
    org.apache.velocity.runtime.log.Log4JLogChute.init(Log4JLogChute.java:85)
    org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:157)
    org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:255)
    org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:795)
    org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:250)
    org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:589)
    org.apache.velocity.app.VelocityEngine.init(VelocityEngine.java:135)
    com.oracle.determinations.web.platform.templatingengine.VelocityTemplatingEngine. < init > (VelocityTemplatingEngine.java:95)
    com.oracle.determinations.web.platform.servlet.WebDeterminationsServletContext.init(WebDeterminationsServletContext.java:167)
    com.oracle.determinations.web.platform.servlet.WebDeterminationsServletContext. < init > (WebDeterminationsServletContext.java:91)
    com.oracle.determinations.web.platform.servlet.WebDeterminationsServlet.init(WebDeterminationsServlet.java:51)
    org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
    org. Apache.Coyote.http11.Http11Processor.Process (Http11Processor.Java:873)
    org. Apache.Coyote.http11.Http11BaseProtocol$ Http11ConnectionHandler.processConnection (Http11BaseProtocol.Java:665)
    org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
    org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
    org.apache.tomcat.util.threads.ThreadPool$ ControlRunnable.run (ThreadPool.java:689)
    java.lang.Thread.run (unknown Source)

    first cause

    java.io.FileNotFoundException: velocity.log (access is denied)
    java.io.FileOutputStream.openAppend (Native Method)
    java.io.FileOutputStream. < init >(Unknown Source)
    java.io.FileOutputStream. < init >(Unknown Source)
    org. Apache.log4j.FileAppender.SetFile (FileAppender.Java:290)
    org. Apache.log4j.RollingFileAppender.SetFile (RollingFileAppender.Java:194)
    org. Apache.log4j.FileAppender. < init > (FileAppender.java:109)
    org. Apache.log4j.RollingFileAppender. < init > (RollingFileAppender.java:72)
    org.apache.velocity.runtime.log.Log4JLogChute.initAppender(Log4JLogChute.java:118)
    org.apache.velocity.runtime.log.Log4JLogChute.init(Log4JLogChute.java:85)
    org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:157)
    org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:255)
    org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:795)
    org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:250)
    org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:589)
    org.apache.velocity.app.VelocityEngine.init(VelocityEngine.java:135)
    com.oracle.determinations.web.platform.templatingengine.VelocityTemplatingEngine. < init > (VelocityTemplatingEngine.java:95)
    com.oracle.determinations.web.platform.servlet.WebDeterminationsServletContext.init(WebDeterminationsServletContext.java:167)
    com.oracle.determinations.web.platform.servlet.WebDeterminationsServletContext. < init > (WebDeterminationsServletContext.java:91)
    com.oracle.determinations.web.platform.servlet.WebDeterminationsServlet.init(WebDeterminationsServlet.java:51)
    org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
    org. Apache.Coyote.http11.Http11Processor.Process (Http11Processor.Java:873)
    org. Apache.Coyote.http11.Http11BaseProtocol$ Http11ConnectionHandler.processConnection (Http11BaseProtocol.Java:665)
    org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
    org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
    org.apache.tomcat.util.threads.ThreadPool$ ControlRunnable.run (ThreadPool.java:689)
    java.lang.Thread.run (unknown Source)

    Note the trace of the full stack of the root cause is available in the Apache Tomcat/5.5.28 logs.


    /////////////////////////////////////////////////////////////////////////////////////////////////////
    QEnd of Error Message in the browser (firefox and IE).
    ////////////////////////////////////////////////////////////////////////////////////////////////////

    Hello!

    An addition to this small issue, but I do not know if this persists at the time that as I write this.
    From my experience it IS certainly a related permission/security problem, we met it when setting the OPA users on a Windows 7 operating system. User on Windows 7 permissions should allow the OPA write in specific folders and files (when the server starts Tomcat integrated this way: choose Build > build and debug... and with screens).
    When a regular user of Win 7 is trying to debug a project with screens, it receives the error mentioned above (even if the user was added later to the Administrators group).
    Solution: you choose the run as Administrator option in the context menu at the launch of OPA on the desktop. In this way the permission error (and all Java exceptions) disappeared and all the functions of the OPA worked as expected.
    To configure a user in Windows 7 to launch takeover bids like this, the attribute special user must be set on the user properties page > membership to be administrator tab (I think this is true for all the Windows operating system newer than Win XP SP3).

    Best regards
    Andrew

  • OID/OAM with Oracle E-Business Suite

    Hello world

    OID is integrated successfully with Oracle E-Business Suite. Administrator as SYSADMIN, COMMENTS are able to login and access E-Business Suite with the redirected OID/SSO login Page. These users are migrated under OU = Finance, OU = employees, dc = myorg, dc = com via the load utility bulk OID.

    Via the OIDDAS Console (http:// < myorg >: 7777/oiddas), under Setup tab-> add an entry for OU = Finance, or = employees, dc = myorg, dc = com for the basis of creating users. OID administrator created a new user (i.e. the user fintest) under finance container through the console of OIDDAS and the same user is implemented in E-Business Suite Database under table FND_USER provided with a Globally Unique Identifier.

    (1) user created through the OIDDAS console will launch and access E-Business Suite URL (http:// < myorg >: 8000)
    (2) page of redirect OID/SSO Login appears.
    (3) fintest user will provide required login and password value to connect.
    (4) E-Business Suite homepage will be displayed for users fintest.

    I had a UI presentation layer where Oracle Access Manager is installed with the Server LDAP OID. Created a new workflow user finance Molok (OU = Finance, OU = employees, dc = myorg, dc = com). OAM administrator has created a new user (i.e. the user fintest2) under Finance container through workflows OAM and the same user is not supplied with E-Business Suite Database under table FND_USER provided with a Globally Unique Identifier.

    (1) user created through Workflows OAM will launch and access E-Business Suite URL (http:// < myorg >: 8000)
    (2) page of redirect OID/SSO Login appears.
    (3) fintest2 the user will provide required login and password value to connect.
    (4) in E-Business Suite oracle has not been linked with the Single-Sign-On account in place and place the homepage of E-Business.

    Note: We do not expect to make integration with OAM with Oracle E-Business Suite.

    Has anyone faced this kind of question. Please let me know your pointers.

    Thank you
    Ajay

    Hello

    Connect to Oracle Internet Directory, search EBusiness provisioning profile, remove the attribute of orclisenabled user profile in IDENTITY and SUBSCRIPTION list of areas for the properties of the parameter orclodipprovisioningeventsubscription.

    Thank you
    Ajay Babu Pentela

  • Reviews of loading fails with Oracle DB but DB SQL

    Hello

    When I tried to use the newspaper to charge, the registration procedure was pass.
    After I clicked on the message button, an error message showed as follows:
    ==================================================
    Error: Failed to import files.
    Details: Invalid procedure call or argument File=C:\Hyperion\FDM\t01\Inbox\Journal.xls
    StackTrace:
    upsMPLDMw.clsMPLoaderClass.fMultiImportExcel (colLS [colLoadSet &])
    Hyperion.FDM.Pages.MultiLoad.ImportButton_Click (sender As [Object], e [EventArgs])
    ==================================================

    However, I tried the same sheet excel template file on an other Soft FDM which
    repository backend, sql Server 2005, was different from the previous one, the
    validation process is OK.
    I also found this journal ' multi-Load Model: Import "as follows:
    ==================================================
    News of the event: Bulk Import failure on the record!
    Error code: 5
    E/s Source: C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tWfdadmi14356153002314.tmp
    ==================================================

    The original FDM 9.3.1 app was based on the oracle 10.2.0.4 repository.
    So I wonder what there should be a few bugs when the FDM generates oracle import in the log file.
    I can't find any bug report or attached to this subject on the website of oracle patch support.

    Did someone meet this similar problem?
    Or what configuration setting should I set?
    Any advice would be appreciated.
    Thank you ~.

    Tony

    Hello

    Try changing the Type of load of places to SQL Insert
    Metadata > locations > select the locations > load Type > SQL Insert

    I encounter the same problem yesterday with Oracle DB

    Mac

  • Develop the encryption Transparent data with Oracle 10 g XE

    Currently I develop an application that will require encrypted in some tables columns, I will recommended to the customer buying an Oracle database for the application and that you have installed Oracle 10 g XE to begin development, I found that I can't create tables with columns TDE tho I can't create a portfolio. I searched the forums and found that a portfolio manager is not available with Oracle XE.

    My plan was to develop the application and then provide scripts for creating the DBA of the customer so that they can create data tables in their Oracle database... Can I develop the application without transparent data encryption and then say s/n, which must be implemented in the version of the application? The application needs to know the password of portfolio/TDE to encrypt/decrypt the columns!

    Any ideas how I could go on the development of the customer Oracle XE database without access to CDW?

    The T in TDE is transparent, so that your application should need not even be aware that all columns or storage are encrypted. Transparent data encryption are generally implemented in systems that were never designed to encrypt data, so in theory it should be 'perfectly safe' to develop not encrypted and have the client encrypt the columns during installation.

    Of course, when marketing people start talking about things that are 'perfectly safe', it is always a sign of coming danger. Although I have never heard of a case where encrypt a column caused a problem for an application, I would be very doubtful to the development in an environment different from that of production. This includes the exact version of the database (I guess that the customer has installed the last patchsets, so they run 10.2.0.4, for example) as well as editing. If you decide to rely on the fact that everything should go smoothly when you promote to a different version of a different edition of the database with a different schema definition, even if it would normally, you virtually guarantee that you will end up with a problem that will be difficult to solve.

    In your case, I would use XE to the development. It would be much safer to develop against the personal edition. It's not free, but it's the database licensed Enterprise edition to run on developer machines. It is not free, but it is much less than an enterprise edition license.

    Justin

Maybe you are looking for

  • Toshiba STOR. E CANVIO 2.5 "2 TB to save energy?

    Hi all! I would buy this external hard drive:http://www.Toshiba.EU/hard-drives/portable/store-Canvio-v2-portable-drives/hdtc720es3ca/Anyone who has, he can tell me if this hard drive has to be able to save?I would like to know if the box is made of a

  • Multi-user with Yoga 10 HD +.

    Hello Android allows for multiple spaces user on shared devices such as tablets. Each user on a device has its own set of accounts, apps, system, files and other data associated with the user settings. The previous 10 Lenovo Yoga disabled this featur

  • Turn features on or off is empty

    my window of the tower features on or off is empty and my windows media player does not work I tired updates and sfc/scannow and it does not find anything wrong and I too tired to restore my computer to an earlier date and I still have the same probl

  • call DLLs created by VC ++ in CVI

  • Useful registry cleaners or are so bad in Vista?

    The idea of having something stuck in the useless registry makes me uncomfortable. I think I need TO unload... like 'spring cleaning' annual rite therefore, examination of the occasional reg cleaner as part of the interview... with more regularly don