Simple export question

I have got two users: "amir" and "export"
I got some tables in amir's schema. I get export using the following command:
exp amir/password@orcl file=c:\exp.dmp table=test
I already granted the "export" user imp_full_database
I use the following command for importing the table:
imp export/password@orcl file=c:\exp.dmp full=y log=c:\explog.log
I receive export terminated without warning. But I can not see any test table in the "export" user.
Can anyone help please.
Thx in advance,
Amir

u can do it like :-
D:\oracle10g\product\10.1.0\db_1\BIN>exp scott/tiger tables=emp file=c:\emp.dmp
Export: Release 10.1.0.2.0 - Production on Mon May 2 14:02:04 2005
Copyright (c) 1982, 2004, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
With the Partitioning, OLAP and Data Mining options
Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
About to export specified tables via Conventional Path ...
. . exporting table EMP 13 rows exported
Export terminated successfully without warnings.
FOR TESTING i DROP the table
SQL> drop table scott.emp ;
Table dropped.
D:\oracle10g\product\10.1.0\db_1\BIN>imp scott/tiger tables=emp file=c:\emp.dmp
Import: Release 10.1.0.2.0 - Production on Mon May 2 14:03:01 2005
Copyright (c) 1982, 2004, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
With the Partitioning, OLAP and Data Mining options
Export file created by EXPORT:V10.01.00 via conventional path
import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
. importing SCOTT's objects into SCOTT
. . importing table "EMP" 13 rows imported
About to enable constraints...
Import terminated successfully with warnings.
Thank and Regards
Kuljeet pal singh

