IMP.EXE not working in 11gR2 as it did in previous versions

I am trying to restore a database which was backed up using EXP.EXE on Oracle 10g to a new Oracle 11gR2 instance.
I was having trouble with the tablespaces at first and finally gave the user unlimited quota on the data and index tablespaces. The scripted commands used to create the user used to accomplish this, but apparently this doesn't work in 11gR2 and I had to do it one at a time through the database management web page.
Once I got past this, I still had trouble because of a reporting user granted access to the original database did not exist in my new instance. This was never a problem in earlier versions and it used to restore the database and just allow those grants to fail. I created the reporting user in my new instance and now IMP.EXE just fails after restoring the sequences and one table (of many) with no errors output to the console.
What needs to be done to get IMP.EXE to behave like it did in previous versions? Why is it failing after restoring the first table?
If it makes a difference, the OS is Win7 x64.
Rod

Here is the output from the console. As you can see, I am using the log parameter, but the log file is empty. IMP.EXE is crashing and not writing anything to the log file. I have included the information from the application log as well. I couldn't find anything helpful there. EXPORTBKP is a user we create specifically for the backup on restore of databases through a canned script we created. I have included the statemements used to create that user after the application log entry. This user is created logged in as SYS as SYSDBA.
Typical command used to create the backup:
EXP.EXE EXPORTBKP/MARTIAL FILE=database.dmp LOG=temp.log COMPRESS=Y OWNER=SRC_DB CONSISTENT=N DIRECT=Y STATISTICS=NONE
Command used to restore the database:
IMP.EXE EXPORTBKP/MARTIAL COMMIT=Y BUFFER=100000 FILE=database.dmp LOG=temp.log
FROMUSER=SRC_DB TOUSER=DEST_DB
Output from IMP.EXE:
Import: Release 11.2.0.1.0 - Production on Fri Nov 30 08:39:07 2011
Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit
Production
Export file created by EXPORT:V10.02.01 via conventional path
Warning: the objects were exported by SRC_DB, not by you
import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
. importing SRC_DB's objects into DEST_DB
. . importing table "ABC_ASSIGN_TYPE_MSTR" 2 rows imported
From the Windows Application log:
Faulting application name: imp.exe, version: 0.0.0.0, time stamp: 0x4bb1dfb4
Faulting module name: imp.exe, version: 0.0.0.0, time stamp: 0x4bb1dfb4
Exception code: 0xc0000005
Fault offset: 0x00000000000326c6
Faulting process id: 0xdc4
Faulting application start time: 0x01cbeed7761e96de
Faulting application path: C:\Oracle\product\11.2.0\dbhome_1\bin\imp.exe
Faulting module path: C:\Oracle\product\11.2.0\dbhome_1\bin\imp.exe
Report Id: b5d0d26a-5aca-11e0-a941-0050568d65a0
Statements used to create the EXPORTBKP user:
CREATE USER EXPORTBKP IDENTIFIED BY MARTIAL
DEFAULT TABLESPACE MY_DATA TEMPORARY TABLESPACE TEMP;
GRANT CREATE SESSION, EXP_FULL_DATABASE, IMP_FULL_DATABASE, DBA TO EXPORTBKP;
GRANT CONNECT, RESOURCE TO EXPORTBKP WITH ADMIN OPTION;
GRANT ALTER SESSION TO EXPORTBKP WITH ADMIN OPTION;
GRANT SELECT ON "PUBLIC"."V$SESSION" TO EXPORTBKP WITH GRANT OPTION;
GRANT SELECT ON "PUBLIC"."V$PARAMETER" TO EXPORTBKP WITH GRANT OPTION;
GRANT EXECUTE ON dbms_alert TO EXPORTBKP WITH GRANT OPTION;
GRANT EXECUTE ON dbms_pipe TO EXPORTBKP WITH GRANT OPTION;
GRANT EXECUTE ON dbms_job TO EXPORTBKP WITH GRANT OPTION;
GRANT CREATE TRIGGER TO EXPORTBKP WITH ADMIN OPTION;
GRANT CREATE TABLE TO EXPORTBKP WITH ADMIN OPTION;
GRANT DROP ANY TABLE TO EXPORTBKP WITH ADMIN OPTION;
GRANT CREATE ANY INDEX TO EXPORTBKP WITH ADMIN OPTION;
GRANT DROP ANY INDEX TO EXPORTBKP WITH ADMIN OPTION;
GRANT CREATE LIBRARY TO EXPORTBKP WITH ADMIN OPTION;
GRANT DROP ANY LIBRARY TO EXPORTBKP WITH ADMIN OPTION;
Hopefully someone can see something that I am not and we can resolve this.
Rod
Edited by: rsherer on Dec 9, 2011 9:01 AM

