IMP Problem - Synonyms missing

Sir,
I am doing an IMPORT. Database - 9.2.0.1.0 OS:Windows 2000
I create all the 9 users
MHUBADMIN, MHUBUSER, MHUBARCHIVE, PPA, PPAUSER, SLIDE, SLIDEUSER, leads, wmc
and assigned default tablespace and
CONNECT,RESOURCE privilege to all users.
Import is working fine. The PROBLEM is, there are some synonyms in SLIDE schema, that is not getting imported.
I generated a import logfile by SHOW option.
"CREATE SYNONYM "BINDING" FOR "SLIDE"."BINDING""
"CREATE SYNONYM "BRANCH" FOR "SLIDE"."BRANCH""
"CREATE SYNONYM "OBJECT" FOR "SLIDE"."OBJECT""
"CREATE SYNONYM "PARENT_BINDING" FOR "SLIDE"."PARENT_BINDING""
"CREATE SYNONYM "PROPERTIES" FOR "SLIDE"."PROPERTIES""
"CREATE SYNONYM "VERSION_CONTENT" FOR "SLIDE"."VERSION_CONTENT""
"CREATE SYNONYM "VERSION" FOR "SLIDE"."VERSION""
"CREATE SYNONYM "URI" FOR "SLIDE"."URI""
These object are available in show.log.
But whilt importing it is missing.
Please help me.
regards
Mathew

Hi,
>>Import is working fine. The PROBLEM is, there are some synonyms in SLIDE schema, that is not getting imported.
Are you sure ? Is not possible create a synonym with same name as object.
USER01@ORACLE10> create synonym test for user01.test;
create synonym test for user01.test
ERROR at line 1:
ORA-01471: cannot create a synonym with same name as objectThen, In which user these synonyms were created ?
Did you imported this user ? What imp full command did you type ?
Cheers

