Problem importing into new 10g db

I am very new to Oracle - so you are warnned!
I installed Oracle 10g and created a new database called alio. I set up a service and a listener.
I now am trying to import a dump of another db. I ran a script before this to make sure alio is structured the same as the dump file, schemas, tablespaces, etc.
I get to this point in the import and then it stops:
Export file created by EXPORT:V10.01.00 via conventional path
import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
. importing ADM's objects into ADM
No errors or anything, it just stops. Any ideas?

Thank you so much for helping me. I found the alert.log file and copied the bottom of the file below:
Thu Sep 27 11:56:32 2007
Memory Notification: Library Cache Object loaded into SGA
Heap size 2137K exceeds notification threshold (2048K)
Details in trace file d:\orant\admin\alio\udump\alio_ora_2288.trc
KGL object name :XDB.XDPhOB200OSSS++CkUwilGXQ==
Thu Sep 27 15:24:09 2007
Thread 1 advanced to log sequence 25
Current log# 1 seq# 25 mem# 0: D:\ORANT\ORA10G\ORADATA\ALIO\REDO01.LOG
Fri Sep 28 04:00:26 2007
Thread 1 advanced to log sequence 26
Current log# 2 seq# 26 mem# 0: D:\ORANT\ORA10G\ORADATA\ALIO\REDO02.LOG
Fri Sep 28 06:00:00 2007
Unable to restore resource manager plan to '':
ORA-02097: parameter cannot be modified because specified value is invalid
ORA-00439: feature not enabled: Database resource manager
Fri Sep 28 22:00:11 2007
Thread 1 advanced to log sequence 27
Current log# 3 seq# 27 mem# 0: D:\ORANT\ORA10G\ORADATA\ALIO\REDO03.LOG
Sat Sep 29 06:00:00 2007
Unable to restore resource manager plan to '':
ORA-02097: parameter cannot be modified because specified value is invalid
ORA-00439: feature not enabled: Database resource manager
Sat Sep 29 07:00:59 2007
Thread 1 advanced to log sequence 28
Current log# 1 seq# 28 mem# 0: D:\ORANT\ORA10G\ORADATA\ALIO\REDO01.LOG
Sun Sep 30 00:52:51 2007
Thread 1 advanced to log sequence 29
Current log# 2 seq# 29 mem# 0: D:\ORANT\ORA10G\ORADATA\ALIO\REDO02.LOG
Sun Sep 30 21:00:03 2007
Thread 1 advanced to log sequence 30
Current log# 3 seq# 30 mem# 0: D:\ORANT\ORA10G\ORADATA\ALIO\REDO03.LOG
Mon Oct 01 00:00:00 2007
Unable to restore resource manager plan to '':
ORA-02097: parameter cannot be modified because specified value is invalid
ORA-00439: feature not enabled: Database resource manager
To do the import I am running a batch file that someone else wrote:
@echo off
REM Set working directory
SET WORKING_DIR=%CD%
REM drop and create user
SET /P database=Enter database name:
SET /P system_pass=Enter database system password:
SET /P user_pass=Enter admin users password (ADM, BPS, etc.):
echo.
:retry
echo Type 'single' if importing from a single dump file or
echo type 'multiple' if importing from user dumps (i.e adm.dmp, fas.dmp, etc.)
echo or type 'exit' to quit.
echo.
set choice='bogus'
set /p choice=
echo.
if '%choice%'=='single' goto single
if '%choice%'=='multiple' goto multiple
if '%choice%'=='exit' goto exit
cls
echo.
echo Not a valid entry
echo.
echo Please enter 'single', 'multiple', or 'exit' to continue
goto retry
:single
echo Enter path to dump file including dump file name (i.e. q:\dmp\dump.dmp).
set /p dmp_path=
echo.
echo ############################################
echo %database% will now be updated with new data
echo ############################################
echo #
echo Press CTRL-C if you do not wish to continue
echo #
pause
sqlplus system/%system_pass%@%database% <"%WORKING_DIR%\dropcreat.txt"
imp system/%system_pass%@%database% file=%dmp_path% full=n ignore=y buffer=40000000 fromuser=adm touser=adm statistics=none
imp system/%system_pass%@%database% file=%dmp_path% full=n ignore=y buffer=40000000 fromuser=shr touser=shr statistics=none
imp system/%system_pass%@%database% file=%dmp_path% full=n ignore=y buffer=40000000 fromuser=fas touser=fas statistics=none
imp system/%system_pass%@%database% file=%dmp_path% full=n ignore=y buffer=40000000 fromuser=hrs touser=hrs statistics=none
imp system/%system_pass%@%database% file=%dmp_path% full=n ignore=y buffer=40000000 fromuser=bps touser=bps statistics=none
imp system/%system_pass%@%database% file=%dmp_path% full=n ignore=y buffer=40000000 fromuser=tea touser=tea statistics=none
imp system/%system_pass%@%database% file=%dmp_path% full=n ignore=y buffer=40000000 fromuser=whs touser=whs statistics=none
goto :exit
:multiple
echo Enter path to dump file (i.e. q:\dmp).
set /p dmp_path=
echo.
echo ############################################
echo %database% will now be updated with new data
echo ############################################
echo #
echo Press CTRL-C if you do not wish to continue
echo #
pause
sqlplus system/%system_pass%@%database% <"%WORKING_DIR%\dropcreat.txt"
imp system/%system_pass%@%database% file=%dmp_path%\adm.dmp full=n ignore=y buffer=40000000 fromuser=adm touser=adm statistics=none
imp system/%system_pass%@%database% file=%dmp_path%\shr.dmp full=n ignore=y buffer=40000000 fromuser=shr touser=shr statistics=none
imp system/%system_pass%@%database% file=%dmp_path%\fas.dmp full=n ignore=y buffer=40000000 fromuser=fas touser=fas statistics=none
imp system/%system_pass%@%database% file=%dmp_path%\hrs.dmp full=n ignore=y buffer=40000000 fromuser=hrs touser=hrs statistics=none
imp system/%system_pass%@%database% file=%dmp_path%\bps.dmp full=n ignore=y buffer=40000000 fromuser=bps touser=bps statistics=none
imp system/%system_pass%@%database% file=%dmp_path%\tea.dmp full=n ignore=y buffer=40000000 fromuser=tea touser=tea statistics=none
imp system/%system_pass%@%database% file=%dmp_path%\whs.dmp full=n ignore=y buffer=40000000 fromuser=whs touser=whs statistics=none
REM compile allsrc
REM sqlplus system/manager@%database% <"%WORKING_DIR%\allsrc.txt"
:exit

