Problem with MVIEWS in import

I had got an export dump from an Oracle 8.1.7.4 database and imported it into a 10gR2 database (2 node RAC on AIX 5.3, 64 bit, 10.2.0.3). All the MVIEWS got created.
Now again i took [traditional] export of the new database and created it on another machine (10.2.0.3 non-RAC on AIX 5.3,64 bit). Now here came the issue. Some of the MVIEWS got created as VIEWS.
That SNAP$ table got created and then what was supposed to be a MVIEW, got created as VIEW on SNAP$ table. It happened with 12 MVIEWS out of total 32.
Any ideas what could be the reason or anybody faced something similar ?
Any more information required please let me know.
Thanks
Amardeep Sidhu
Corrected some information....
Message was edited by:
Amardeep Sidhu

Could you list the steps you are going through in detail?
I just tried stacking some images in the import window (from the HD not a card) and they came into the album as closed stacks containing all the images. Doesn't stop it being a bug on your installation, of course, just that it doesn't reproduce on my machine.
Ian

Similar Messages

  • Problem with jpeg images imported from Illustrator

    Hi, i am kind of new with Premire and video, though have experience in web design and coding, but i have noticed a weird problem with premiere pro cs 5.5  when i  import jpeg pictures and put them as intro before the video that where done in adobe illustrator and have vectors and stuff, the quality of the image gets pretty bad and blurry...i searched through the internet looking for clues on what to do like changing to png, tiff formats but nothing has helped so far....any ideas on what to do. So when i import jpeg,png images from illustrator (that have vectors or illustrations) do i have to do something special with it, or import it in some special format??? i would appreciate the help.
    This is how the image looks on youtube:
    Anyway here is the video with its poor image quality. http://www.youtube.com/watch?v=o_oMNzXAZ8Y&feature=youtu.be
    This is how it looks originally before putiing it, in premiere pro cs 5.5
    Anyway here is the video with its poor image quality. http://www.youtube.com/watch?v=o_oMNzXAZ8Y&feature=youtu.be
    THANX guys would appreciate the help!!!

    hiya.
    video likes 72 dpi ( though some will say it doesnt matter .. thats a long story ). basically video 'shows' 72 dpi ( basically what the monitor resolution is...typically 72 dpi ).  As you know from print and dimensions, there is a relative sorta thing with byte count ( file size in bytes ), ppi ( I usually say dpi but in video its ppi ....same thing basically )..., and dimensions ( width x height ).
    soooo , as you know in print and web stuff...there is a relationship between number of dots or pixels, dimensions in inches or pixels, and overall byte count of file size....
    That said, in "print" it is usually best to go with 300dpi.. In video it is best to go with 72 ppi.....
    Also, in print and going offest press.. its nice to go with cmyk ( for color separations ).. but in video and web its best to go with RGB.
    The video stuff doesnt deal with vector stuff... it just sees and deals with bitmapped stuff...vector stuff is a mathematical sorta thing whereas video stuff is just plain old bitmaps ( like BMP, TIF, JPG, etc )...
    Ideally your still images and graphics in a video editing program would be bitmapped rgb 72 ppi.. and match exactly the dimension of your video format ( eg. 1080p ).  That said, it is normal to have LARGER images ( still images and graphics ) than your project dimensions if you PLAN ON SCALING AND MOTION )... like, your original graphic or pic can be larger than the project if you plan on scaling it down over time to make it look like you are zooming out in the video ....
    To get the best results of a graphic or picture in a video is to have it exactly the project size ( eg. 1920x1080 px at 72 ppi for full HD ).
    soooooo.... if you convert your vector to bitmap, save as psd or tif or something... at 72ppi , with the dimensions in inches or pixels that equals the video ( 1920x1080 for example )... you will see what you want in your second sample ( the original )...
    ps.. you can import layers to the video if you wanna do a psd file and have ONE of those layers the one you use in your video ...can label it something like " video layer " ... whatever...

  • Problem with iPhoto 7 import

    Hi,
    I find a big problem with iPhoto 7 and import !
    I made 53 scan of photos in 1200dpi, modified, cleaned and saved them in jpeg files (1mo to 2mo by photo)
    all are in the same folder and some are in grayscale other in colors.
    When I want to import (with copying or not) them in iPhoto 7 (already updated) 15 of 53 have not small photo in event they are black, and when I zoom on them they are bug.
    It is only in iPhoto.
    If I share this event in iMovie small photo is black but if I move this photo in my iMovie project Photo is good...
    Then it is really a big problem because I can't use iPhoto for my albums, cards, ...
    Have you a solution?
    Regards,

    all my photos are in jpeg in high resolution
    It is very important because if we want to produce an album we must send a high resolution, but they are only 1mo to 2mo by photo not 35mo...
    iPhoto not import grayscale? ...
    I you produce in RGB photos are biggers...
    It is really a bad news
    The problem I have some colors photos with this bug...

  • Problem with sequences after import

    We recently imported some table data from QA to DEV and now the DEV database has issues with sequences errors. How can I resolve the problem with sequences since we have constraint violation errors as a result of the table sequences being out of sync after the import of several schema tables.

    We run a script like the following to get the sequences as close as possible after importing from PROD to DEV:
    set serveroutput on;
    DECLARE
         CURSOR CUR IS
              SELECT      otherdb_seq.sequence_owner AS owner,
                        otherdb_seq.sequence_name AS seq_nm,
                        TO_CHAR(otherdb_seq.last_number) AS start_nr
              FROM           dba_sequences currdb_seq,
                        dba_sequences@prod otherdb_seq
         WHERE      currdb_seq.sequence_owner IN ('~schemaname~') AND
                        currdb_seq.sequence_owner = otherdb_seq.sequence_owner AND
                   currdb_seq.SEQUENCE_NAME = otherdb_seq.sequence_name
              ORDER BY      1, 2;
         sql_string VARCHAR2(500);
    BEGIN
         FOR REC IN CUR
         LOOP
         sql_string := 'DROP SEQUENCE '||REC.owner||'.'||REC.seq_nm;
              DBMS_OUTPUT.PUT_LINE(sql_string||';');
              EXECUTE IMMEDIATE sql_string;
              sql_string := 'CREATE SEQUENCE '||REC.owner||'.'||REC.seq_nm;
              sql_string := sql_string ||' START WITH '||REC.start_nr;
              sql_string := sql_string ||' MAXVALUE 999999999999999999999999999';
              sql_string := sql_string ||' MINVALUE '||REC.start_nr;
              sql_string := sql_string ||' NOCYCLE NOCACHE ORDER';
              DBMS_OUTPUT.PUT_LINE(sql_string||';');
              EXECUTE IMMEDIATE sql_string;
              sql_string := 'DROP PUBLIC SYNONYM '||REC.seq_nm;
              DBMS_OUTPUT.PUT_LINE(sql_string||';');
              EXECUTE IMMEDIATE sql_string;
              sql_string := 'CREATE PUBLIC SYNONYM '||REC.seq_nm||' FOR '||REC.owner||'.'||REC.seq_nm;
              DBMS_OUTPUT.PUT_LINE(sql_string||';');
              EXECUTE IMMEDIATE sql_string;
              sql_string := 'GRANT SELECT ON '||REC.owner||'.'||REC.seq_nm||' TO PUBLIC';
              DBMS_OUTPUT.PUT_LINE(sql_string||';');
              EXECUTE IMMEDIATE sql_string;
         END LOOP;
    END;

  • Attachments problems with eudora mailbox imported to apple mail.

    greetings,
    i am considering moving from eudora to apple mail. i've done a test of importing one of the eudora mailboxes and am having a problem with the attachments.
    the attachments to the messages in the eudora mailbox appear to be recognized by the apple mailtool. however, apple will not display the attachments. my test is with a mailbox i keep messages from a friend who travels a lot and sends me jpegs of his trips. the import gave no error messages.
    after the import, i can see all the message are in the new mailbox. i can open them fine. however, when viewing messages in apple mail that had attachments, mail shows the message and also shows a list of the pics attached, but it doesn't display the jpgs.
    "This message has the following attachments:
    .../Library/Mail/Attachments/xxx.jpg, etc..."
    i can go to the attachment directory and find the jpegs there. they open fine in preview... but there seems to be no way to view or double click the filename to open it.
    i've searched the local help and this forum and haven't found this thread yet...
    does anyone have any experience with importing email with attachments?
    is there some setting i need to change in mail to display the attachments or open them?
    i appreciate any suggestions or pointers to the solution if somewhere on web...
    jeffery-

    ok, i think i found something that fixes this problem...
    Eudora Mailbox Cleaner
    i found it on: http://www.hawkwings.net/plugins.htm
    this software seems to bypass apple's "import" and does it's own method of getting the mail files into apple's mailtool... in addition to allowing apple's mail to display the attachments (jpgs, pdfs, etc) this also looks like it preserved the message status... the read messages are marked "read" instead of "unread" also...
    i wonder if there is a way to transfer them back, if i decide to go back to eudora after trying apple's mail... my next quest... i will be very flexible to try apple's mail if it is not a 1 way journey, since i'm looking for some solutions in apple's mail... thanks for reading-

  • Having a problem with "open" and "import" buttons!

    Hello all,
    I am having some trouble with a basic function in Logic. When I go to "file" and select "import," the window of options appears. However, when I select a file and click the "import" button, literally nothing happens. I have had a similar problem, when I go to the "file" menu and select "open." A window will appear for me to browse to the logic file I want to open, but when I click "open," nothing happens. However, if I manually go to the file and double-click it, then the file will open. The drop-down is set to "All logic document types," though I have tried "all Logic songs" with the same problem. Please help!
    Best,
    Jon

    you know whats funny, this project has to do with arrays of objects and not inheritance. We learned inheritance last week but the lab we are doing which is this, is for arrays of objects. sorry for the confusion lol. so you can completely ignore this, it actually has it in big bold letters at the top of the web page for the lab.

  • Problem with 720p mp4 import

    I have some source material shot on a Sony T900. These are 720p files in mp4. When I play them in QT or VLC they look very good. When I import them into CS4 I get sections where the video 'blows out': big blocks of the image turn almost white or almost black. Interestingly, it seems that these episodes last for 15 frames.
    I've tried a few different presets (wide screen avi, avchd 720p, hdv 720p30) with the same results.
    I can see the problem both on the timeline and when I export.
    I am wondering if I should convert these clips to AVI (or something) using another program (such as?) first.
    Enlcosed are examples of when it is ok and when it is wacked out.
    Thanks for the help, this is driving me a little crazy.

    I have been following your story too.  It is fustrating when you can play the video fine in its original form but not import it and use it in CS4.
    I have been trying Streamclip on my original mp4 files.  First I tried export to AVI with the following results:  They play fine in VLC and Windows but when I import them into Adobe they play real fast for the first 10 seconds then it goes to still frame for the rest of the clip length.  Very odd.  This is true for a variety of settings I tried.
    Then I tried the export to DV.  This works.  The clips import corrrectly and they also do not require rendering in CS4.   But the clips are in 720x480.  This might end up being the way I go but still looking for a better solution.
    This whole thing started when my AVCHD camera was stolen in Vietnam and all I had was the Sony T900 to shoot the video.

  • Problems with dark colours importing photos in iMovie 11

    Hello,
    I have a problem importing photos from iPhoto Library 11 to iMovies 11 in order to build a video HD 1080p.
    When iMovie creates the snapshot of the photo, happens that dark photo's colours (above all black) appears ginned with low resolution and, even after the rendering in 1080p, wathing the video via apple TV or in Blu ray disk, this unliky effect on black colour is rilevant
    Thanks

    As a Test:
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?
    Regards
    TD

  • Problem with the Export/Import Utility when importing a .portal file

    Hi there !
    I got the following error when trying to import a .portal file to a desktop by using the Export/Import Utility.
    <13-11-2009 12:13:26 PM CLST> <Error> <netuix> <BEA-423487> <Import: did not add navigable [2203] as it would cause an illegal dependency.>
    The error is shown several times, starting from the number [2203] until [2285].
    It causes that i can't see some pages of my portal... it's like they dont exist.
    I Hope you can help me fix it, because i have not found any information about it.
    Best regards
    P.D.: I am using the BEA Weblogic 10.0.1 version.
    Edited by: user12231353 on 16-nov-2009 12:38

    I upgraded to cs6 and imported all the images together, I made them 3 frames per and exported them. The problem is slightly improved but still there. I'm still getting flicker.
    Check it out: http://www.youtube.com/watch?v=g_yZjskzTLs
    Black screen version from yesterday if you want to look at it: http://www.youtube.com/watch?v=NCcAEO8YU6Y
    The problem has to be with my settings. when I upgraded it deleted all my prefrences and settings. There was no dslr preset either so I had to redo it all from  scratch to the best of my ability. Here is a complete rundown of my settings:
    I shoot with a canon dslr 60D in 24fps and upload all my stuff in 1080p. Please advice.

  • Problem with MVIEW Refresh

    Hi all,
    I am facing the following problem while refreshing MVIEWS.
    ORA-12008: error in materialized view refresh path
    ORA-03113: end-of-file on communication channel.
    I am using the following method to refresh.
    dbms_mview.REFRESH ('Mview_Name',
    'C',
    TRUE,
    FALSE,
    0,
    0,
    0,
    TRUE
    The script for creating MVIEW is as follows:-
    CREATE MATERIALIZED VIEW gb_ghx_orgs_a
    PCTFREE 5 PCTUSED 60
    TABLESPACE TableSpace_Name
    STORAGE (INITIAL 250k NEXT 250k)
    REFRESH COMPLETE WITH ROWID
    START WITH SYSDATE
    AS
    SELECT Statement;
    can any body help.
    Thanks

    What version of database do you have? what client version are you connecting from?
    ORA-03113 may required you to contact Oracle Support.
    SQL> CREATE MATERIALIZED VIEW gb_ghx_orgs_a
      2  PCTFREE 5 PCTUSED 60
      3  TABLESPACE KKISHORE
      4  STORAGE (INITIAL 250k NEXT 250k)
      5  REFRESH COMPLETE WITH ROWID
      6  START WITH SYSDATE
      7  AS
      8  select * from scott.emp
      9  /
    Materialized view created.
    SQL> begin
      2      dbms_mview.REFRESH ('gb_ghx_orgs_a',
      3      'C',
      4      '',
      5      TRUE,
      6      FALSE,
      7      0,
      8      0,
      9      0,
    10      TRUE
    11      );
    12  end ;
    13  /
    PL/SQL procedure successfully completed.
    SQL> disconnect
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.3.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.3.0 - Production
    SQL>

  • Java corba ID CS5 7.0 Problem with table format import excel 2007 document

    hello,
    I want to import an excel 2007 document with a table into a textframe. This is the code to set import preferences:
         ExcelImportPreference pref = aplicacion.getExcelImportPreferences();
         pref.setTableFormatting(kTableFormattingOptionsExcelFormattedTable.value);
    but when I insert the file into de texframe and export in a pdf file i lose the table format, always apply this format: kTableFormattingOptionsExcelUnformattedTabbedText.value.
    This problem only happens with excel 2007. Excel 2003 files the import is ok.

    Apart from iTunes (which I rarely update since we never use it) they both had a Java update, which I'm installing now but I can't imagine that's connected (plus they both didn't have it). Both Macs are 10.6.8.
    I also repaired the permissions and cleaned caches on Friday. Today I created a new user/profile and tried the same thing on that. No luck.

  • Problem with XML FCP import - grey hash marks

    I have an XML import from FCP and roughly half of the clips have the  grey hash marks presumably because the clip is pointing to in and out points that are unavailable in the source file.  I've seen these hash marks when a clip was  shortened in an external editor, like Audition. Sometimes you will see  only half the clip with the hash marks in that case. I suspect the project file is either misinterpreting the  framerate of some of the footage (most likely, I think) or the translation from  XML is inaccurate. All the source files play fine in the source monitor  so I don't suspect a codec  problem,  but if you look for the in and out points of the selected clip  they are often long after the video has ended. Normally if the source clip is offline it appears red.
    The other odd thing, not sure if related, is that the audio gain in the clip efffects , which drives the yellow line, is set to -infinity in each which I manually reset to 0.
    If anyone has any experience with this problem please share. I can manually slip all these clips to reveal the proper portion of the clip but that will be a tedious process obviously. I would love a global solution.
    Thanks in advance.
    Chris

    brigzor wrote:
    I don't really need to open it in premiere, any program in windows would be fine, all I need from this .xml file is to be able to check the names of the clips in the sequence and in which order they are sequenced, I don't need to edit it just be able to look at the sequence and the filenames and general source clip structure, so if it really isn't possible in premiere i would appreciate other software suggestions.
    If this is the case, return to the project in FCP and export and EDL instead of an XML file. You can designate that the EDL include the Clip names or File names for each clip and will let you see them and where they reside in the sequence. Once you have exported the EDL, which is a text file, open it in Text Edit and print it out.
    MtD

  • Problem with red footage import

    I cannot import red footage  in premiere pro cs4: error message "file grayed or damaged" Do you know why ?

    After quitting CC (I'm not a subscriber kind of user, that's all), I went back to my master suite Cs6.
    I did one mistake, updating to the current version. A sign of my problem was that Ae Cs6 didn't worked either (in terms of RED files).
    (FCPX and RED Cine X etc worked fine, so I excluded a problem on my system)
    The only solution that I found was working was: After I rolled back to Pr Cs6 6.0.2 (I do no updates druing productions, so one MAC was on 6.0.2, I just copied it)
    It didn't worked with 6.0.0 nor with any other than the one named above.
    The ImporterRedserver.app was 6.0.0 and the Importerred.bundle was the only one in history named ImporterRED 3.38.08 PM.bundle, which was version 6.0.1
    Of course that will not work with Dragon. I tested Scarlet and Epic files from the past two years. They open fine.
    The problem is, if one mixes the versions (e.g., newest RED Cine X and the Photoshop plug in, the stored information in the .RMD file might shift the color: compare Ps RED plug in v6 and v7, with an RMD setting done in RED Cine X. There is a huge shift in blue)
    So, all in all, I hope Adobe delivers a new "bundle" and "app" for Dragon and Pr CS v6.0.x

  • Problems with artifacting when importing clip from After Effects...

    I have spent nearly 100 hours creating some effects in After effects within the last few weeks but have noticed some terrible verticle artifacting when I import them into FCP. I have tried exporting using Uncompressed quicktime codec as well as DVCPro/DV and the "none" option with the best quality settings(all using the same FPS) and it still creates these verticle lines. I have also tried not only using the settings for anamorphic(720x480) but exporting with naitive 16x9 (which I believe is 856x480)and still get these lines.
    I need help please!! I am stumped on this one. Even when viewing the files outside of FCP using the Quicktime player the footage looks perfect.
    I would appreciate any help!
    Thanks,
    Andrew

    My FCP settings are 24p advanced pulldown removed using DVCpro/DV 16x9.
    I have exported using the same settings with the after effects codec to a .mov and still get the problem.
    I am not viewing on an external monitor, only on the canvas. Could this just be a display issue?
    Thanks
    Andrew

  • Problem with large email imports to Mac Mail

    So I am trying to transfer a large archive of emails (probably about 50k emails in total, in folders of 1-10k or so each) from Thunderbird to Mail, and it hasn't been easy. It's terribly slow, so I've started to do individual mailbox transfers one by one.
    The problem I'm having is that once large mailboxes are transferred over, Mail crunches many of the messages in those mailboxes into a single thread. For instance, one folder with a total of 5k messages appears after importing as a folder with 2500 or so individual messages, and 2300 messages all glued together as a single thread. That's not ideal, but what's worse is that this same thread seems to not be getting stitched together with messages arriving in my inbox, generating complete confusion. I tried just deleting this monster thread in order to just selectively import some messages using my IMAP server, but the thread actually won't delete at all (it disappears briefly, then reappears once I navigate back to that mailbox).
    Really want to use Mail, but finding this process quite frustrating.
    I'm working from a new iMac with Yosemite, Mail 8.0.

    Hi, not certain what the problem is & not on 10.10 right now, but check Mail's menu, something like View & look for something like not display as threaded.

Maybe you are looking for