Similar Messages

  • Problem of Missing parts during the Process Order release

    Hi
    For a Make to Order strategy, I have run MRP for a sales order which resulted in planned order for the material. But when I try to convert the Planned Order to Process Order, I am getting error Parts are missing during the availabilty check even though the components are available in the stock.
    But when I create a Process Order manually, I am not facing the problem of missing parts as stock for components are available in stock.
    Please advice why I am facing the problem with Planned Orders which are created via MRP.
    Regards
    Brijesh

    Dear all,
    If we set the Individual requirement (1) in MRP4 view of the material master for the component, the system will not consider the plant stock and it will give the message like Parts are missing during the Process Order process even though the plant stock is exists for the component.
    So I would like to where in customization you define this?
    --> To not consider the plant stock if individual req is set (1)
    --> To consider the plant stock if collective req is set (2)
    Kindly advice,
    Regards,
    Brijesh

  • I have a 2nd iPhone, the same problem of missing Data in Notes Apps again. Please advise.

    I have a 2nd iPhone, the same problem of missing Data in Notes Apps again. Please advise.

    Did you purchase the music through the iTunes Store?
    The apps you have purchased can be downloaded for free from the App Store.
    http://support.apple.com/kb/HT2519

  • Problem with missing colors when printing

    It has been sugested by HP that I try this forum for help.
    The following is a copy of the email I sent them which describes my problem, I hopesomeone can help! Thanks.
    language_code : en
    language : English
    Country of Residence : France
    product_line : 83
    product_oid : 59868
    product_name : HP Deskjet 840c Printer
    part_number : C6414K,C6414J,C6414A,C6414G,C6414N,C6414H
    purchase month : 8
    purchase year : 1996
    problem area : color and print quality problems
    serial number : [Text removed for privacy]
    operating system : Microsoft Windows Vista Home Premium 32
    How is your product connected to your PC? : USB Cable
    problem description : When I try to print a page containing coloured items the coloured parts fail to print. (The items are totally missing, they are not replaced by grey scale images) I have done all the usual things as per list:-
    troubleshooting : 1) Rebooted my computer.
    2) Disconnected the USB cable and reconnected it.
    3) Changed the colour cartridge.
    4) Examined the printer settings in the control Panel, colour is selected and all other settings seem normal.
    5) De-selected the printer as the "Default Printer" and re-installed it.
    6) Run software that checks the driver is up to date and it is.
    7) Printed the built in test page "beautiful color made easy" only the header and footer print,no colour!
    setting changes : No, nothing has been changed.
    PS. I have owned my printer for many years and cannot remember the purchase date.
    tech skill : Intermediate
    first name : Grant
    last name : W[text removed for privacy]
    This question was solved.
    View Solution.

    Hi  - Go ahead and try the steps in this document.  It will walk you through cleaning the contacts on both the cartridge and in the carriage.  What can happen over time is ink residue can accumulate on the contacts preventing the ink cartridges from working properly.  If this doesn't resolve the issue, try setting the cartridge with the nozzles face down on a damp paper towel for about 45 seconds just to resolve any problems with the ink nozzles.
    Hope that helps.
    Say Thanks by clicking the Kudos thumbs up. Please mark the post that solves your problem as an Accepted Solution so other forum users can utilize the solution.
    I am an HP employee.

  • 4.1.1 SDK Problems with missing xpacket tags in sidecar XMP files

    The current 4.1.1 SDK has problems with sidecar XMP files that don't have the xpacket headers and trailers, i.e:
    <?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?>
    <?xpacket end='w'?>
    is missing. Now, unfortunately Adobe Bridge CS2/CS3 does not export these xpackets in sidecar XMP files.
    The standard, http://www.aiim.org/documents/standards/xmpspecification.pdf, is also very vague about it all:
    ● Write external metadata as though it were embedded and then had the XMP Packets
    extracted and catenated by a postprocessor.
    The grammar is strange(past tense had) and the spec implies that the xpacket should be extracted and again catenated... Someone should review this document and clearly state if xpacket statements should be in sidecar files or not. I suspect myself that they should be there, but the standard is very vague.
    Anyway, there are two places in the SDK code where changes might be needed:
    XMPFiles::Initialize has XMP_Asserts in case the xpacket header/trailer is missing, but the underlying assert is only active in debug builds.
    XMPScanner::PacketMachine::FindNextPacket () also has in its truth table the assumption that the xpackets exist.
    There could be even other places in the code that assumes that the xpacket tags are present in all files, which includes text XMP sidecar files.
    Anyway.
    a) Shouldn't bridge export the xpacket tags? Same with any other application?
    b) If the spec is vague, then the SDK should not assume that the xpacket tags are present.
    Any comments? Has someone already fixed this issue as I suspect a lot of apps using the the XMP SDK would break concerning reading XMP sidecar files? Thx, Kent

    I was able to work around the problem by creating a mapped view of the .xmp file (this creates an array in memory backed by the file on disk, so there's no need to read the file into a separate internal buffer), and constructing the SXMPMeta object directly from the buffer. (The ctor for that class calls ParseFromBuffer, so this is the same thing as was suggested by other messages in this thread.)
    It seems that Adobe needs to do one of these things:
    (1) say that Bridge CS3 has a bug, and agree that Bridge CS3 should include a proper xpacket header when writing xmp sidecar files
    (2) say that the XMP Toolkit has a bug, and that the SDK should be able to parse sidecar files without an xpacket header, and agree to fix the toolkit
    (3) say that Bridge CS3 and the XMP Toolkit behave as expected, but then provide a sequence of steps by which users of the XMP Toolkit are expected to read xmp sidecar files written by Bridge CS3
    Does Bridge CS4 write an xpacket header to the xmp sidecar files?
    Maybe what I could do is create a custom file handler for .xmp sidecar files, so I could use the SXMPFiles for everything, instead of having to special-case .xmp files.
    My needs are pretty modest though, and it might be just as simple to use the MS DOM-based XML parser for load the xmp sidecar file. I bet I could get the data I need (only the "Rating" for now) using a simple XPath expression.
    -Matt

  • Strange display problems: lines, missing icons, pieces of windows that stay on screen...

    My white 24" iMac has recently started having problems with the display. Because I'm able to capture it with Grab and due to the nature of the problem, it doens't appear to be hardware related. But, not sure. See the screen cap I took below as an example of one of the problems I'm seeing.
    I'll try to describe a few other display anomalies I'm having:
    Moving a window leaves the background that it was on intact all around the edge of the window, where the drop shadow would be.
    The Dock, which is set to be hidden until my cursor moves into that area, will appear sometimes with some of the icons missing, but, the shadows for those icons are visible on the Dock. Or, there are weird lines and patterns around each icon.
    While using Safari and a few other apps, I'll frequently get colored lines and patterns that suddenly appear across the screen, and then disappear when my cursor moves over that part of the screen.
    When I click on the minimize button, the window uses the Genie effect to move into the Dock, but, often leaves a bit of the window on the screen. It will sometimes clear when I drag another window over the area, or the window I'm dragging will start looking like it does in the screen cap below.
    My graphics card is a NVIDIA GeForce 7300 GT. I updated the firmware to ROM Revision 3467, but, it didn't seem to make any difference. The only think I can recall doing before this problem happened is I installed the iTunes 10.4.1 update. I'm running OS X 10.6.8 (Snow Leopard).
    This iMac is about 4.5 years old, so, it's not covered by warranty anymore which means I can't take it to an Apple Store for troubleshooting. I'm hoping someone knows how I can fix this. It just started doing this a week ago. Thanks!
    Tom

    Hi Michelefree,
    My iMac does not have a separate video card, so, I was not able to replace it as suggested above. Apparently with the Intel iMacs, or at least the one I have, the video "card" is actually a few chips on the logic board. I was told the only way to fix this is to replace the entire logic board, which is too costly (no longer within warranty).
    I did a bit of research and discovered that the problem seems to be related to how hot the computer gets. I noticed this, too. When I started using my iMac first thing in the day, no problems. As the day progressed and the computer heated up, I'd start having all these video problems.
    I found a utility called smcFanControl which allows you to speed up the mininim fan speeds inside the computer, which helps keep it cooler. Since I installed this, I've had very few video problems. So, it appears to have "solved" my problem for now.
    I wish there was a better solution than this band-aid fix, but, it's a lot cheaper than having the logic board replaced or buying a new iMac, the only choices I was given by Apple. Hope it works for you, too!
    Tom

  • Import Problems and Missing Images

    Hi
    Firstly apologies for this being so long and so detailed, but I wanted to include as much as possible to narrow down options.
    I'd like to say before describing the problem(s) that I use lightroom 2 and have not knowingly changed any settings since I started using it last year.
    It seems I've been having a problem with Importing and haven't been aware of it. I wondered if anyone can throw any light on the situation, or help pinpoint the problem(s) and provide any solutions. All images I've imported since starting with Lightroom have been stored in folders according to date taken.
    Today I tried importing photos all taken on the same day, on the same memory card. The images had never been imported, or on the computer before. I used import from device and left it to get on with it. When I checked back, only five images seemed to have been imported and three other image file names were shown with grey boxes.most of the images had not been imported, so I started import again.
    This time all the remaining images were imported. However, when I looked across at the 'Folders' list there were now two. Previously I had only ever noticed/used one. The names of the two are "Local Disk (C:)" and "Backup (D)". The first only has three folders in it from July and September 2009. One of these contains the images from the restarted import. They all seem fine. The second [Backup (D:)] contains all othet folders since 2002 and a folder with the first five of today's images.
    The five images from today in "Backup (D:)" are all blurry. Also, when I try to open them I get the following messages. Either "The fie appears to be unsupported or damged" or "The file named IMG... is offline or missing". Although I was concerned, I decided to leave it and look into it later. I then started to work on some photos I'd taken in July, in the folder shown in list "Backup (D:)". All these photos came from a different camera and different type of memory card.
    Halfway through reviewing these images I came across lots of greyed out boxes each with a file name corresponding to photos I had taken. When I click on any of the greyed out boxes, or one of the perfectly clear images I get the same message as above for the five images from today. If I open one of the images from July in Develop and click on 'File' there is no 'export' option. I haven't had time to check yet, but suspect there may be more folders like this one. (Big sinking feeling!)
    Again, apologies for the long description of the problem, but if anyone can help with any of the following questions I'll be very grateful.
    Why has this problem started to occur with 'import' and any suggestions for rectifying it, apart from checking all images straight after importing?
    Even though I have very sharp images in 'Library' and 'Develop' for the July images, have I lost them? If not, where can I find them, or how can I export them? It may be worth mentioning that the memory card the images were originally on has been formatted and I think used since.
    Finally, how can I get back to one safe working list of folders. This includes how do I get the working ones in both lists into one?
    Thanks for reading this and I look forward to any suggestions for any of the problems.
    Graham

    Hi
    An update on the situation. First some more information that may be of relevance later. I started out with LR1 and updated to 2 when it became available. There were a couple of glitches, but when I did, I just imported the settings directly from 1. I can not remember any of the settings I specified now. On my computer I use two physically seperate hard drives, with the 'D' drive being for backups.
    Back to the problem. We can now eliminate faulty files or images. After some exhaustive searching all of my photos are well and healthy in a folder I created in 'My Documents" called "Photos" (how original). In that folder there are sub-folders with dates only and others with names like "imported in 2009 20th July". Each of these folders contains the images imported in to LR on that day (not taken on that day).
    I also have a folder on the 'D' drive called 'Lightroom' that has lots of sub-folders with dates. These contain images imported into LR and are all sorted according to the date taken. I assume that this must be the automatic backup. when I tried to open the folder for the July images that were faulty in LR, I got a 'corrupted' message. The original images are all fine on the 'C' drive in the 'Photos' folder. I'm assuming the corruption probably occured on backup.
    Please correct me if I'm wrong, but this leads me to believe that the issue in LR for me is a database/catalog one. In my first post I explained that under 'Folders' I have somehow regently aqquired a second option ("Local Disk (C:)" and "Backup (D:)"). I only recently noticed this and previously had only one list with folders. What I now need is help in getting LR to offer me the options of the images in "Photos" on the 'C' drive.
    When I go to "File\Recent" in the catalog section of LR I'm offered two options.
    The first is "Lightroom 2 Catalog-2.Ircat-(Filepath to Lightroom)\Backups\2009-09-05 1155" This option is ticked.
    The second is "Lightroom 2 Catalog-2.Ircat-(Filepath to Lightroom)" This option is not ticked.
    When I look in the "Lightroom" folder, that I assume LR created in "My Documents" I can see a sub-folder that relates to the first option in the "Backups" folder.
    I'll post this now, but if detailed information about all the folders, sub-folders and files displayed in the "Lightroom" folder could help, I could provide it.
    Thanks again for reading this and the help/suggestions so far. Any thoughts, suggestions, or solutions will be much appreciated.
    Graham

  • IWeb site update problem-app missing images/files, but site is ok

    I created and uploaded a web site to my .mac (yeah, MobileMe) and it displays just fine. I have visited it from a couple of different comps. The problem is that I want to add/update files/pages, but when I open iWeb, several of the images/audio files do not display: shows a x-through and a centered question mark. They are in the sites idisk folder and in the laptop's copy of the files. When I try to replace the missing images/files by dragging onto the iWeb drafting page the following message appears: "the file can't be used because you don't have access privileges, or because it contains no content or was corrupted."
    I'm afraid to make any updates for fear of losing what is already published.
    Extra info: have family pack and am switching between .mac accounts because iWeb published to the iDisk corresponding to the account/sub-account you are logged into (BIG pain in the ***! It should have a password protected account toggle like Panther used). I have double-checked that the files for this site are only in the one iDisk account (am redirecting my masked domain url to the .mac iDisk server-works great.
    Any ideas?

    The upgrade from '06 to '08 which changed the domain.sites to a domain.sites2 caused more confusion, disasters and lost web sites than the bug ridden introduction of '09.
    I ended up rebuilding all my sites from new, blank domain files in '08 and the conversion to '09 went OK apart from '09's nasty habit of changing media file links.
    Fortunately, I have very little QuickTime content and don't use the iWeb Photos, Albums Blog or Podcast templates.
    Most iWeb built sites look pretty awful when users stick to the default page width. I start from a Blank, Black or white page and trash everything on it.
    I use the "standard" 980 px page width and most, if not all, of the iWeb themes do not adapt to this.
    This is why I constantly ask the question. "Do the iWeb developers actually build any websites with the application?".
    Perhaps if they did, we would get more bug free releases and some of the features that "real life" users are requesting.

  • Very strange problem. Missing characters in QT applications

    Hello all.
    I'm trying to deal with a very strange issue since some time, that is driving me crazy, because I have no clue where the problem may lay:
    In my Archlinux system, some, and only some QT applications (for example Skype, or Qtconfig) don't display properly certain characters in the unicode set (for example "ń" or "ł") when I use certain fonts (for example Terminus, Clean or Verdana), and those applications substitute those characters with the corresponding ones from the Bitstream Vera Sans font type.
    So, when I write, say, the Polish word "Toruń", the four first letters (T, o, r and u) are rendereed in the desired font type (let's say Terminus). However, the last letter (ń) is rendered in Bitstream Vera Sans, thus making the writing appear really ugly and uneven.
    However, this doesn't happen in Opera (the browser), which is a QT application, but where I get the whole unicode character set displayed properly in the desired font type (Terminus in this example).
    Also, this doesn't happen in the rest of non-QT applications I have in my system: all of them render perfectly the whole unicode set of characters in the desired font type, no matter which.
    But! it's not a problem of those QT applications, because I have another partition with Ubuntu installed, and when I boot that partition I don't have this problem: all applications, including Skype and Qtconfig, display correctly all characters in the whole unicode set, no matter which font type I'm using.
    This is totally bewildering me.
    Any clue?
    Thank you.

    The problem is not only in qt applications. I run openbox and this is the output I get when using the command-line script pdfmerge to merge pdf files:
    GPL Ghostscript 8.71: Missing glyph CID=48, glyph=0030 in the font VerdanaBold . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=49, glyph=0031 in the font VerdanaBold . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=31, glyph=001f in the font VerdanaItalic . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=38, glyph=0026 in the font VerdanaItalic . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=37, glyph=0025 in the font VerdanaItalic . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=34, glyph=0022 in the font VerdanaItalic . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=54, glyph=0036 in the font VerdanaBold . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=44, glyph=002c in the font VerdanaBold . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=50, glyph=0032 in the font VerdanaBold . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=77, glyph=004d in the font Verdana . The output PDF may fail with some viewers.
    There are visible errors in the pdf output. For example, bold "C" is replaced by a square box, bold "b" is replaced by a space.
    It looks like there's bug in the Verdana font or perhaps in Ghostscript 8.71

  • Sound muting problem after missed calls

    Using Skype 4.9, but confirmed with 4.7 as well.
    Android 4.2.2 JB, standard theme.
    After a missed call, my FM radio stops working, and also I find all other sounds quieter byt more than 40-50%. No volume control app helps (tried many), the volumes don't seem changed. The FM radio apparently finds stations etc. but no sound. As if it is muted, and all other sounds seem to be affected by some more master volume no app could affect.
    This whole mess is fixed when restarting the phone, or when I make another call to Sound test service (or other contact) - just establishing a call is enough to fix the issue. This is not always a solution for variety of reasons.
    Also letting skype exit (after signout) completely fixes the issue. But this "exiting" takes hours most of the time - its VideMonitor service stays for hours after signout, sometimes days. Unacceptable.
    This is Very frustrating to the point i stopped using skype until this is fixed.
    It seems Skype doesn't restore some volumes/mute after a missed call.
    The mentioned workarounds are not always viable, especially when I'm away from Wifi range. Is there another workaround, or better, a fix, when I miss a call, skype should restore sound volumes and any muted channels (fm radio).
    Thanks.

    The very same problem on Huawei Ascend G7...
    After missed call skype turns off all the sounds in the phone including alarm.
    I did late on work today because of it...
    Why nobody from the developers don't take this seriosly and to clear up that serious issue..???

  • Imp problem

    Hi Team
    I am facing very strange problem at the time of import
    pls. go through the error.
    IMP-00032: SQL statement exceeded buffer length
    IMP-00008: unrecognized statement in the export file:
    'Oracle_Database returns one entry for each database that is managed by Oracle
    Enterprise Manager. View entries are created using the databases that are known
    to the Enterprise Manager Management Repository. Note: A Real Application
    Cluster is presented...
    IMP-00032: SQL statement exceeded buffer length
    IMP-00008: unrecognized statement in the export file:
    'Oracle_DatabaseInstance contains one entry for each Oracle Instance that is
    centrally managed. A Real Application Cluster has one entry for each of the
    instances that manipulate it. Instances of Oracle_DatabaseInstance are created
    using the database ...
    IMP-00032: SQL statement exceeded buffer length
    IMP-00008: unrecognized statement in the export file:
    'An Oracle_DatabaseSystem represents the existence of an Oracle database
    environment as a manageable entity. Instances of Oracle_DatabaseSystem are
    used to navigate to the software characteristics of the database environment
    that are modeled within the...
    IMP-00032: SQL statement exceeded buffer length
    IMP-00008: unrecognized statement in the export file:
    'The AssociatedDBSystem association identifies the database system that was used
    to create the database.This association links an Oracle Database with
    thedatabase system elements that are related.'
    IMP-00032: SQL statement exceeded buffer length
    IMP-00008: unrecognized statement in the export file:
    'Oracle_DBInstanceStatistics contains statistics for a database instance. These
    are retrieved from the Oracle Managment Repository that is managing the
    database upon request from a managment client.'
    IMP-00032: SQL statement exceeded buffer length
    IMP-00008: unrecognized statement in the export file:
    'Oracle_DatabaseStatistics provides current information about the statistics for
    a database. Database statistics pertain to the database and have the same
    value regardless of the database instance that is used.'
    IMP-00032: SQL statement exceeded buffer length
    IMP-00008: unrecognized statement in the export file:
    'Oracle_CurrentDBInstanceStats is an association that relates a Oracle database
    instance to its current statistical information.'
    "BEGIN SYS.DBMS_SNAPSHOT_UTL.SYNC_UP_LOG('BUSINESSDATA','ACCSTAT'); END;"
    IMP-00003: ORACLE error 1435 encountered
    ORA-01435: user does not exist
    ORA-06512: at "SYS.DBMS_ISNAPSHOT", line 108
    ORA-06512: at "SYS.DBMS_SNAPSHOT_UTL", line 1666
    ORA-06512: at line 1
    IMP-00000: Import terminated unsuccessfully
    Regards,
    Vika

    IMP-0032 is your real error.
    The BUFFER size specified for the import is too small. Oracle is unable to interpret the contents of the dump file and what is actually data (content) is seen as if it is an SQL command.
    You should import with a larger BUFFER size. Set it to a few tens of MBs so that even data (i.e. multiple rows) is buffered properly.
    Hemant K Chitale

  • Upgrade problems - files missing in site after the upgrade

    gurus,
    i upgraded the webdb 2.2 to portal 3.0. when i went to the portal site, i found that in one folder some of the documents were missing. what i mean by the missing is, the document title was present in the folder but not as a link. it was there as a static text. under normal circumstances the user would click the link and open up the link (can be anything *.doc, *.pdf, *.xls etc.) but, i could not do so because there was static text instead of link.
    has anyone had a similar problem ?
    pls reply.
    thanx a lot
    null

    Hi,
    I am experiencing the same problems, some of the items are inacccessible, the path to these items are weird after the upgrade to portal 306.
    Here is an example:
    The path of an item may look like
    /folder/rootfolder/rootfolder/rootfoler/market/summary.doc
    there are so many rootfolders out there, assume rootfolder is the content area name.
    If I manually remove these redundant rootfolders, I can load these items individually.

  • SPP 4.4 on DB2 connection problems and missing documentation

    HI all,
    i'm trying to install a SPP server using DB2 version 9.7.4 but i'm having a lot of connection problems.
    It seems that we are missing some "addendum documentation" on this kind of cofiguration.
    Anyone has this kind of doc?
    Thx
    Enrico

    Hi Enrico,
    Have you tried the ANCILE Product Support Center at http://products.ancile.com?
    Please read through and answer the following questions, as well as being informative to me they may also point you in direction to location of this problem.
    May I know the RWD/OS/DB version?
    Are the server/client located in different location?
    Do you have connection problem between server and client?
    Have you tried to restart the related service and test again?
    Do you have the same problem before or it just happend recently?
    Does the problem happen only on some client machine?
    Does the problem happen only for some document?
    Can you please do the following:
    1. Start uPerform Client software.
    2. On the problem computer, go to Tools > Options in uPerform Client
    3.  In the #General# section, ensure that the Logging levels (Log and
    Publishing) are set to #Debug# by using the drop-down option:
    4. IMPORTANT: Recreate the steps that lead to the issue with your
    uPerform document.
    5. To create the Sysinfo log file, Select Help > About
    Hope this helps,
    Kind Regards,
    Matthew

  • Imp problem, IMP-00010 header file error

    Hi all,
    I downloaded the global sample schema from http://www.oracle.com/technology/products/bi/olap/index.html. There is an dump file in sample and when I want to imp the file I got the error IMP-00010.
    I search the forum and understood that the problem might be the "http download" I made. But otn doesnt allow ftp download.
    Anyone has any suggestion?
    thanks
    yasemin

    The error code says this:
    IMP-00010 not a valid export file, header failed verification
    Cause: Either the file was not generated by Export or it was corrupted.
    Action: If the file was indeed generated by Export, report this an Import bug and submit the export file to Oracle Support Services.
    I want suggest you to use the latest version of "imp" that you can. Also I want suggest you to do the import in the server side with the server executables and not in a client station.

  • Exp/imp problem

    Hi,
    I am trying to export on my solaris machine. But the problem is, there is no space on the machine (as much big as the db). So can i export. Please advice
    Regards

    use mknod to zip the file simultaneously while taking the backup
    mknod pipe_name p
    gunzip <emma_new.dmp.gz >pipe_name &
    imp system/team4u file=pipe_name log=imp_emma_rows.log tables=MNTC_EVENT_TIMELINE_HIST fromuser=emma_new touser=emma_new rows=y
    mknod pipe_name p
    gzip <pipe_name >emma_new.dmp.gz &
    exp system/team4u file=pipe_name log=imp_emma_rows.log tables=MNTC_EVENT_TIMELINE_HIST fromuser=emma_new touser=emma_new rows=y
    or take export from remote machine where space is there

Maybe you are looking for

  • Imac as external monitor for windows Notebook

    Hi, I want to switch from my Windows Pc to a mac for private use. I prefer the new iMac (2011) 21,5" but I could not get an definite answer (not even in my local apple store) if it is possible to connect an existing Notebook (with VGA Mini-d-sub or D

  • Delete not allowed

    is it possible that, if the forms is in execute_query mode (i.e it has retireved some results from the database) then automatically it disables the delete allowed propert of the block. another is, how can i find the current position of my text field.

  • Want to change Date format in ISA webshop

    HI,     I want to know how to setup a date format in ISA webshop. Currently our webshop is showing as mm/dd/yyyy format. we wanted to change it to dd/mm/yyyy format. Can any body suggest me how to change it.

  • Toplink10g in Applet

    Hi, I'm trying to deploy an Applet(built with Toplink10g) to a OC4J Standalone Server. If it works, I want to deploy this Applet on an available 9iAS. The Applet was developed with JDeveloper and works there. Deploying it to an running OC4J Server vi

  • *.exe is not a valid win32 application error message

    When I download updates I cannot install them.  I get the error message that they are not valid Win32 applications, which I know is not correct.  This is apparently a common problem with Windows 7, and nobody has come up with a solution in the forums