Similar Messages

  • 10g Host command imp.exe not working

    Hi,
    Just created a relatively simple form that uses host command.
    I create a sql script using text_io to create a new user.
    I then use host to run that script on the app server.
    All this works fine.
    Then i use host command to try and import into the db. This is when it does nothing.
    I have cut it down to bear bones and a button with the command:
    host('D:\oracle\database\BIN\imp.exe LOG=D:\test.log');This doesnt even create the log "test.log"
    If i copy and paste this into the run box on the app server the log is created?
    Any ideas?
    Thanks

    hi
    first try to import by using dos go to start,run and cmd something like this.
    c:\Imp user/pass@orcl file=c:\file.dmp log=c:\log_name.log full=y
    What is import/export and why does one need it?
    Oracle's export (exp) and import (imp) utilities are used to perform logical database backup and recovery. When exporting, database objects are dumped to a binary file which can then be imported into another Oracle database.
    These utilities can be used to move data between different machines, databases or schema. However, as they use a proprietary binary file format, they can only be used between Oracle databases. One cannot export data and expect to import it into a non-Oracle database.
    Various parameters are available to control what objects are exported or imported. To get a list of available parameters, run the exp or imp utilities with the help=yes parameter.
    The export/import utilities are commonly used to perform the following tasks:
    Backup and recovery (small databases only, say < +50GB, if bigger, use RMAN instead)
    Move data between Oracle databases on different platforms (for example from Solaris to Windows)
    Reorganization of data/ eliminate database fragmentation (export, drop and re-import tables)
    Upgrade databases from extremely old versions of Oracle (when in-place upgrades are not supported by the Database Upgrade Assistant any more)
    Detect database corruption. Ensure that all the data can be read
    Transporting tablespaces between databases
    Etc.
    From Oracle 10g, users can choose between using the old imp/exp utilities, or the newly introduced Datapump utilities, called expdp and impdp. These new utilities introduce much needed performance improvements, network based exports and imports, etc.
    NOTE: It is generally advised not to use exports as the only means of backing-up a database. Physical backup methods (for example, when you use RMAN) are normally much quicker and supports point in time based recovery (apply archivelogs after recovering a database). Also, exp/imp is not practical for large database environments.
    [edit] How does one use the import/export utilities?
    Look for the "imp" and "exp" executables in your $ORACLE_HOME/bin directory. One can run them interactively, using command line parameters, or using parameter files. Look at the imp/exp parameters before starting. These parameters can be listed by executing the following commands: "exp help=yes" or "imp help=yes".
    The following examples demonstrate how the imp/exp utilities can be used:
    exp scott/tiger file=emp.dmp log=emp.log tables=emp rows=yes indexes=no
    exp scott/tiger file=emp.dmp tables=(emp,dept)
    imp scott/tiger file=emp.dmp full=yes
    imp scott/tiger file=emp.dmp fromuser=scott touser=scott tables=dept
    Using a parameter file:
    exp userid=scott/tiger@orcl parfile=export.txt
    ... where export.txt contains:
    BUFFER=10000000
    FILE=account.dmp
    FULL=n
    OWNER=scott
    GRANTS=y
    COMPRESS=y
    NOTE: If you do not like command line utilities, you can import and export data with the "Schema Manager" GUI that ships with Oracle Enterprise Manager (OEM).
    [edit] Can one export a subset of a table?
    From Oracle 8i one can use the QUERY= export parameter to selectively unload a subset of the data from a table. You may need to escape special chars on the command line, for example: query=\"where deptno=10\". Look at these examples:
    exp scott/tiger tables=emp query="where deptno=10"
    exp scott/tiger file=abc.dmp tables=abc query=\"where sex=\'f\'\" rows=yes--------------------------
    You can also use DBMS_DATAPUMP.
    For example, you can start the export job from a PL/SQL package with the following PL/SQL code:
    declare
        handle  number;
    begin
        handle := dbms_datapump.open('EXPORT','SCHEMA');
        dbms_datapump.add_file(handle,'SCOTT3.DMP','DUMPDIR');
        dbms_datapump.metadata_filter(handle,'SCHEMA_EXPR','= ''SCOTT''');
        dbms_datapump.set_parallel(handle,4);
        dbms_datapump.start_job(handle);
        dbms_datapump.detach(handle);
    end;
    / sarah

  • Ebooks work just fine in Firefox 3.6.17, but will not open in upgrade being offered. I downloaded version 10 and did not work and had to go back to previous version

    When I downloaded Firefox version 10 it would not load Ebooks through my college website. Had to reinstall previous version, in order to work on assignments.

    Well, it's what I did to get my Java working in Firefox 4. I installed both binaries into my Library/Internet Plug-ins folder. The version was newer that what was previously installed (newer version is 0.9.7.5). It solved the Java problems I was having. My inital problem was that Java would not initiate and no applets would run in Firefox version 4 which I just installed a few days ago.
    I know the readme.txt. says it is not compatible with version 4, but the release date on 0.9.7.5 is after the release date of Firefox 4 and so that was I tried it. I figure there was nothing to lose as at worst it woud update my two plug-in files. Nothing was going to be changed otherwise. If you try it, it might work.

  • Adobe3DAndVideoServer.exe not working when CS6 Bridge Launched 64 Bit on Win 7 64 Bit

    QuickTime 7.7.3
    Windows 7 64 Bit
    All windows updates applied
    Video driver updated
    all adobe updates ran for bridge and PS CS6
    Cleaned out preferences
    Launching Bridge now responds with "Adobe3DAndVideoServer.exe not working" with no help of what to do about the issue?
    I did notice that this problem seemed to start after a recent upgrade to Quicktime?
    Adobe Photoshop Version: 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 3392 MHz
    Built-in memory: 8173 MB
    Free memory: 4222 MB
    Memory available to Photoshop: 7235 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 6450
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1080, right: 1920
    Video Card Number: 1
    Video Card: AMD Radeon HD 6450
    OpenCL Unavailable
    Driver Version: 9.10.8.0
    Driver Date: 20121022000000.000000-000
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: AMD Radeon HD 6450
    Video Card Memory: 1723 MB
    Video Rect Texture Size: 16384
    Serial number: 91198659860789516002
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\FUZZYH~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 1.34T, 457.9G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/06/05-15:16:32   66.507768   66.507768
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/06/26-12:17:19   4.0.95   66.510504
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/06/05-15:16:32   66.507768   66.507768
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/06/05-15:16:32   66.507768   66.507768
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/06/05-15:16:32   66.507768   66.507768
       BIBUtils.dll   BIBUtils 2012/06/05-15:16:32   66.507768   66.507768
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/06/05-15:16:32   66.507768   66.507768
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt42.dll   International Components for Unicode   4, 2, 0, 0  
       icuin42.dll   International Components for Unicode   4, 2, 0, 0  
       icuuc42.dll   International Components for Unicode   4, 2, 0, 0  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       onOneActivationToolbox.dll   onOneActivationToolbox   1.1  
       onOneToolboxPlus.dll   onOne Toolbox2 Dynamic Link Library   2.2.0  
       OnOneWidgets.dll    OnOneWidgets dll   2.5  
       ONProxySupport.dll   TODO: <Product name>   1.0.0.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
       zlib.dll   zlib   1.2.5  
    Required plug-ins:
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Clouds 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Collada 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Difference Clouds 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Embed Watermark 4.0
       Extrude 13.0
       FastCore Routines 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Measurement Core 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Mezzotint 13.0
       MMXCore Routines 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Picture Package Filter 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Pinch 13.0
       Pixar 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0.1
       Shear 13.0
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Sumi-e 13.0
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       Underpainting 13.0
       Vanishing Point 13.0
       Variations 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Viveza 2 2.0.9.20903
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       WIA Support 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins:
       BackgroundFilter NO VERSION
       Camera Raw 7.2
       Color Efex Pro 4 4,05
       Color Efex Pro 4 4,05
       Dfine 2.0 NO VERSION
       FineStructuresFilter NO VERSION
       HDR Efex Pro 2 2,03
       HotPixelsFilter NO VERSION
       Merge to HDR Efex Pro 2 2,03
       Nik Selective Tool 2.1.4.20903
       Perfect Effects Free 3.0.2
       Perfect Effects Free Filter 3.0.2
       Perfect Effects Free Smart Filter 3.0.2
       Perfect Resize 7.0 Professional Edition 7.0.7
       Perfect Resize 7.0 Professional Edition Batch 7.0.7
       Perfect Resize 7.0 Professional Edition Filter 7.0.7
       Perfect Resize 7.0 Professional Edition Format 7.0.7
       PhotoFrame 4.6 Professional Edition 4.6.7
       PhotoFrame 4.6 Professional Edition Batch 4.6.7
       PhotoFrame 4.6 Professional Edition Hidden 4.6.7
       Portrait Professional 1, 4, 1, 0
       ShadowsFilter NO VERSION
       Sharpener Pro 3.0: (1) RAW Presharpener 3.0.10.20903
       Sharpener Pro 3.0: (2) Output Sharpener 3.0.10.20903
       SkinFilter NO VERSION
       SkyFilter NO VERSION
       StrongNoiseFilter NO VERSION
    Plug-ins that failed to load: NONE
    Flash: NONE
    Installed TWAIN devices: NONE

    This is a new one on me.
    It's a server program to interface with QuickTime and some other problematic services.
    If you use video or 3D in Photoshop Extended, you probably need it.
    Sounds like you are correct in that it has to do wtih Quicktime.  Do you have PS extended?

  • VISTA - AppleMobileDeviceHelper.exe not working

    I was an Idiot and thought that Mac might have their $hit together today. I tried to upgrade my wife's 8GB and my 16GB phone. Neither one works now.
    My system immediately starts spawning AppleMobileDeviceHelper has stopped working error screen. As quickly as I click check the internet for a solution, another rendition spawns again. It loads 32 of them, then stops. I am dead in the water.
    Does anyone else have the AppleMobileDeviceHelper.exe not working error screen and what can I do?

    I have the same problem on both my computer and my wife's computer after I automatically updated. Have you recevied any response as to how to fix the piece of _ _ _ _?

  • HT201317 my icloud now say applephotostream.exe not working how do i fix this?

    my photo stopped streaming photos to my computer.  My computer says applephotostream.exe not working it say I can go on line for a fix to the problem but it doesn't do any thing when I do this.  I don't know how to fix this.  Can someone please help.

    Where from Apple did you download them?  What happens when you try to launch iDVD?
    OT

  • I keep getting "Applephotostream.exe" not working on my pc.   How can I fix or reset?

    I keep getting "Applephotostream.exe" not working on my pc.   How can I fix or reset?

    My Vista Home Premium  System Type is a 64 bit Operating System.
    I was hoping that someone in the Apple Community would have a solution.
    Still waiting.
    Thanks for your response.  Keep checking back.

  • SB24_PCDRV_LB_1_04_0090.exe not working

    ' Keeps saying it can't find a supported product.
    I upgraded from vista (where it was working) to windows7 ultimate and haven't heard a
    sound since then.
    I have removed the previous driver, disable the creative services and all the creative
    folders then did a powered down/up. The install program gets through the language
    selection before i get the message of no supported product.
    Could use some help,
    thanks,
    savagcl

    +Re: SB24_PCDRV_LB__04_0090.exe not working" okay. here is what i did. i booted into my bios and disabled my onboard audio (which was fried anyway). then i rebooted into windows, and in the device manager it showed no audio devices despite the fact that it was plugged in. i tried shutting down and switching pci slots........nothing. here is what did it: with the com on and running, pull the sound card and re insert it.(be carefull not to touch the board with any medal or it may short something.) after that i went into the device manager and and scanned for new hardware (right click on anything) bam it found it! then you run SB24_PCDRV_LB__04_0090.exe and your there.
    ? sorry about my earlier angryer post........apearantly i hadnt tried everything. i will try it on my other com and keep you posted.

  • Is there a separate download for iMac.  I bought and downloaded what I thought was the right download but it is not working and feel it might be a windows version.  How doe I get it right

    s there a separate download for iMac.  I bought and downloaded what I thought was the right download but not working and feel it might be a windows version.  How doe I get it right

    Check the link below for requirements and instructions for upgrading to Snow Leopard (10.6)
    http://store.apple.com/us/product/MC573/mac-os-x-106-snow-leopard

  • Macbook pro is not working with Canon pixma iP1500, but has previously.  The printer works with an old PC without trouble.  "printer is offline" message when this printer is plugged into macbook.  Any clues to get it to work?

    Macbook pro is not working with Canon pixma iP1500 but has previously.  Printer works with an old PC but macbook shows "printer is offline".  Any clues?

    Hello Betty7,
    Please let me take a moment to say "Welcome" to the HP Forums.
    I hope you enjoy your experience!
    I see that you are having an issue with getting the printer reinstalled. 
    I suggest that we start off by running the HP Print and Scan Doctor.  If the Doctor fails, please let me know where it fails as well as any error codes it may generate.
    Thank you for your time.
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • I have downloaded OS x 10.9.5 and it has not worked and my system (mimi mac the original version) doesn't allow me to see the tool bar etc?? how do I reboot it without losing everything?

    I have downloaded OS x 10.9.5 and it has not worked and my system (mimi mac the original version) doesn't allow me to see the tool bar etc?? how do I reboot it without losing everything?

    You're talking about the dock?
    To check on that, go to System Preferences > Dock > indicate your preference.
    I can get iTunes up, and safari, but i don't know how
    Not sure what you mean - if you can "get it up" - does that mean you can launch it? What do you not know?

  • My itunes not working after it tried to download the new version. it keep giving error 7

    my Itunes not working after it tried to download the new version. it give me message: erro 7 or window error 193. need help. thank

    What worked for me was to uninstall from the control panel in this order: Thanks to another post on this board... this worked... link to the discussion here: https://discussions.apple.com/thread/5817584?tstart=0
    ITunes
    Apple Software Update
    Apple Mobile Support
    Bonjour
    Apple Application Support
    I had problems uninstalling Apple Mobile Support, I had to repair it first before I could uninstall it. You will have to restart the computer after all the uninstalls, and before reinstalling ITunes. I reinstalled ITunes from the Apple website afterwards (fresh download) ... everything works for me now that I have done this.

  • HT3574 The personal hotspot is not working with me and I did not fine the icon for iphone 4 version 5.1.1

    The personal hotspot is not working with me and I did not fine the icon for iphone 4 version 5.1.1

    Check with your carrier or telephone service provider.  Not all carriers provide this service.

  • I have OSX 10.7.5, my idvd is not working correctly.  Should I re-download this version again , do you think that it will help to improve the idvd operation?

    I have OSX 10.7.5 on my imac, my idvd is not working correctly.  Should I re-download this version again , do you think that it will help to improve the idvd operation?

    First, iDVD is not and never has been part of OS X. If iDVD is not working correctly, then you should investigate possible problems with that application, support files, preferences, or cache.
    Of course you can always reinstall OS X if you wish:
    Reinstalling Lion/Mountain Lion Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

  • S&R script no longer works (in ID 6.0) as it did in previous versions

    This S&R script no longer works (in ID 6.0) as it did in previous versions. Can you help me by correcting it?
    app.findTextPreferences = app.changeTextPreferences = null;
    app.findChangeTextOptions.properties = { 
    includeLockedStoriesForFind:false, 
    includeLockedLayersForFind:false, 
    includeHiddenLayers:false, 
    includeMasterPages:false, 
    includeFootnotes:false, 
    wholeWord:false, 
    caseSensitive:false };
    app.findTextPreferences.findWhat = "Jack & the Beanstalk";
    app.changeTextPreferences.changeTo = "Mary Poppins";
    app.changeText();

    Hi,
    1. What error is detected?
    2. This code does the same thing you could do in UI dialog "Find...Change". Is this working?
    Jarek

Maybe you are looking for

  • Need BAPI for F-54 Clear Vendor Down Payment

    HI Gurus, Is there any BAPI available for clearing vendor down payment? We can use F-54 tcode to do it manually. I need to clear the vendor down payment from an USER-EXIT. how can I do this? Pls guide me. Thanks & regards, Murphy

  • Any way to make .FLV files editable in iMovie?

    I have some .flv files I want to edit in imovie, but I don't know how to make them into a .dv format that imovie would let me edit. Any ideas?

  • Do Not Import Duplicates (former PC /user/)

    I about to set down and go through the Aperture Tutes. However, can anyone advise as to whether it is a good idea to check the box to not import duplicates from my iPhoto Library or whether there may be a better way to manually delete these once they

  • My 4th gen iPod touch deleted my App Store how do I get it back?

    My son asked be to download a game on the iPod touch and when I went to find the App Store it was gone. I can't find it anywhere and I tried to download a new one from the Internet, but it won't let me. How do I fix this?

  • LOB Overflow

    I created a content area and uploaded around 900 MB of data. Now it gives an error when I try to further upload any files. It shows that SYS.LOB....... maxextents exceeded. Any clues??? Please help