Similar Messages

  • Simple/silly question: how do I set/change default font/color for outgoing mail messages?

    Simple/silly question: how do I set/change default font/color for outgoing mail messages?

    Just a suggestion..........
    Download Thunderbird.  Easier to use when it comes to what you want to do w/your emails. 

  • 4 Simple Flash Questions that Are Stumping Me!

    What is the Frame Rate for Web Animations
    Q1. I am making an animation which will be played on the web. What is the default frame rate (fps) of Flash CS5? And what is the frame rate of for web?
    Q2. My animation needs to be 30 seconds long. So at 15 fps that would mean I need to use 600 frames in Flash?
    How Do I Mask everything so all I see is the Content on the Stage?
    I have a wide image that extends past my movies stage size so when I preview my movie the image is visible. How do I mask out anything that extends past my movies window size? I believe I can create a layer named "mask" and place it above all other layers, but I forget how to make the mask. Any help is appreciated.
    How to Fade a Graphic
    I have a graphic element (some type) and I want it to fade from 0% to 100%. In older versions of Flash I could just select the symbol and then set it's alpha value to 0%, move a few keyframes and then set the alpha to 100%. Voila! but now it doesn't seem to work that way. How can I do this in CS5?

    Ned, it says 24 fps which means there is 24 frames per second so each 24 frames is 1 second.
    Date: Fri, 4 Nov 2011 05:35:16 -0600
    From: [email protected]
    To: [email protected]
    Subject: 4 Simple Flash Questions that Are Stumping Me!
        Re: 4 Simple Flash Questions that Are Stumping Me!
        created by Ned Murphy in Flash Pro - General - View the full discussion
    1 You can create your character as a movieclip and copy/paste that movieclip from one file to another. 2. One way to create a movieclip is to copy all the frame of the animation's timeline (select them all, right click the selection, choose Copy Frames), then create a new movieclip symbol (Insert -> New Symbol...etc) right click on its only keyframe and chhose Paste Frames.  THat will put all the layers and frames you copied into the movieclip The only way to come close to being certain about the timing of you animation is to use code to keep track of the time, something like getTimer()..  The frame rate that a file plays at is not a reliable means of dictating the time it takes due to a variety of factors which include the amount of content you are trying to process and performance limits of the user's machine.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4007420#4007420
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4007420#4007420. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Flash Pro - General by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Simple performance question

    Simple performance question. the simplest way possible, assume
    I have a int[][][][][] matrix, and a boolean add. The array is several dimensions long.
    When add is true, I must add a constant value to each element in the array.
    When add is false, I must subtract a constant value to each element in the array.
    Assume this is very hot code, i.e. it is called very often. How expensive is the condition checking? I present the two scenarios.
    private void process(){
    for (int i=0;i<dimension1;i++)
    for (int ii=0;ii<dimension1;ii++)
      for (int iii=0;iii<dimension1;iii++)
        for (int iiii=0;iiii<dimension1;iiii++)
             if (add)
             matrix[i][ii][iii][...]  += constant;
             else
             matrix[i][ii][iii][...]  -= constant;
    private void process(){
      if (add)
    for (int i=0;i<dimension1;i++)
    for (int ii=0;ii<dimension1;ii++)
      for (int iii=0;iii<dimension1;iii++)
        for (int iiii=0;iiii<dimension1;iiii++)
             matrix[i][ii][iii][...]  += constant;
    else
    for (int i=0;i<dimension1;i++)
    for (int ii=0;ii<dimension1;ii++)
      for (int iii=0;iii<dimension1;iii++)
        for (int iiii=0;iiii<dimension1;iiii++)
           matrix[i][ii][iii][...]  -= constant;
    }Is the second scenario worth a significant performance boost? Without understanding how the compilers generates executable code, it seems that in the first case, n^d conditions are checked, whereas in the second, only 1. It is however, less elegant, but I am willing to do it for a significant improvement.

    erjoalgo wrote:
    I guess my real question is, will the compiler optimize the condition check out when it realizes the boolean value will not change through these iterations, and if it does not, is it worth doing that micro optimization?Almost certainly not; the main reason being that
    matrix[i][ii][iii][...]  +/-= constantis liable to take many times longer than the condition check, and you can't avoid it. That said, Mel's suggestion is probably the best.
    but I will follow amickr advice and not worry about it.Good idea. Saves you getting flamed with all the quotes about premature optimization.
    Winston

  • Error in Export "EXP-00091: Exporting questionable statistics  "

    when i execute export on server having RAC DB R10g R2 on Linux 4 it return error , nobody has changed it's characterset .
    how to fix this error, CAN THIS ERROR CAUSE BIG DESASTER TO DB IN FUTURE
    C:\>exp hst/hst file='/home/oracle/expdat.dmp
    About to export specified users ...
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user NRI
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions for user NRI
    About to export NRI's objects ...
    . exporting database links
    . exporting sequence numbers
    . exporting cluster definitions
    . about to export NRI's tables via Conventional Path ...
    . . exporting table TABLEA 0 rows exported
    EXP-00091: Exporting questionable statistics.
    . . exporting table TABLEB 0 rows exported
    EXP-00091: Exporting questionable statistics.
    Kindly Help be ho can i fix this error
    Thanks in advance

    Hello,
    You wrote:
    CAN THIS ERROR CAUSE BIG DESASTER TO DB IN FUTUREThe error message EXP-00091: Exporting questionable statistics just warns you that the statistics
    were exported but these statistics may be not useable.
    So, if you have to import these Tables, you may have to collect again the statistics of these Tables.
    It's not relative to this problem but why don't you use DataPump (expdp/impdp) ?
    Please find enclosed a link about DataPump, it's much more powerful than the classical export/import:
    [http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_overview.htm#i1009203]
    Best regards,
    Jean-Valentin
    Edited by: Lubiez Jean-Valentin on Feb 6, 2010 12:56 PM

  • EXP-00091: Exporting questionable statistics

    Dear Friend,
    I am using Linux Database and Windows database, the problem now I am facing while exporting data from Linux which is imported from windows oracle database dump file.
    when I am exporting I am getting this error
    EXP-00091: Exporting questionable statistics
    and shows
    Export terminated successfully with warnings
    Now exported file I am importing from Linux to windows and getting this error
    Connected to: Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Import file: EXPDAT.DMP > c:/aa.dmp
    Enter insert buffer size (minimum is 8192) 30720>
    IMP-00010: not a valid export file, header failed verification
    IMP-00000: Import terminated unsuccessfully
    Regards,
    Oracle User

    Hi,
    >>because I exported dump from oracle10G
    Then you use the exp 10g version, right ? To move data DOWN a version(s), you need to export using that lower versions EXP tool and using IMP that lower version tool.
    Take a look at this below?
    Exporting Data From Release 10.2 and Importing Into Earlier Releases
    Export From      Import To      Use Export Utility For      Use Import Utility For
    Release 10.2      Release 10.2      Release 10.2           Release 10.2
    Release 10.2      Release 10.1      Release 10.1           Release 10.1
    Release 10.2      Release 9.2      Release 9.2           Release 9.2
    Release 10.2      Release 9.0.1      Release 9.0.1           Release 9.0.1
    Release 10.2      Release 8.1.7      Release 8.1.7           Release 8.1.7
    Release 10.2      Release 8.0.6      Release 8.0.6           Release 8.0.6
    >>EXP-00091 is still remain.. you said I have to chang ethe NLS but I am new to linux
    I think that there is no problem ... but you can use also as I said before the statistics=none clause, but remember that you need to use the exp 9i version ...
    Cheers

  • A few simple Logic questions...please help.

    I have a few probably simple Logic questions, that are nonetheless frustrating me, wondering if someone could help me out.
    1. I run Logic 8, all of the sounds that came with logic seem to work except organ sounds. I can't trigger any organ sounds (MIDI) on Logic, they won't play. I have a Yamaha Motif as my midi controller.
    Any idea why?
    2. I've starting running into a situation where I will record a MIDI track, the notes are recorded but they won't playback. The only track effected is the one that was just recorded. All other midi tracks playback.
    I have to cut the track, usually go out of Logic and back in, re record for it to playback properly. Any idea why this may be happening?
    3. How important is it to update to Logic 9. Are there any disadvantages down the road if I don't upgrade. If I purchase the $200 upgrade, do I get a package of discs and material, or it just a web download.
    Any help is appreciated!
    Colin

    seeren wrote:
    Data Stream Studio wrote:
    3) You get a full set of disks and manuals.
    They're including manuals now?
    I think his referring to the booklets ...on how to install etc
    It would be great to see printed manuals though ...I love books especially Logic/Audio related !!
    A

  • Basic Exporting Question

    My main question is a very basic exporting question, but here is a super-condensed explanation of my big-picture goal for context:
    Large (~450 MB) aiff on CD --> trim w/ Quicktime --> small (~16 MB) MP3 in iTunes
    I would like to take an audio file (aiff) that is approximately 450 MB and export it from Quicktime and in doing so, reduce the file size and convert it to MP3. When I simply try to export it, it doesn't ask me about what size I want, nor does it give the option of MP3 formatting.
    I have figured out how to reach my goal, but it's a mess. After I make my trims in QT, I have to:
    1. select "share" instead of "export".
    2. It asks me what size I want and I select small.
    3. The file is then exported as a Quicktime movie into Mail and the size is reduced from 450 MB to about 20 MB.
    4. I then have to "right-click" on the attachment in the email that is created,
    5. save the attachment,
    6. discard the email,
    7. import the file into iTunes, and
    8. create an MP3 in iTunes to finally arrive at my goal.
    This seems like a ridiculously convoluted process to change a large aiff to a small MP3 and put it in iTunes. Any suggestions?

    Thanks. I guess the basic answer to my question is that it can't be done in one or two fell swoops. The problem is that it starts on a burned disc, and I need to make edits to it before it ends up in iTunes (to be eventually used in iWeb). I was hoping to avoid juggling back and forth between iTunes and QT. I either would have to send it back to QT to do the edits after -->iTunes-->mp3, or import the large file from the CD to QT, make the edits, save changes, import large file to iTunes, convert to mp3.

  • Exporting question #53427

    I read through exporting questions for over the last year, but I came away more confused than ever. Here is my problem (which others had, but I'm looking for the quickest solution):
    I made a 3 hour video on iMovie 8 only to read about its limitations afterward. I used information I found on some post to download iMovie 6 and then export my iMovie 8 project to it for its finalization.
    I tried to export the movie LARGE size and it took 6 hours only to end up with the message error -2125.
    I then tried to export to Quicktime, but it was scheduled to take 30+ hours.
    Is there an easier way to get the iMovie 8 project into iMovie 6 in order to complete it?
    (As a side note, I have a 2003 copy of Final Cut Pro which I have not installed. Would this be worth installing on my MacBook to transfer the project to that?)
    Thanks as always.

    Pete Abred wrote:
    .. I was wondering if you know how how I can divide my 3 hour movie into 3 dvd's when I burn the project. ..
    iDVD accepts projects of up to 120min.. so 2 DVD would be enough, allthough ≤60min allow the best quality in iDVD ..
    iM mastermind Dan Slagle answers your question on his site:
    http://www.danslagle.com/mac/iMovie/usage/5003.shtml

  • Simple Quick Question

    wrong section, post was moved.
    Message was edited by:
    Rob17

    you titled "simple quick question"...
    .. complicated to answer..
    a) the TermsOfUse of the iTS don't allow any processing of purchased files, these are "copy protected"..
    b) iM has a voice-over function..
    c) iM is a video-edit app.. easy to use... just learn to handle it...
    d) iM allows to "extract" audio (=muting the original audio, adding your own..)
    e) to learn iM, spend some time here: http://www.apple.com/ilife/tutorials/imovie/index.html
    f) use pencil and paper first! WRITE and scribble, what shall happen when in your movie/parody... make a script, draw a storyboard .. THEN launch iM.. in other words: think first, then edit.. iM is just a tool, it does not "create"... Picasso needed a papertowel and half a stencil to create art....
    g) to get comfortable with iM, start with your own, small, short (3min!) project... import some stills, edit them, add a funny voice-over, add sounds, add music... good? make a bigger one...
    h) .. in our Lecture II, we teach you how to import shows from TV, youtube, wherever..
    standard disclaimer:
    be nice to ©opyrights ...

  • Simple query question

    hi all,
    I have a XMLType table with one column - I have presently one row, in my column xmlsitedata I have stored one large xml file.The schema definition is given below:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <xs:schema elementFormDefault="qualified" attributeFormDefault="unqualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    - <xs:element name="siteList">
    - <xs:complexType>
    - <xs:sequence>
    <xs:element name="site" type="siteType" minOccurs="0" maxOccurs="unbounded" />
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    - <xs:complexType name="siteType">
    - <xs:sequence>
    <xs:element name="nameEn" type="xs:string" />
    <xs:element name="nameFr" type="xs:string" />
    </xs:sequence>
    <xs:attribute name="code" type="xs:string" />
    </xs:complexType>
    </xs:schema>
    I have executed the query below:
    select x.XMLSITEDATA.extract('/siteList/site/nameEn/text()').getCLOBVal() "stName" from wsitelist x;
    and I get all english names of some 200 locations, however, there is 1 row selected and all names show up on one row. How do I split them into 200 or whatever rows?
    Thanks,
    Kowalsky

    Have a look at the answer provided in the following thread.
    very simple XML question
    This may solve your problem.
    use xmlsequence.
    Alvinder

  • Simple Data Export Question

    Hello,
    I am testing the process-feature of the Livecycle WorkBench.
    However, I am facing some difficulties...
    As a matter of test, I wanted to create a simple process which would:
    Fetch an email attachement, an interactive PDF form
    Export the XML data from the form
    send the XML data by email
    I manage to do step 1, but as soon as I get to step 2, I have the following problem:
    I have the PDF form stored in a variable, of type document, by I cannot use this variable to assign in as input to the "export data" component...
    The export data component seems to expect an asset...
    If I run my process, with the process as input (in the URI format), I get an input exception saying that my PDF is not in a correct format...
    I thought that this test-process would be a simple one
    Could someone show me how to achieve this in a process? Thanks a lot!

    Please seek help from various services samples available here : http://help.adobe.com/en_US/livecycle/9.0/samples/lc_sample_service.html
    Here is the link to all the samples : http://www.adobe.com/devnet/livecycle/samples.html
    Hope this helps.
    Thanks,
    Wasil

  • IMovie export question

    I am using Roxio video converter to take my old 8mm tapes into iMovie (10.0.6) and then into iDVD.  I have two questions.  I have read that you should change the video format to AIC for older versions of iMovie, is this still the best practice with the newer version?  All of my videos are SD, so when I share the file from iMovie, what quality should I select (high, medium....)?
    TIA

    Is this movie comprised of video or still images?
    Matt
    The movie is entirely video clips from our digital camera. Granted, they are not camcorder quality to begin with, but they do look great when played back in fullscreen mode in iMovie. Shouldn't I be able to get that same quality after I export the movie? Shouldn't it be simple to do?
    A friend who works at Pixar saw the movie on DVD, and confirmed that he saw lots of "artifacts" from compression. He didn't have a solution, not being familiar with the software, but it seems to me there should be a way to export the movie uncompressed. I shouldn't be restricted to playing it only in iMovie on a Mac to see it the way it is meant to be seen, right?
    (I guess my gripe with Apple is that this program is designed for amateurs making home videos, like me, but they seem to expect that we'd be satisfied with poor quality exports, rather than wanting our movies to look professional.)
    Thanks for all your help.

  • After Effects CS4 Exporting Question

    I am creating several After Effects CS4 compositions that will be used in a Premier Pro CS4 project. Right now I am importing the AE compositions into Premiere with out exporting them first. It is real convenient to be able to click into PP and see the current changes take effect. My question is this, once I am done tweaking a composition should I be exporting it in another format or I is it ok to use the AE file as is? Am I suffering any quality loss by not going to quicktime or one of the other choices?
    And in PP you hit enter to render. Is the AE equivalant hitting the space bar and playing the timeline? I see the green line above any changes but I didn't know if there is another step to maximize the quality of the finished product.
    Thanks in advance for any help.
    Cole

    R-Cole wrote:
    Am I suffering any quality loss by not going to quicktime or one of the other choices?
    If you suffered any quality loss, you'd know your settings are wrong. Most commonly people make a mess of field order, which of course you can neatly avoid by using DynamicLink such as you already do. The rest is more or less a matter of personal preference and how much performance is consumed by live rendering the AE compositions vs. how much juice your machine has. You wouldn't use that workflow on very complex projects where rendering a single frame can take up to several minutes, but for straight titles and color corrections it's okay.
    R-Cole wrote:
    Is the AE equivalant hitting the space bar and playing the timeline?
    The green line refers to frames stored in RAM, the blue ones to the disk cache, should you use it. Read the help files on how to generate RAM previews to populate both caches. After you have RAM-previewed each segement of the timeline and use the disk cache, it may be possible to get realtime spacebar playback, but there is no guarantee for that. After all, AE is primarily foicused on compositing, not RT editing. There's one caveat, however. The disk cache will only be used, if AE thinks it could not render the frames quick enough, so in your simple scenario it may never be used. And of course specific chnages will invalidate caches, so you's have to re-render. It really depends.
    Mylenium

  • Export Question Pool

    Is there a (simple) way to export quiz questions for review...as a Word doc or spreadsheet maybe?

    Since your post title mentions Question Pool, you need to remember that if the number of quiz questions in your project is less than the number of questions in your pool, the quiz questions will be randomised and won't show up in your print output.  You can make sure all quiz questions show up by migrating the questions out of the pool back into the main slide area first before publishing.

Maybe you are looking for

  • I tunes won't play a song on my Windows 8 computer.   Plays videos but won't play music.

    Itunes will not play music on my HP laptop.  I have uninstalle and reinstalled but no success.  Plays videos but not music.

  • Save file in same folder

    It seems since CS5 when I open a file, make changes, and save the file, ID doesn't know where to save the file. Why doesn't it just save it where it is? Now I have to browse back to the folder where the file lives. Is there any way to fix this? Thank

  • How to wipe out Podcast contents on my iPod?

    The sync feature on my iPod is not working correctly. Now I want to clear all the podcast contents, can someone tells me how to do it?

  • Nike+ syncing doesn't work

    I had been looking into getthing the Nike+ kit for my 6th gen nano so I was really happy when the latest update removed the need for the extra hardware, and does everything natively on the nano.  However, after wasting several hours banging my head a

  • Best way to export/compress for DVD???

    Hi there friends, Can someone please advise the best method, export and compress to put my project on DVD. It is 14.5gb in size and I would like to put it on one dvd....... Help please.