Similar Messages

  • Export from Oracle 9i to be Imported into Oracle 10g on 32bit platform

    Hi,
    Currently, I am in the process of performing a Homogenous system copy
    due to a domain change in our organization using R3load procedure.
    I have taken the export of the existing system which is on Oracle 9i.
    Initially, I was planning on setting up the new system on Oracle 9i,
    now that Oracle 9i is out of support, I would have to go with Oracle
    10g.
    I found a note on this topic, SAP Note: 932722, however, this note
    explicitly talks about database specific procedure of system copy and
    also this note is for 64 bit platform.
    Can you point me towards a Note or documentation which can be used as
    reference for importing an Oracle 9i export into Oracle 10g on 32bit
    platform(System copy procedure is R3load)?
    OS- Windows 2003 32bit, ECC 5.0
    Regards,
    Vishnu.

    Hi Gagan,
    Thanks for your response,
    As per your suggestion, I looked at the System Copy guide for Heterogeneous System Copy,
    On service.sap.com/osdbmigration under FAQ's this is what I found,
    I plan to copy my SAP system to a new hardware with the same OS and DB products but higher release levels. Is this a migration or a homogeneous system copy?
    A change of the version of the operation system and/or the database system is not relevant in the context of a migration or a homogeneous system copy. If you don't change the product, but only the release level it is a homogeneous system copy. If you change OS and/or DB, it is a migration.
    The system copy guide, doesn't explicitly talk about an export from Oracle 9i imported into Oracle 10g.
    Can you point me to a guide or Note?
    Regards,
    Vishnu

  • Problem Importing into iPhoto 11 Events after Photostream

    Before Photostream, importing my photos into iPhoto worked fine for me.  By USB cable from my iPhone or camera, I imported and elected to import all of them.  They showed up under "Last Import", but I also had the option (I forget now the procedures I followed) to sort this Last Import into one or more existing or new Events that I could name.
    I don't know if Photostream has caused the problem, but now after I follow the prior procedure and have a "Last Import" (which does show thumbnails of all the photos), I can't find out to create the actual Events into which I want to place these photos.  If I go to Photosteam, this does not help.  If I go to the automatically created, say, "Dec 2011 Photosteam" event folder, I can (painstakingly) create one or more events into which to sort the pictures in that folder--but at this point I lose many of the photos from that folder.  However, they are still in the main Photostream folder and in "Last Import".
    If I go to "Events" in the source column at the left, I do not see the new pictures (they are only in Last Import, in Photostream, and, sometimes, in the most recent monthly folder automatically created for Photostream).  If I go to the Events dropdown menu, the selections (such as Create Event) are grayed out--irrespective of whether I have Selected All or selected any of the photos in the Last Import or Photosteam folder.  Thus, I can't get hold of the new pictures to put them into the events that I want.
    How do I break apart the individual photos like I used to be able to do, so that I end up with photos divided into existing or newly created events?
    Has anyone run into this problem?  Is anyone doing the same tasks without having any problem of this nature?  Anyone have a solution?

    Okay, I think I've answered my own question, based on my looking further at other questions and answers in this forum.  I needed to control-click on one of the photos in my Photos or Last Import folders and select "Show Event" from the contextual menu at the bottom of the pop-up window.  This directed me way up in my library to near the beginning--instead of at the end (latest date) where I expected to find the event.  I then need to go to the View menu, then down to Sort Events, and then click to Sort By Date (I don't know how this had become un-selected.)
    Once I was able to find the photos, I was able to follow my old procedures to continue creating events and sorting photos--all without needing to go into Photostream (since I had uploaded into iPhoto the photos I wanted to sort by USB cable from my camera and my iPhone).

  • Problem import to "New project" in 3.1.2?

    After update to 3.1.2 import to "New Project" has started to show unexpected behaviour. Some pictures won't show in one project.
    Ex import creates two new projects"apr 23, 2011" and "apr 24, 2011". apr 23 shows all photos as it should. arp 24 do not show any photos. If I hover the mouse over the apr 24 project it indicates that there are "2 Versions" there should be 7 Versions?
    Both projects are in an Album structure "2011->April". When I select the whole album "April" I see the "missing" photos.
    I can create a new project and move the photos to it. That works.
    Anyone seen this in 3.1.2? It may be in older versions as well - but I just recently started noticing this.
    /regards Roger

    It could've been. I'm not very satisfied with how "Automatically split" correlates the date of the image with the date of the project. Oftentimes the last couple of pictures of the day (and not really late at that) gets assigned to the next day, and more often the first pictures of the next day gets sorted into the previous days project.
    I'm using iPhone and a couple of Canons. And I have checked the time on all of them recently as we changed to "Daylight Savings Time" not long ago. But I would have thought that that only would affect pictures taken around midnight, give or take an hour. And even so I'm only off GMT by an hour or two. Not many of my photos gets taken between 2200 and 0200 :-)
    But for the last incident I'm quite sure it has little to do with time as those photos that didn't show as expected were shot in the afternoon.
    And further clarify - during import I saw the photos under the correct date/project, blue tickbox and all. ANd they got imported into Aperture. Only they fail to be visible when I select the project where they were supposed to go. On one occasion they re-appeared after re-start of the application. But on another (other photos/in another project) did not. And re-start Aperture after import just to continue to work is not a good workflow for me ...
    /Roger

  • Problems Importing into Address Book

    Trying to import my address book from a vcf file. I get the following error:
    Are you sure you want to add 1511 cards to your address book? There were problems importing.
    My address book file has 2308 cards, not 1511.
    Any suggestion

    If you open Address Book, click on Card menuitem and select Edit Template. This will show you what the current template is and what fields may be added to the template.
    You can then edit the LDIF file when it's created to select only the desired export fields that will match the template.
    I believe when you then import into Address Book you will have an opportunity to match up the corresponding fields. Been so long since I did this I don't remember.

  • Problem importing into FCPX from SD card

    Hi, I'm having a problem importing some videos from a micro SD card into FCPX.  It is some helmet camera footage shot at 720P @ 30fps.  It's a .mov file.
    My problem is when I go to the "import media" window, I can see the files on the import screen.  I can also skim and play the files before they are imported.  The first time I tried to import them, I got an error message (which I unfortunately didn't write down). After I clicked "OK" on the error message, I could still see the file thumbnail, but if I hovered my mouse over it, the thumbnail turned black. I then restarted FCPX, and tried again.  I found that I could still see, skim, and play the file, but when I choose to "import selected" the little pie shaped downloading icon doesn't appear anymore and the file doesn't attempt to import. 
    Should I go to Disk Utility and do a "Verfiy Disk" and "Repair Disk" (if necessary) or might I permanantly delete the corrupted file if I "fix" it by repairing the disk?
    I have a screenshot of the import screen if needed, but the resolution is terrible.  I'll need to take another one if it would be beneficial to see it.
    Thanks in advance for any help!
    Glen

    A screen shot would be good..
    If you have mulltple files and you know which one is a problem, select just the others and import them.
    Try copying the entire card to your HD and seeing whether it will import from your computer.
    Russ

  • Problem importing into AE CS6

    Hello. I have a problem importing some footage into AE CS6. It was filmed with a Canon XA10 in PF30. My primary computer is a Windows 7 based system with plenty of RAM and a i7 processor. While Premiere Pro can import this footage and allows me to edited, the problem starts when I try to import it into AE CS6. I have the cloud and AE should be up to date with its updates. When I try to import the footage I get an error that states "After Effects warning: Error with file" I also use an Mac with Mountain Lion (at a different location) and it has no problems importing this footage into AE CS6 and allowing me to edit it. Here are the errors that I receive
    The top image is the error that I get.
    The next image is source information I get when it is imported into Media Converter.
    The bottom left image is the import screen from AE. I circled the only difference that I noticed.
    The bottom right image is some footage that AE does not have any problems with.
    I have searched the internet and someone suggested that I convert the footage to another codec like MOV. I have done this many time using different codecs (mov, h264, avi, etc) and I have converted these files on the Mac as well.. All of those files come up with the same error in AE as well as nothing in the format location in the AE import screen. I am thinking that my Windows system maybe missing a codec that is installed on the Apple. Can anyone tell me if I am missing a codec? If so can anyone tell me where I can get this codec. Any help would be great as I have been woking on this problem for a while now.

    You can drag the comps from the project window in AE to the project window in Premiere Pro. This won't work if you happen to have installed the applications individually instead of as part of Production Premium or another suite or products, but as long as you installed them together, you can drag and drop between the applications all you want.

  • Nvarchar Columns are not imported into OWB 10g

    Hi Team,
    I am quite new to Oracle BI(Just 2 weeks old) environment. I have completly gone through oralce wharehouse builder user's guide.
    I am trying to setup a datamart in which data will be pulled from MS SQL server 2008.
    Here is my Problem
    1. Setup location for SQL Database through ODBC Connection - Success
    2. Setup Location for Data wharehouse under Oracle - Success.
    Now I am trying to pull the meta data of a source table from SQL Database
    I have used MY_Project-->databases-->non Oracle -->ODBC-->SQL_Module-->Tables and Import wizard. I can browse the tables after selecting the table its completing succesfully.
    However the import wizard doesn't imports nvarchar() columns from the source table. Just importing numbers & date dat type.
    Any one can help me out.
    Regards
    Muralikannan.K
    9383344667

    Thank you very much for the quick reply!
    So, if cloning the database (export/import) isn't a good way to go, then based on what I read from the link you provided, I think my course of action would be:
    1. Create the new Oracle database. (different name so that there are no issues or confusion between the two)
    2. Create new repositories on new database.
    3. Have developers export out their metadata from existing repositories.
    4. Import metadata to new repositores.
    OR
    1. Create the new Oracle database. (different name so that there are no issues or confusion between the two)
    2. Export existing repositories metadata.
    3. Drop existing repository.
    4. Create new repository (same name as what was exported and dropped)
    5. Import metadata into newly created repository.
    I don't think new repository names are an issue for my developers, but I don't know if that will cause any other issues.
    Please let me know if either of these scenarios are viable.
    Thanks!
    -DC

  • Problems importing into iMovie and which is the required space..

    Hi Karsten!
    I could see that you know about video editing. And I have some problems and doubts I would like to ask.
    The thing is that I have just bougth an ibook of 80 Gb hard disk RAM 512 MB Speed 1.67 GHz and I am trying to edit a documentary with it. The thing is that I started to importing images from a HDV 1080i Sony Camcorder into iMovie and the speed wasnt in real time, was slowing down to half of the original speed. I went to visit the help of iMovie it was saying when it happens is due to the desfragmentation of the disk, but I dont know if it is the real problem, it is a new computer, and how I can solve it.
    And I also would like to know if I could have better results in the video importing and editing with an external hard driver other wise I could add more ram and more memory for the hard disk in the computer...
    And the last thing, I would like to know how much space would I need in my computer for install and using Final Cut Pro and if it would be easy with more memory or an external hard drive...
    Please Karsten or whoever who can have knowledge about these matter could help me. I really need it so much to start with my docu...
    Thank you
      Mac OS X (10.4)   80 Gb hard disk RAM 512 MB Velocidad 1.67 GHz

    "..which is the difference between FCP and FCE?.."
    FCE is Final Cut Express, a cheaper and 'cut-down' version of FCP (Final Cut Pro).
    FCE changes HDV (hi-definition) video into a slightly different format called 'Apple Intermediate Codec' when it's importing HDV material - just like iMovie HD does. This means that importing is generally slower than importing ordinary DV, because the movie has to be converted while it's importing. On a G4 PowerBook or iBook HDV might import at half-speed, or take even longer (..maybe 4x 'real time'), as you've found.
    The latest version of FCP can import HDV, and edit it, without any conversion, Apple says. But I don't know if that applies on any Mac, or if that needs a special capture card to be fitted into a PowerMac. In theory, I'd expect that importing and editing HDV using FCP HD 5 (..the latest version..) would be faster than on a PowerBook - because there's no conversion involved - but I can't say for certain till I receive my latest version of FCP (..I just did an Apple "cross-grade" to convert my FCP HD 4.5 into FCP HD 5).
    HDV doesn't take up any more room on a tape than normal DV, because the high-definition is 'squashed' onto the tape, using MPEG-2 compression. Because iMovie HD and FCE HD can't handle this kind of compressed material directly, they convert it into the Apple Intermediate Codec, and that form of the video takes up more storage on a hard disc than the normal DV does!
    So although normal DV uses about 13 gigabytes of hard disc space per hour of running time, the converted HDV (..converted into 'AIC'..) takes up, er ..I'm looking for a recent project ..most are on an external disc ..are here's a simple one: one-and-a-quarter minutes' worth uses 904 megabytes; nearly 1 gigabyte! ..Here's another: four-and-a-half minutes' worth takes up 6.5 gigabytes!
    Using normal DV, 6.5 gigabytes would hold half an hour's worth of video, not 4.5 minutes' worth!
    So you will need a big external hard disc to store hi-def footage. At least, with iMovie HD or FCE HD.
    I don't know if FCP HD 5 would store imported footage in the original HDV format, that is with the same storage requirements of ordinary DV - like HDV tapes. If so, that means that you could store hi-def (..if you're using FCP HD 5..) in just the same amount of space as normal DV ..but I don't know for sure. Maybe you could ask in the FCP Discussions. I probably can't tell you till next week or so..
    Where to get a 300gb hard disc? I'm sure there must be at least one shop, or electronics store, in Istanbul which sells them at reasonable prices. Otherwise, look online. There are many companies which now sell 300gb discs: Maxtor and LaCie, for example. But you do need one with a FireWire connection; not just USB. You don't need to buy from an Apple store: buy one from any computer shop ..an external hard disc for a PC works exactly the same ..but you must format it for use with a Mac, as described before.
    All I know of Istanbul is Cumhuriyet Caddesi, Taksim Square, and the areas around what used to be the floating bridge, and the Spice Market, and round Haigha Sophia, but there must be lots of computer shops somewhere in the city.
    "..I have never used iMovie for editing, I understood it is only good for capturing, sample and concise.." and it's also good for transitions, titles, adding photos and audio, adding video effects and for audio tweaking. And it integrates perfectly with iPhoto, iDVD, GarageBand ..and now 'iWeb'.

  • OIM 11g (11.1.1.5.0) issue with AD connector after importing into new env

    OIM 11g 11.1.1.5.0
    I had exported the AD connector from our Dev environment and imported it into Test. When I try to assign the AD resource to a user, provisioning is stuck on the AD Create User adapter, specifically the isADAM Task.
    I'm assuming something isn't populated in the IT resource or there is a disconnect in the tables after the import. The IT Resource config looks identical to the Dev env, isADAM = no. The group and org recon jobs run fine and it gets past the server validation task.
    If anyone can point me in the right direction to resolve this, I would greatly appreciate it.
    Here are the errors received:
    Class/Method: tcAdpEvent/getITAttrVal encounter some problems: Could not find IT asset value for Svr_key = 0 and attribute = isADAM
    Class/Method: tcAdpEvent/getITAttrVal encounter some problems: Could not find attibute value for IT Resource Key = 0 and attribute = isADAM
    com.thortech.xl.dataobj.util.tcAdapterTaskException: DATA_ERROR
    at com.thortech.xl.adapterfactory.events.tcAdpEvent.getITAttrVal(tcAdpEvent.java:1937)
    at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpADCSCREATEUSER.ISADAM(adpADCSCREATEUSER.java:105)
    at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpADCSCREATEUSER.implementation(adpADCSCREATEUSER.java:60)
    at com.thortech.xl.client.events.tcBaseEvent.run(tcBaseEvent.java:196)
    at com.thortech.xl.dataobj.tcDataObj.runEvent(tcDataObj.java:2492)
    ...

    This has been fixed. For reference, we had a slightly different resource name in the AD Server prepopulate adapter which was causing issues even if the correct ad server was selected in the user form.

  • Performance problem with sdn_nn - new 10g install

    I am having a performance problem with sdn_nn after migrating to a new machine. The old Oracle version was 9.0.1.4. The new is 10g. The new machine is faster in general. Most (non-spatial) batch processes run in half the time. However, the below statement is radically slower. The below statement ran in 45 minutes before. On the new machine it hasn't finished after 10 hours. I am able to get a 5% sample of the customers to finish in 45 minutes.
    Does anyone have any ideas on how to approach this problem? Any chance something isn't installed correctly on the new machine (the nth version of the query finishe, albeit 20 times slower)?
    Appreciate any help. Thanks.
    - Jack
    create table nearest_store
    as
    select /*+ ordered */
    a.customer_id,
    b.store_id nearest_store,
    round(mdsys.sdo_nn_distance(1),4) distance
    from customers a,
    stores b
    where mdsys.sdo_nn(
    b.geometry,
    a.geometry,
    'sdo_num_res=1, unit=mile',
    1
    ) = 'TRUE'
    ;

    Dan,
    customers 110,000 (involved in this query)
    stores 28,000
    Here is the execution plan on the current machine:
    CREATE TABLE STATEMENT cost = 81947
    LOAD AS SELECT
    PX COORDINATOR
    PX SEND QC (RANDOM) :TQ10000
    ROW NESTED LOOPS
    1 1 PX BLOCK ITERATOR
    1 1ROW TABLE ACCESS FULL CUSTOMERS
    1 3 PARTITION RANGE ALL
    1 3 TABLE ACCESS BY LOCAL INDEX ROWID STORES
    DOMAIN INDEX STORES_SIDX
    I can't capture the execution plan on the old database. It is gone. I don't remember it being any different from the above (full scan customers, probe stores index once for each row in customers).
    I am trying the query without the create table (just doing a count). I'll let you know on that one.
    I am at 10.0.1.3.
    Here is how I created the index:
    create index stores_sidx
    on stores(geometry)
    indextype is mdsys.spatial_index LOCAL
    Note that the stores table is partitioned by range on store type. There are three store types (each in its own partition). The query returns the nearest store of each type (three rows per customer). This is by design (based on the documented behavior of sdo_nn).
    In addition to running the query without the CTAS, I am also going try running it on a different machine tonight. I let you know how that turns out.
    The reason I ask about the install, is that the Database Quick Installation Guide for Solaris says this:
    "If you intend to use Oracle JVM or Oracle interMedia, you must install the Oracle Database 10g Products installation type from the Companion CD. This installation optimizes the performance of those products on your system."
    And, the Database Installlation Guide says:
    "If you plan to use Oracle JVM or Oracle interMedia, Oracle strongly recommends that you install the natively compiled Java libraries (NCOMPs) used by those products from the Oracle Database 10g Companion CD. These libraries are required to improve the performance of the products on your platform."
    Based on that, I am suspicious that maybe I have the product installed on the new machine, but not correctly (forgot to set fast=true).
    Let me know if you think of anything else you'd like to see. Thanks.
    - Jack

  • XML Multiple Data Export/Import into New Form

    Is it possible to import an XML file with multiple form data (exported via "Merge data files into spreadsheet" option, then saved as XML) into a "template" form and create individual forms from the multiple data sheet? In other words, I've merged 65 forms' data into an XML file. Now I'd like to import it all back into an updated form.
    What I've been doing now is exporting the XML data individually for each form and importing each form individually into the new form.
    One option is to extend rights to the user to import nd export themselves, but I'm still looking into the Formrouter service, which, if implemented, won't be for a while.
    Any solutions to this painful process?
    Thanks - Derek
    I just realized this may be a question for a different forum...Acrobat... My apologies.

    Hi Derek,
    Without the LC Enterprise server product(s) I don't think you will be able to achieve this. Acrobat.com give a mechanism of distributing the form, I am fairly sure it will allow you to view the responses in a new form.
    Also applying reader extensions to the form with Acrobat will not help, as this removes the ability of importing/exporting XML. See https://acrobat.com/#d=3lGJZAZuOmk8h86HCWyJKg. If you are extending rights with LC Reader Extensions ES then this restriction should not apply.
    If you have the 65 XML responses, I would be inclined to bite the bullet and manually import the XML into the new form.
    Good luck,
    Niall

  • Problems importing into Iphoto 5

    All of the sudden I am getting an unrecognizable file error when I try to import photos into iphoto 5. I have tried 2 different cards using both the card reader and the usb cord plugged into the camera. I uploaded photos last week and as far as I know nothing on my computer has changed. Any help is greatly appreciated! Thanks

    You get an "unrecognizable file error" if there is some file on your card that is not a valid image file - either it's corrupt or it's just something completely different.
    You should try to reformat your card in the camera and see if the problem persists.
    Of course:
    Don't forget to backup your pictures from the card before you reformat the card/___sbsstatic___/migration-images/migration-img-not-avail.png
    Since you can drag them to the desktop you can import them to iPhoto from there until you solved the problem

  • Problem importing into iPhoto11

    I thought I may have resolved my problem by rebuilding my library, but we imported some photos, my wife even edited them. Then the next time we went to iPhoto the pictures were not there. We tried to import them again, didnt edit this time, & closed iPhoto then opened up again and they were not there. Any suggestions?

    Your original library is damaged.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    Regards
    TD

  • Adobe X pro, export forms data to fdf, then import into new form using automation?

    Is there a faster way to export 13 page forms pdf data out to fdf and then import I back into a new pdf form. There are a total of 167 pdf files with total of 130 some field on each form. The fields are all the same in each document. I want  to make a macro or script to automate this process.  I don’t want to to open all 167 files then export them one at a time.  then creat167 new files and import all that data back in.  Also each file is the name of the person who filled it out.  I could automate the copying of the new 2012 pdf to make 167 new ones each with their name using VBA. But if that could be automated in adobe great. 
    We have to make new admission forms for next year. Currently all the dates and fees are this year. So I had to update all the pages in Publisher and reprint them to pdf.  We are sending the forms back to people with the data already entered since 95% of it did not change. This helps save them time in having to re-fill out the entire form again.
    Or any other suggestions
    TIA

    try67, I do have Pro as stated in the title “Adobe X pro, …”
    George,
    the position of the forms fields is exactly the same. But now that I think of it the data in the pdf’s is slightly older than the exported info in Access as I explain further below.
    George, I can create 167 files in an instant using VBA, I in fact have all the names in Access and did this already.
    I also forgot, I have all the data from all the forms in Access now. So it would be better to use that since it is more up to date than the pdf forms. Any email and phone number changes were changed in Access.  I clicked Manage Form data/ export to txt in Adobe and imported that into Access with a VBA and a macro.
    So I really just need to open each particular file and import the data into it.
    So can I call the whole process from VBA? Using a Active-X reference in VBA to get to control Adobe?
    I write VBA in my sleep so if it can be done there, Fantastic.

Maybe you are looking for

  • Steps to create the standby with Hot Backup........?????

    Hi All I am planning to create the Physical standby with Hot backup .... Can anyboby give me the link/steps which explains how to do this? Thanks Gagan

  • Column formating

    Hi, In the report on Real Time on Custom Object 2, i am using Acounts, Field: "Account Id" as Prompt for this Dashboard Report. Account Id is passed with the URL from Detail Page. Account Id is the first column on this report & set to hide "Customer

  • Clicking, holding and dragging opens blending options?

    I recently got a new comp and CS5, I have been a long time CS3 user. I've run into a very weird issue. When I click and drag to move a layer up or down, it frequently opens the Blending Options dialog instead. This has been driving me completely insa

  • Diff between Integer and Number in Oracle

    Hi, What's the differet between integer and number in Oracle?

  • Manager information for a CRM Resource

    Hi, I am interested in knowing the navigation path for getting the details of the manager of a CRM resource (both in 11.5.10 and R12). I am able to see the source_mgr_id and source_mgr_name populated for a resource in jtf_rs_resource_extns table but