Problem relink

When I try to relin the oracle executable because of the message error of making target .... during the installation I receive 3errors messages:
1) Not really an error message but I found that strange:
Try `basename --help' for more information.
cp: missing file argument
Try `cp --help' for more information.
cp: cannot stat `/DISCARD/': No such file or directory
Created /u01/app/oracle/product/9.2.0/lib/libclntst9.a
/u01/app/oracle/product/9.2.0/bin/genagtsh /u01/app/oracle/product/9.2.0/lib/libagtsh.so 1.0
2)During the relink of oracle:
/usr/lib/gcc-lib/i686-pc-linux-gnu/3.2.3/../../../../i686-pc-linux-gnu/bin/ld: /u01/app/oracle/product/9.2.0/rdbms/lib/oracle: hidden symbol `__fixunssfdi' in /usr/lib/gcc-lib/i686-pc-linux-gnu/3.2.3/libgcc.a(_fixunssfdi.oS) is referenced by DSO
collect2: ld returned 1 exit status
make: *** [u01/app/oracle/product/9.2.0/rdbms/lib/oracle] Error 1
3) During relink of intermedia and ctx
gcc -o ctxhx -L/u01/app/oracle/product/9.2.0/ctx/lib/ -L/u01/app/oracle/product/9.2.0/lib/ -L/u01/app/oracle/product/9.2.0/lib/stubs/ /u01/app/oracle/product/9.2.0/ctx/lib/ctxhx.o
/u01/app/oracle/product/9.2.0/ctx/lib/ctxhx.o(.text+0xa0): In function `main':
: undefined reference to `sctxhxtf'
/u01/app/oracle/product/9.2.0/ctx/lib/ctxhx.o(.text+0x106): In function `main':
: undefined reference to `sctxhxss'
/u01/app/oracle/product/9.2.0/ctx/lib/ctxhx.o(.text+0x156): In function `main':
: undefined reference to `sctxhxti'
/u01/app/oracle/product/9.2.0/ctx/lib/ctxhx.o(.text+0x171): In function `main':
: undefined reference to `DAInit'

I'm sorry for intermedia and ctx I've the following messages errors:
gcc -o ctxhx -L/u01/app/oracle/product/9.2.0/ctx/lib/ -L/u01/app/oracle/product/9.2.0/lib/ -L/u01/app/oracle/product/9.2.0/lib/stubs/ -ldl /u01/app/oracle/product/9.2.0/ctx/lib/ctxhx.o -L/u01/app/oracle/product/9.2.0/ctx/lib/ -lm -lsc_ca -lsc_fa -lsc_ex -lsc_da -lsc_ut -lsc_ch -lsc_fi -lctxhx -lc -Wl,-rpath,/u01/app/oracle/product/9.2.0/ctx/lib -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9
/usr/lib/gcc-lib/i686-pc-linux-gnu/3.2.3/../../../../i686-pc-linux-gnu/bin/ld: ctxhx: hidden symbol `stat' in /usr/lib/libc_nonshared.a(stat.oS) is referenced by DSO
collect2: ld returned 1 exit status
make: *** [ctxhx] Error 1

Similar Messages

  • Problem relinking media with FCP6

    Hi guys,
    I recently captured medias on two computers, recently upgraded to FCP6,
    same settings, then I regrouped everything on one computer, everything worked at first, then no idea why, lots of problems to relink my medias.
    Everytime I try to relink a group of medias, I got an error message, the attributes changed, and instead of relinking every clip I selected, FCP relinks only one, and it has 16 Audio tracks whereas there were only two when I logged in my project.
    Do you know why ? I searched everywhere in the options, and didn't find anything to fix this, I don't know if it's a new bug from FCP6 or if there is a solution.
    Thx for the help.
    @+
    Wally

    Yes, you're right, importing the media works, the problem is that the project is huge, the editor logged like 1700 clips from 55 cassettes (in 1080 with the ApplePro Res codec, there are like 2.0Tb of data), and it the project has many folders and sub-folders, so unfortunately I can't simply re-import everything because it means the editor would lose all his classification.

  • Problem  relinking files

    When I relink an events file, fcp x gets "not responding" and I heve to "force quit". I`ve done this several times before, without problems. Thanks for yours suggestions

    Sometimes it takes a while for Final Cut and usually comes out of not responding state. If you have already waited maybe the file you are trying to import is corrupt? try making a new event and importing the files just to make sure.

  • [ID3 JS] Problem relinking files

    Hi folks, I need to copy specific filetypes from a document to my disk. I've wrote the script below to help me automate this task. When I use the copyLink method InDesign updates the document to use new link location. To fix this I relinks all affected links back to the original filepath. However when relinking InDesign won't copy all my links. If I disable the relinking all files gets copied. My relinking function is obviously not well designed. I was hoping one of you could give me a hint or two?
    var myDocument = app.documents[0];
    var files = myDocument.links;
    var myStr = prompt ("Substring");
    if (myStr != null) {   var myFolder = Folder.selectDialog ("To where");   }
    if (myFolder != null)
          for (var i = 0; i < files.length; i++) {
             copyFiles(files[i], myFolder+"/"+myStr, true);
    function copyFiles(myLink, linkTo, doRelink) {
       var myOldFilePath = myLink.filePath;
       var myFolder = new Folder (linkTo);
       var myFile = new File(myFolder+"/"+myLink.name);
       if (!myFolder.exist) {
          myFolder.create();
       if (!myFile.exists) {
          myLink.copyLink(myFile);
          myFile.close();
          if (doRelink) {
             relinkTo(myLink,myOldFilePath);
    function relinkTo(myLink, linkTo) {
          var myFile = new File (linkTo);
          myLink.relink (myFile);
          myLink.update();
    Regards, Rasmus

    Rasmus,
    Ignore my previous post. Here is my way to do this:
    var myDoc = app.activeDocument;
    var myLinks = myDoc.links
    var myStr = prompt ("Substring", '');
    if (myStr != null) {
         var myFolder = Folder.selectDialog ("To where");
         var mySubFolder = new Folder (myFolder.fsName + "/" + myStr);
         if (!mySubFolder.exists) mySubFolder.create();
    if (myFolder != null) {
         for (i = 0; i < myLinks.length; i++) {
              var myLink = myLinks[i];
              var myFile = new File(myLink.filePath);
              var myNewFile = new File(mySubFolder + "/" + myLink.name);
              myFile.copy(myNewFile);
    Kasyan

  • Problems relinking media

    I have a project working in Prores422 Proxy, I have online materiale with different file extensions such as .mxf and .mov.
    The proxy and online files are in a similar folder structure, a mirrored file structure. The sequence is a mix of multicam and ordinary cuts. Before I try to reconnect I flatten the timeline.
    I then select all the clips and choose Make Offline, and then Link Media. In the Link Media panel I choose not to match by file extension under match file properties. I then hit locate and find the first online file and hit OK. Premiere works for a bit, but when its done only the file I directed to the online folder is from the online folder, all the other files are in the proxy folder.
    Is there a way to force Premiere to only look in the online folder? Any suggestions? It takes a lot of time to reconnect each and every clip.
    My machine is:
      Modellidentifikator: MacPro4,1
      Prosessornavn: Quad-Core Intel Xeon
      Prosessorhastighet: 2,26 GHz
      Antall prosessorer: 2
      Totalt antall kjerner: 8
      Nivå 2-buffer (per kjerne): 256 kB
      Nivå 3-buffer (per prosessor): 8 MB
      Hukommelse: 16 GB
    My Adobe version is: 2014.0.1 - 8.0.1 (21)

    It´s the same machine as first posted, the file paths are:
    Proxy: /Volumes/OiSAN/HBS/01_Materiale/01_HBS_Proxy/HBS_PGM101/DAG1/HBS_140901_SD_K2/
    Online: /Volumes/OiSAN/HBS/01_Materiale/02_Onlinemateriale/PGM_101/DAG1/HBS_140901_SD_K2/
    This is what I have tried and found out
    In PP 2014.1 8.1.0 (81):
    this is my relink choices:
    some .mov files reconnects, .mxf don't. If I choose "Relink other automatically" only a couple will reconnect to the online material, 99% will remain proxy. If I try to "Locate", then "Search" PP will locate my .mxf but its not possible to choose "OK":
    When I remove "Display Only Exact Name Matches" I can see the file and manually reconnect. Why dose not PP recognize the right file and reconnect to it? It should do this when its supposed "Relink other automatically".
    In PP 2014.0 8.0.0 (169)
    same relink choices. When I use the "Relink other automatically" the same thing happens. The first file is reconnected as a online file, the rest is proxy. But if I manually hit "Locate", then "Search", PP will locate my .mxf and its possible to choose "OK". It dose not show the file, but I know its the right file because you see the difference between the "Last Path" and (new)"Path".
    With this "solution" I am able to reconnect to the online material, but it takes ALOT of time.
    Does anyone have any suggestions?

  • Possible Solution to "unsupported format or damaged file" errors on relink

    Premeiere CC. I had a project file made on a MacBookPro OSX, had to make it work on Windows. Red footage: .r3d files. Was using same footage drives (formatted as FAT so could read and write on both operating systems), just moved from Mac to Windows. Knew i'd likely have to relink, but encountered problems relinking some of the media. The linker could find it, the files opened normally in Red Cine X, and could even be dragged onto the timeline. But they wouldn't relink!
    Solution was to move my entire footage directory structure, which was at top level, into a brand new top level folder. This worked. I moved everything into a folder called "WindShiv" (call it whatever i assume), then the relinking still had to happen, but it worked this time.
    I don't know if there are other solutions regarding folder structure that would also do the trick, or if now that it sees it i could re-move the directory structure back, but at least this fixed it for me so if you are having the same problems i did try moving your footage folders into a different place on your drive(s). Lucky happy cutting to you.

    For what its worth. I shot some DV 720x480 in 4:3 and 16:9 with my little DV camera and imported footage into my Avid MC. I repeated my earlier - posted steps and when I created and opened up the project in Ppro, this time not only did the sequence and files open up but my footage was on the timeline and I was able to play it without having to link to my Avid Media files! 
    When I tried before, all my footage was originated on BetaSP and DigiBeta at NTSC 720x486. Cannot Ppro bring in NTSC 720x486 or does it have to be NTSC DV 720x480
    As I mentioned before I am a newbie to Ppro. When I created a new project and brought my 16:9 footage in, the source monitor is 16:9 but my sequence is in 4:3. In the Program Monitor I can click and hold the frame and move the 16:9 around within the 4:3 frame. Why is it not letting me see the full 16:9 frame.  I created the project in 16:9. Any suggestions? Thanks

  • Relinking spanned AVCHD in a multiclip?!

    So I've got a deadline looming AND a hurricane looming.  Oh yeah... and a dead tower (probably bad RAM but no time to look at it now!). 
    First off, I must say CS 6 (in trial mode) performed very well on my ancient 15" Mac Book Pro with only 2 GB of RAM.  Premiere, Audition and Media Encoder all worked quite well on a 20 minute, 3 camera, AVCHD multicam.  It's rendering now and I still have time to pull all the lawn furniture in before Sandy comes a knockin'.
    But I *did* run into a potential deal killer of a problem relinking the spanned clips.  I got around it but I was wondering if there is a better way.
    The original project and the three SD card folders were all stored on an external.  They had been copied from my work machine on Thursday.  Obviously, since the path was different, when I opened the project for the first time all of the media was offline.  Premiere did *not* try to show me where it thought the media would be (as FCP 7 does).  It just said it was looking for 00000.mts.  This is not terribly helpful because I didn't know if it wanted card 1, card 2 or card 3! 
    Initially, I ignored the linking error when I opened the project and relinked manually by right clicking on "card 1" and pointing to the 0000.mts of card 1.  I congratulated myself for being rather brilliant and started to work on the project.  About a third of the way along the timeline on a certain camera I had no video.  It was just black.  In retrospect I should have realized what happened; one of the cameras had had a false start and it was really 00001.mts that started the hour long recording.
    After a bit of panic I duplicated the original project (*always* work from a copy when in panic mode!) and tried again.  This time I imported each of the three cards again through Media Browser.  They were all complete but now they weren't associated with the multiclip.  I duplicated the multiclip (**always** work from a copy!) and opened the original in the timeline.  This is what I love about nested multiclips... you can swap media around in them and they don't know you did it!  Ever so carefully I dragged the intact card 1 to the unlinked card 1 and did the same with 2 and 3.  Checked, re-checked and triple-checked the sync.  It was good and I could finish the project.
    Is this really the way to do it?  When I went to export the final, Premiere complained about off-line media in my project and threatened to put that horrible red warning on the finished video!  Once I deleted all of the original, unlinked, footage that error went away.  Still... kind of scary all around.  Is there a better way?

    I suppose the "better way" would be to make sure your media is in the correct location before you import it into PP, and then just never, ever change that location for any reason whatsoever.

  • Upresing Offline RT PROBLEM

    I think I've run into a big problem. I digitized all of my footage using a panasonic dvx100b (the footage was shot using a dvx100a) using Offline RT and now I'm trying to upres everything with a Canon GL1, and it seems to be reading the timecode on the tapes differently, and it will not allow me to upres any of my footage. Before I start the reconnection process, I get an error reading:
    WARNING: You are about to capture non-drop frame media to a drop-frame clip. If you proceed, you may experience changes in logged in and out points, problems relinking media, or removal of master clip relations.
    If I go ahead and do it anyways, it doesn't capture anything and I get this error message:
    Batch capture encountered timecode breaks in sequence items. To protect your edits, these clips were left offline and not divided into separate clips.
    Is it because of the camera? Did I not capture things correcty? Here's something else worth noting: during editing I accidentally trashed my project file (AAAAAH!!) and instead of recapturing everything (13 tapes) I simply imported the capture files from my capture folder, and it seemed that all the reel settings/timecode info were still attached to the files. Could this be my problem? I really hope I don't have to do everything over again. Any help or input would be much appreciated. Thanks in advance.
    Brian

    Canons use FIREWIRE BASIC as the control protocol. Make sure you have changed it.
    If you are capturing using the Canon to an external drive, you may have run into the dread firewire bus incompatibility problem.
    The way around it is to either:
    a) install a PCI firewire card if your computer has a spare slot and attach the Canon to it.
    b) eliminate the external and capture only to a second internal disk if you computer has one
    c) get another playback (non-Canon) device.
    good luck.
    x

  • Relink of procbuilder fails while applying developer6i_patchset 19

    I'am having a problem relinking procbuilder while applying developer6i_patchset 19 (6194129)
    the error says shown below:
    /usr/bin/ld: cannot find /M300i/DEV/devora/8.0.6/lib/stubs/libc.so.6
    collect2: ld returned 1 exit status
    make: *** [de60desm] Error 1
    The compiler is looking for that file "libc.so.6" under "/M300i/DEV/..." directory, it is suppose to look under "/home/DEV/...." directory.
    When we migrated our DEV instance Apps Tier last month, we initially migrated it to under "/M300i/DEV/" directory, but then later moved it to "/home/DEV/" directory and ran the corresponding autoconfig , now it looks like the compiler is still pointing to "/M300i/DEV/" directory.
    shown below is what I tried to run and how it errored out:
    [appldev@oracle lib]$ pwd
    /home/DEV/devora/8.0.6/procbuilder60/lib
    [appldev@oracle lib]$ make -f ins_procbuilder.mk install
    rm -f de60desm /home/DEV/devora/8.0.6/bin/de60desm
    - Linking de60desm executable...
    gcc -o de60desm -L/home/DEV/devora/8.0.6/lib/ -L/home/DEV/devora/8.0.6/lib/ -L/home/DEV/devora/8.0.6/lib//stubs/ \
    /home/DEV/devora/8.0.6/procbuilder60/lib/detk2.o /home/DEV/devora/8.0.6/procbuilder60/lib/demsr.o /home/DEV/devora/8.0.6/procbuilder60/lib/demcl.o \
    /home/DEV/devora/8.0.6/procbuilder60/lib/ui10.o /home/DEV/devora/8.0.6/procbuilder60/lib/uiicxd.o \
    /home/DEV/devora/8.0.6/rdbms/lib/defopt.o -lde60 \
    -lca60 -lucol60 \
    -lnvu60 -lnvc60 -lnvs60 -luicc60 -lmmiw60 -lmmov60 -lmma60 -lmmos60 -lmmoi60 -lmmia60 -lmmft60 -lmmcm60 -luihx60 -luihx60 -luc60 -luipr60 -luimotif60 -lot60 -lrem60 -lree60 -lrec60 -luiimg60 -luimotif60 -luipr60 -luiimg60 -luc60 -lrem60 -luimotif60 -luia60 -ltknqap60 -luipr60 -luimotif60 -lutt60 -lix60 -lixd60 -lrod60 -lror60 -lros60 -lrod60 -lror60 -lros60 -lrod60 \
    -luat60 -lutc60 -lutl60 -lutsl60 -lplsf -lplsb -lextp /home/DEV/devora/8.0.6/lib/libpsd.a -lplsf -lplsb -lextp \
    -lslax /home/DEV/devora/8.0.6/lib/nautab.o /home/DEV/devora/8.0.6/lib/naeet.o /home/DEV/devora/8.0.6/lib/naect.o /home/DEV/devora/8.0.6/lib/naedhs.o `cat /home/DEV/devora/8.0.6/lib/naldflgs` -lnetv2 -lnttcp -lnetwork_d -lnz -lnzr -lnsslb8 -lbcert -lncr -lnetv2 -lnttcp -lnetwork_d -lnz -lnzr -lnsslb8 -lbcert -lclient -lvsn -lcommon -lgeneric -lmm -lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 -lnetv2 -lnttcp -lnetwork_d -lnz -lnzr -lnsslb8 -lbcert -lncr -lnetv2 -lnttcp -lnetwork_d -lnz -lnzr -lnsslb8 -lbcert -lclient -lvsn -lcommon -lgeneric -lepc -lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 -lclient -lvsn -lcommon -lgeneric -lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 `cat /home/DEV/devora/8.0.6/lib/sysliblist` -ldl -lpthread -lm -L/usr/lib -lm -L/usr/X11R6/lib -lXm -L/usr/X11R6/lib/ -L/usr/X11R6/lib/ -lXt -lX11 -lm -lix60 -lixd60 -lX11 -lnlsrtl3 -lXp -lXext
    /usr/bin/ld: cannot find /M300i/DEV/devora/8.0.6/lib/stubs/libc.so.6
    collect2: ld returned 1 exit status
    make: *** [de60desm] Error 1
    [appldev@oracle lib]$
    Can someone help me to find out where is it that it is pointing to "/M300i/DEV/" instead of "/home/DEV/" ?
    Prashanthi

    Thank you Hussain,
    That note helped me solve that problem, but I'am getting another error now, shown below:
    /usr/lib/gcc/i386-redhat-linux/3.4.6/libgcc_s.so: undefined reference to `dl_iterate_phdr@GLIBC_2.2.4'
    collect2: ld returned 1 exit status
    make: *** [de60desm] Error 1
    Shown below is full error :
    [appldev@oracle lib]$ make -f ins_procbuilder.mk install
    rm -f de60desm /home/DEV/devora/8.0.6/bin/de60desm
    - Linking de60desm executable...
    gcc -o de60desm -L/home/DEV/devora/8.0.6/lib/ -L/home/DEV/devora/8.0.6/lib/ -L/home/DEV/devora/8.0.6/lib//stubs/ \
    /home/DEV/devora/8.0.6/procbuilder60/lib/detk2.o /home/DEV/devora/8.0.6/procbuilder60/lib/demsr.o /home/DEV/devora/8.0.6/procbuilder60/lib/demcl.o \
    /home/DEV/devora/8.0.6/procbuilder60/lib/ui10.o /home/DEV/devora/8.0.6/procbuilder60/lib/uiicxd.o \
    /home/DEV/devora/8.0.6/rdbms/lib/defopt.o -lde60 \
    -lca60 -lucol60 \
    -lnvu60 -lnvc60 -lnvs60 -luicc60 -lmmiw60 -lmmov60 -lmma60 -lmmos60 -lmmoi60 -lmmia60 -lmmft60 -lmmcm60 -luihx60 -luihx60 -luc60 -luipr60 -luimotif60 -lot60 -lrem60 -lree60 -lrec60 -luiimg60 -luimotif60 -luipr60 -luiimg60 -luc60 -lrem60 -luimotif60 -luia60 -ltknqap60 -luipr60 -luimotif60 -lutt60 -lix60 -lixd60 -lrod60 -lror60 -lros60 -lrod60 -lror60 -lros60 -lrod60 \
    -luat60 -lutc60 -lutl60 -lutsl60 -lplsf -lplsb -lextp /home/DEV/devora/8.0.6/lib/libpsd.a -lplsf -lplsb -lextp \
    -lslax /home/DEV/devora/8.0.6/lib/nautab.o /home/DEV/devora/8.0.6/lib/naeet.o /home/DEV/devora/8.0.6/lib/naect.o /home/DEV/devora/8.0.6/lib/naedhs.o `cat /home/DEV/devora/8.0.6/lib/naldflgs` -lnetv2 -lnttcp -lnetwork_d -lnz -lnzr -lnsslb8 -lbcert -lncr -lnetv2 -lnttcp -lnetwork_d -lnz -lnzr -lnsslb8 -lbcert -lclient -lvsn -lcommon -lgeneric -lmm -lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 -lnetv2 -lnttcp -lnetwork_d -lnz -lnzr -lnsslb8 -lbcert -lncr -lnetv2 -lnttcp -lnetwork_d -lnz -lnzr -lnsslb8 -lbcert -lclient -lvsn -lcommon -lgeneric -lepc -lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 -lclient -lvsn -lcommon -lgeneric -lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 `cat /home/DEV/devora/8.0.6/lib/sysliblist` -ldl -lpthread -lm -L/usr/lib -lm -L/usr/X11R6/lib -lXm -L/usr/X11R6/lib/ -L/usr/X11R6/lib/ -lXt -lX11 -lm -lix60 -lixd60 -lX11 -lnlsrtl3 -lXp -lXext
    /usr/lib/gcc/i386-redhat-linux/3.4.6/libgcc_s.so: undefined reference to `dl_iterate_phdr@GLIBC_2.2.4'
    collect2: ld returned 1 exit status
    make: *** [de60desm] Error 1
    [appldev@oracle lib]$
    Prashanthi

  • Reports 6 cartridge will not start (DEV TEAM PLEASE HELP)

    Reports 6 cartridge + OAS 4.0.7.1 on solaris 2.6, RDBMS 7.3.4.4
    all installed in different oracle home problems
    We used to run our reports with the CGI interface and it worked
    fine. Now we try to move to the cartridge implementation and we
    have a problem. We are on solaris 2.6, developper server 6.0
    patch level 4.
    We followed the configuration steps from the oracle
    documentation.
    Now we have the following problems:
    When we try the following url: http://my_machine_name/rwows60?
    Instead of getting the reports help page, we get an HTTP 500
    error. Here is what show in the OAS
    4.0.7.1 wrb.log file for the request (Please note that our
    virtual path is rwows60):
    11-25-1999 09:56:00 274476 produc `Broker` 25820 1
    0x10fff `OWS-04759: No host is available to create Cartridge
    Reports/Reports60Cartridge. `
    11-25-1999 09:56:00 407413 produc `Dispatcher` 25836
    1 0x2fff `OWS-04517: Error indicated by broker in getting cartri
    dges of type Reports/Reports60Cartridge. `
    11-25-1999 09:56:00 416750 produc `Dispatcher` 25836
    1 0x2fff `OWS-04511: Error in grabbing cartridge type Reports/Re
    ports60Cartridge from the subsystem. `
    11-25-1999 09:56:00 447230 produc `Dispatcher` 25836
    1 0x2fff `OWS-04512: Request 5A18372D6944-5145-E000-CEA7BB0964EC
    has internal error due to Error 4511. `
    Any help would be appreciated.
    We also found that there might be an error in the aformentionned
    document: They tell us to put %ORAWEB_HOME%/bin in the Physical
    path for the cartridge virtual path, I think it should be
    $ORACLE_HOME/bin (The oracle home of developper server I mean)
    Any way, both physical path setting give the same result...
    Guy Dallaire, DBA/Sysadmin
    Centre de recherche industrielle du Quebec
    Ste-Foy, QC, Canada
    e-mail: [email protected]
    ORACLE tech support said that DEV Server 6.0 needs to be
    installed in the same OH as OAS 4.0.7.1. I had problems
    relinking and had to install it in its own oracle home. Could it
    really be the problem ?
    null

    Hi,
    Indeed, you did, but I mist it ... sorry it's only because of my French ... hahaha
    You did find the answer to my problem and also the solution ... I kept missing the slide on the side the window of the DVD so I did not think of the extra package and all that time it was there ... How " ........... " (dumb) of me ...
    thank you very much for opening my eyes and for your patience.
    And yes ! X11 is now working... !!! I have been trying for two days ....
    Thanks everyone, I am glad to be in the Apple/Mac Community !
    Andre
    G5 PPC   Mac OS X (10.4.8)  

  • "Capturing drop-frame media into a non-drop frame clip" error message

    I've logged tapes from what will partly be a 3-camera multi-clip project, and have begun to batch capture.
    Logged all but one tape some weeks ago, and captured one tape at the time.
    Went to batch capture the balance, today. First tape capture went fine. On trying to capture the next tape in the batch I'm getting this message as FCP begins the process:
    WARNING: You are about to capture drop-frame media to a non drop-frame clip. If you proceed, you may experience changes in logged in and out points, problems relinking media, or removal of master clip relationships.
    In analyzing the situation, the only reason I can think of for the error message is that some of the reels were logged on a DSR-11 that had been set to NON drop-frame, and for which I didn't have the remote control to change the setting.
    I haven't run into this while capturing other clips, but those may have been captured via a different deck that does only drop-frame.
    So, I'm looking at next steps:
    1: Capture anyway and possibly regret that I did that.
    (One person on another list reported the same problem, that he had ignored it without any obvious complications.)
    2: Relog all the problem clips using my current deck, speeding up the process by using the "go to" window to drive the tape to the existing in and out points and then marking i/o's...
    Or...
    Suggestions?
    Thanks,
    Ted.

    We've been seeing this stupid error message since v3 and it's never mattered in the slightest. It is always incorrect, anyway. The clips are always drop and the sequences are always drop. It's an FCP programming glitch/bug/screwup. Someday they may or may not fix the mechanism that triggers the warning.
    bogiesan

  • Re Link Oracle 9.0.1 on SUSE 7.1

    Hi,
    I've a problem relinking the oracle 9.0.1 binaries on LINUX SUSE 7.1
    Installation was so far successful (thanx heaven) with exception of the link step(s) (of course, I can not start an instance at all => ORA-24314).
    Trying "make -f ins_rdbms.mk ioracle" results in a fatal error: something link "don't know how to make target libskgxpd.a / libkulopt.a".
    These .a lib's are not present at $ORACLE_HOME/... , but I found libskgxpd.so and libkulopt.so.
    What is the correct statement to link oracle ?
    Thanks in advance
    Heiko

    please ignore this thread - I have opened a newer open above. Sorry.

  • What's Fixed in Premiere Pro CC2014.2

    As noted in the blog post for the 2014.2 release, while this update includes a few new features, it is chiefly geared toward addressing known issues. The blog post lists the higher profile fixes. Below is is a more comprehensive list.
    Import
    Red frames in MXF clips from a particular model of camera.
    Cannot import ARRI Alexa Open Gate clips
    Import fails for IMX 30 MXF clips stored on certain proprietary media asset management systems. Error: Unsupported format or damaged file.
    Some XDCAM HD Proxy files show red frames
    Some .VOB clips play only audio or shows media pending indefinitely
    Premiere does not recognize timecode for audio-only MXF files written by some third-party programs.
    Only the first frame of video plays for AVC-Intra50 MXF files stored on certain third-party media asset management systems.
    Spanned DVCPRO clips have incomplete audio if an XMP file is present but no media cache/pek file are found.
    Some metadata from an Adobe Clip project does not get correctly logged on import.
    Exporting & Rendering
    Rendering fails for MXF media with Posterize Time effect applied
    ProRes exports can be very slow when smart rendering
    Encoded output can include black frames, corrupted frames, or frames from elsewhere in the sequence
    Canceling export to P2 can result in low-level exception if the sequence duration is greater than a few minutes
    Aspect ratio for IMX 30 widescreen anamorphic encodes is incorrect.
    Edit to Tape: Audio drops out while playing out to tape
    The Height setting for encodes to the GoPro Cineform codec is constrained to multiples of 8.
    Smart Rendering: GoPro 2.7K footage cannot be smart rendered
    AAF
    Distorted audio in AAF exports with 24 bit embed option selected.
    If a multichannel sequence has been nested into 2 channel sequence, then an AAF export yields the number of channels in the nest rather than the 2-channel mix-down
    Certain third-party programs have problems relinking to video with Premiere's AAF exports. (Windows only)
    If the first of two adjacent audio clips has a Fade Out applied, exporting as AAF converts it to a Fade In onthe second clip. (Mac only)
    When AAF exports are opened in some third party apps, audio crossfades are treated as cuts or fade-ins.
    Crash during AAF export if a video clip has multiple effects applied.
    When AAF exports are opened in some third party apps, some audio clips and tracks are incorrect.
    Crash upon exporting to AAF with disabled clips that have cross fades applied
    If a multicam sequence with mono audio is nested onto a stereo or adaptive track, then exporting to AAF yields a stereo clip with the audio panned fully to the left.
    When AAF exports are opened in some third party apps, rendered audio of is relinked automatically, but the video needs to be manually linked.
    Playback
    If a UHD ProRes clip is in an SD sequence an scaled to less than 50%, then scaling is ignored during playback at Full Resolution [GPU acceleration only]
    Poor playback performance with certain third-party I/O hardware on OS X 10.9.
    Crash during playback of R3D content [CUDA GPU acceleration only]
    Audio
    Audio sync is lost with some XDCAM content wrapped in QuickTime reference movie
    Audio sync is lost when user starts scrubbing during playback while using certain I/O hardware.
    When playing past an audio transition, the sound sometimes surges and has pops/clicks introduced
    Audio dropouts, and Events panel reports "audio dropouts detected." [Prefetch purge related]
    Audio dropouts in some scenarios after releasing memory (e.g., cycling focus to another app)[Prefetch-related]
    Shuttling for an extensive time can cause audio dropouts
    Project
    If current user does not have write access to certain folders, the crash error message is uninformative (Mac only)
    In Adobe Anywhere, crash when using keyboard shortcut to open Convert Project to Production dialog or the New Production dialog.
    If multiple clients on a network use the same media cache location, then upon importing a given asset each client writes its own accelerator files.
    The Find features in the Project panel and Timeline cannot search by Korean characters.
    In Search Bins, moving focus by keyboard from one clip to another can cause the tree view to expand to show the bin where the clip is stored.
    Project Manager/Consolidate & Transcode
    If the destination drive has insufficient space, Premiere throws an "unknown error" rather than an informative message.
    Project Manager writes some clips outside of folders
    Consolidate and Transcode does not warn the user if the destination drive has insufficient space.
    Unknown error can result from using Consolidate & Transcode with P2 content in the sequence.
    In some cases, Consolidate & Transcode copies and renames the component assets for merged clips.
    If Exclude Unused Clips is deselected, the components for merged clips sometimes still get copied; if the option is selected, the presence of merged clips can yield Unknown Error.
    If the sequence being transcoded contains overlapping "soft" subclips, then some clips may be missing from the sequence in the consolidated version, and In/Out points may be incorrect for the subclips.
    If Exclude Unused Clips is turned off and the project being transcoded contains "soft" subclips, then the consolidated version of the project does not have transcoded copies of the subclips.
    If a sequence contains only audio from an A/V clip, using Consolidate and Transcode to some presets will fail with unknown error
    If the sequences being transcoded contains two copies of a master clip, one of which was the product of Duplicating or Copying/Pasting in Project panel, the consolidated version of the project has only one instance of the master clip.
    If the project contains multiple master clips for the same asset and Interpret Footage is applied, then the consolidated version will have multiple transcoded copies of the source asset.
    If the transcoded sequence contains a hard subclip (i.e., "Restrict Trims to Subclip Boundaries" enabled), the resulting project item is a master clip rather than a subclip.
    Merged Clips
    Comment markers added to a merged clip get inserted to the component clips, but the Name & Comment entries are not saved.
    Hang on right-clicking the current marker in a merged clip in certain circumstances.
    Editing/Timeline
    Crash on clicking the very bottom of clip in the Timeline and dragging to move the clip. [SubViewImpl.cpp-724]
    Crash on Ripple Trim Previous Edit to Playhead for a clip group when that action completely deletes one of the component clips in the group. (TrackItemGroup.cpp-821)
    Indefinite hang if sequence contains a QuickTime .mov with an unusual framerate and a CEA-708 caption track
    Crash upon creating a sequence from a source with no frame rate specified (e.g., a title imported from a third-party-generated XML)
    If a rendered-and-replaced clip has been trimmed, then Restore Unrendered can result in content being out of sync
    Multicam
    Audio is lost when flattening multicam sequences that were created with dual stereo movies.
    If a multicam clip was created with Switch/mono and placed into stereo tracks, then flattening incorrectly maps the audio channels to stereo, with the right channel disabled.
    Playing a multicam sequence in the Source Monitor can result in an unacceptable ratio of dropped frames.
    Effects & Transitions
    With Warp Stabilizer applied, Program Monitor shows only upper left corner of the frame, sometimes with alternating whole frames [GPU acceleration only]
    Sub-pixel positioning is incorrect for non-linear alpha compositing [GPU acceleration only]
    GPU transitions that depend on other layers cannot access those layers
    Crash upon clicking outside the Direct Manipulation control for some effects.
    Memory leak with certain third-party effects
    Crash on clicking Setup button for some third-party transitions.
    Loudness Radar' Track FX Editor intercepts keystrokes intended for editing titles (e.g., spacebar)
    Crash (Pure Virtual Function Call) on adjusting parameters for some third-party effects.
    Some third-party effects get frames from the wrong time in the clip.
    UI/Workspaces
    All open Project panels get reset to root upon switching between projects that use the same workspace.
    The order of open Timelines sometimes gets jumbled upon closing and reopening the project.
    Bezier handles for keyframe can be nearly invisible at default brightness.
    Closing the Source Monitor when it's showing a scope (e.g., YC Waveform) crashes Premiere (error: CheckBoxControl.cpp-105)
    HTML5 panels do not receive Tab events.
    Redraw errors on maximizing an HTML5 panel.
    Performance (Note: Most of these fixes are also listed under a product area)
    In certain scenarios, performance is unacceptable when doing basic editing operations with waveforms displayed in the Timeline.
    Scrubbing a growing file on an Xsan can result in very high bandwidth usage with some network configurations.
    Playing a multicam sequence in the Source Monitor can result in an unacceptable ratio of dropped frames.
    ProRes exports can be very slow when smart rendering.
    Poor playback performance with certain third-party I/O hardware on OS X 10.9.

    Just in case anyone is interested:
    anyone else having PP crash after the 8.2 update? I keep getting the below error:
    Faulting application name: Adobe Premiere Pro.exe, version: 8.2.0.65, time stamp: 0x5486db4a
    Faulting module name: ntdll.dll, version: 6.1.7601.18247, time stamp: 0x521eaf24
    Exception code: 0xc0000005
    Fault offset: 0x0000000000052f86
    Faulting process id: 0x2168
    Faulting application start time: 0x01d019e6c12de352
    Faulting application path: C:\Program Files\Adobe\Adobe Premiere Pro CC 2014\Adobe Premiere Pro.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: 8f518e38-85de-11e4-81e4-1cc1de338660
    I trashed my preferences; rolled back to earlier versions of NVIDIA drivers; cleared out my cache; reinstalled PP 8.2, and uninstalled all 3rd party plugins... I still get the above error. I've since rolled back to 8.1 with no issues. I'd love to get 8.2 to work, since scrubbing thru Gh4 4k files was a lot smoother with this update.
    Specs:
    HP Z800 MC 8.2, Adobe CC 2014, Windows 7 Ultimate 64-bit SP1, 2 Hex Core X5650 @ 2.67GHz, 48Gigs Ram, NVidia Quadro K4000, Sandisk Extreme 240 gig SSD System drive, SATA 4 Tb (Raid 0) media drive, Sata 2 TB export drive , SSD 120GN for cache, 1 G-Tech 2tb Raid export/backup,1 4tb G-drive backup, Matrox MXO2 mini, 850 WATT PSU
    in Premiere Pro • Reply • Like Show 0 Likes(0)

  • Premiere pro cc2014 bugs?

    Hello
    Has anyone updated Premier pro cc 2014 to the latest version. I havent touched it in ages because of all the bugs and constant  crashing but im eager to return to several  CC 2014 projects that I need to start using again.
    Have the bugs been fixed is it worth using again?
    Thanks
    Philip

    Here's a breakdown and he's the link to the original post. There's some feedback from other customers there: What's Fixed in Premiere Pro CC2014.2
    As noted in the blog post for the 2014.2 release, while this update includes a few new features, it is chiefly geared toward addressing known issues. The blog post lists the higher profile fixes. Below is is a more comprehensive list.
    Import
    Red frames in MXF clips from a particular model of camera.
    Cannot import ARRI Alexa Open Gate clips
    Import fails for IMX 30 MXF clips stored on certain proprietary media asset management systems. Error: Unsupported format or damaged file.
    Some XDCAM HD Proxy files show red frames
    Some .VOB clips play only audio or shows media pending indefinitely
    Premiere does not recognize timecode for audio-only MXF files written by some third-party programs.
    Only the first frame of video plays for AVC-Intra50 MXF files stored on certain third-party media asset management systems.
    Spanned DVCPRO clips have incomplete audio if an XMP file is present but no media cache/pek file are found.
    Some metadata from an Adobe Clip project does not get correctly logged on import.
    Exporting & Rendering
    Rendering fails for MXF media with Posterize Time effect applied
    ProRes exports can be very slow when smart rendering
    Encoded output can include black frames, corrupted frames, or frames from elsewhere in the sequence
    Canceling export to P2 can result in low-level exception if the sequence duration is greater than a few minutes
    Aspect ratio for IMX 30 widescreen anamorphic encodes is incorrect.
    Edit to Tape: Audio drops out while playing out to tape
    The Height setting for encodes to the GoPro Cineform codec is constrained to multiples of 8.
    Smart Rendering: GoPro 2.7K footage cannot be smart rendered
    AAF
    Distorted audio in AAF exports with 24 bit embed option selected.
    If a multichannel sequence has been nested into 2 channel sequence, then an AAF export yields the number of channels in the nest rather than the 2-channel mix-down
    Certain third-party programs have problems relinking to video with Premiere's AAF exports. (Windows only)
    If the first of two adjacent audio clips has a Fade Out applied, exporting as AAF converts it to a Fade In onthe second clip. (Mac only)
    When AAF exports are opened in some third party apps, audio crossfades are treated as cuts or fade-ins.
    Crash during AAF export if a video clip has multiple effects applied.
    When AAF exports are opened in some third party apps, some audio clips and tracks are incorrect.
    Crash upon exporting to AAF with disabled clips that have cross fades applied
    If a multicam sequence with mono audio is nested onto a stereo or adaptive track, then exporting to AAF yields a stereo clip with the audio panned fully to the left.
    When AAF exports are opened in some third party apps, rendered audio of is relinked automatically, but the video needs to be manually linked.
    Playback
    If a UHD ProRes clip is in an SD sequence an scaled to less than 50%, then scaling is ignored during playback at Full Resolution [GPU acceleration only]
    Poor playback performance with certain third-party I/O hardware on OS X 10.9.
    Crash during playback of R3D content [CUDA GPU acceleration only]
    Audio
    Audio sync is lost with some XDCAM content wrapped in QuickTime reference movie
    Audio sync is lost when user starts scrubbing during playback while using certain I/O hardware.
    When playing past an audio transition, the sound sometimes surges and has pops/clicks introduced
    Audio dropouts, and Events panel reports "audio dropouts detected." [Prefetch purge related]
    Audio dropouts in some scenarios after releasing memory (e.g., cycling focus to another app)[Prefetch-related]
    Shuttling for an extensive time can cause audio dropouts
    Project
    If current user does not have write access to certain folders, the crash error message is uninformative (Mac only)
    In Adobe Anywhere, crash when using keyboard shortcut to open Convert Project to Production dialog or the New Production dialog.
    If multiple clients on a network use the same media cache location, then upon importing a given asset each client writes its own accelerator files.
    The Find features in the Project panel and Timeline cannot search by Korean characters.
    In Search Bins, moving focus by keyboard from one clip to another can cause the tree view to expand to show the bin where the clip is stored.
    Project Manager/Consolidate & Transcode
    If the destination drive has insufficient space, Premiere throws an "unknown error" rather than an informative message.
    Project Manager writes some clips outside of folders
    Consolidate and Transcode does not warn the user if the destination drive has insufficient space.
    Unknown error can result from using Consolidate & Transcode with P2 content in the sequence.
    In some cases, Consolidate & Transcode copies and renames the component assets for merged clips.
    If Exclude Unused Clips is deselected, the components for merged clips sometimes still get copied; if the option is selected, the presence of merged clips can yield Unknown Error.
    If the sequence being transcoded contains overlapping "soft" subclips, then some clips may be missing from the sequence in the consolidated version, and In/Out points may be incorrect for the subclips.
    If Exclude Unused Clips is turned off and the project being transcoded contains "soft" subclips, then the consolidated version of the project does not have transcoded copies of the subclips.
    If a sequence contains only audio from an A/V clip, using Consolidate and Transcode to some presets will fail with unknown error
    If the sequences being transcoded contains two copies of a master clip, one of which was the product of Duplicating or Copying/Pasting in Project panel, the consolidated version of the project has only one instance of the master clip.
    If the project contains multiple master clips for the same asset and Interpret Footage is applied, then the consolidated version will have multiple transcoded copies of the source asset.
    If the transcoded sequence contains a hard subclip (i.e., "Restrict Trims to Subclip Boundaries" enabled), the resulting project item is a master clip rather than a subclip.
    Merged Clips
    Comment markers added to a merged clip get inserted to the component clips, but the Name & Comment entries are not saved.
    Hang on right-clicking the current marker in a merged clip in certain circumstances.
    Editing/Timeline
    Crash on clicking the very bottom of clip in the Timeline and dragging to move the clip. [SubViewImpl.cpp-724]
    Crash on Ripple Trim Previous Edit to Playhead for a clip group when that action completely deletes one of the component clips in the group. (TrackItemGroup.cpp-821)
    Indefinite hang if sequence contains a QuickTime .mov with an unusual framerate and a CEA-708 caption track
    Crash upon creating a sequence from a source with no frame rate specified (e.g., a title imported from a third-party-generated XML)
    If a rendered-and-replaced clip has been trimmed, then Restore Unrendered can result in content being out of sync
    Multicam
    Audio is lost when flattening multicam sequences that were created with dual stereo movies.
    If a multicam clip was created with Switch/mono and placed into stereo tracks, then flattening incorrectly maps the audio channels to stereo, with the right channel disabled.
    Playing a multicam sequence in the Source Monitor can result in an unacceptable ratio of dropped frames.
    Effects & Transitions
    With Warp Stabilizer applied, Program Monitor shows only upper left corner of the frame, sometimes with alternating whole frames [GPU acceleration only]
    Sub-pixel positioning is incorrect for non-linear alpha compositing [GPU acceleration only]
    GPU transitions that depend on other layers cannot access those layers
    Crash upon clicking outside the Direct Manipulation control for some effects.
    Memory leak with certain third-party effects
    Crash on clicking Setup button for some third-party transitions.
    Loudness Radar' Track FX Editor intercepts keystrokes intended for editing titles (e.g., spacebar)
    Crash (Pure Virtual Function Call) on adjusting parameters for some third-party effects.
    Some third-party effects get frames from the wrong time in the clip.
    UI/Workspaces
    All open Project panels get reset to root upon switching between projects that use the same workspace.
    The order of open Timelines sometimes gets jumbled upon closing and reopening the project.
    Bezier handles for keyframe can be nearly invisible at default brightness.
    Closing the Source Monitor when it's showing a scope (e.g., YC Waveform) crashes Premiere (error: CheckBoxControl.cpp-105)
    HTML5 panels do not receive Tab events.
    Redraw errors on maximizing an HTML5 panel.
    Performance (Note: Most of these fixes are also listed under a product area)
    In certain scenarios, performance is unacceptable when doing basic editing operations with waveforms displayed in the Timeline.
    Scrubbing a growing file on an Xsan can result in very high bandwidth usage with some network configurations.
    Playing a multicam sequence in the Source Monitor can result in an unacceptable ratio of dropped frames.
    ProRes exports can be very slow when smart rendering.
    Poor playback performance with certain third-party I/O hardware on OS X 10.9.

  • Audio Not Syncing After Offline Conversion/Batch Capture from OfflineRT-DV

    WORKFLOW:
    1. Shooting HDV on a Sony HDR-V1U (DF/NDF Timecode setting is AUTO on the camera)
    2. Using the camera to downconvert to DV as I import into FCP 7 (final product will be NTSC DVD).
    3. I first capture and log using the OfflineRT NTSC (Photo JPEG) preset
    4. I make my Edits, and then use Media Manager to create new project and create offline media referenced by duplicated items. (Set sequences to: DV NTSC 48 kHz)
    5. The clips I need are then batch captured using Capture Preset: DV NTSC 48 kHz
    PROBLEMS:
    A. As I'm initiating my batch capture in step #5 above, the following warning is generated:
    WARNING: You are about to capture Drop Frame media from a device currently detecting or configured for Non-Drop Frame media. If you proceed, you may experience changes in logged in and out points, problems relinking media, or removal of master clip relationships.
    B. When I playback my sequence, the in/out points are off by several seconds. (like the media within the clip slid ahead several seconds--to fix it, I would have to slide each clip back)
    QUESTIONS:
    Q1: How can I properly execute my workflow while avoiding the WARNING above and the problem with the in/out points?
    NOTE: The OfflineRT clips in the original project (#3 above) are shown as DF (semicolon in timecode), but the duplicated clips in the DV project (#4 above) are NDF (colon in timecode). I have already tried changing my capture preset to Firewire NTSC NDF, recapturing the clips, and the result is the same.
    Q2: Should the capture preset be the same or different when logging the first (OfflineRT) and second (DV NTSC 48kHz) times?

    Wish I had a simple answer for you, stay tuned, some folks who actually use those cameras will drop by sooner or later.
    TrevorRawson wrote:
    After importing through log and capture I continue to get a pop up when it's done saying that the audio and video frame rates do not line up.
    I'll bet you're shooting with a Canon.
    TrevorRawson wrote:
    I am using a Canon xl2 and a Panasonic DVX100A,
    Ah-HA!
    TrevorRawson wrote:I'm shooting in 24p Advanced with a 2:3:3:2 pull down. The capture settings are set up for FCP's default DV NTSC 24p with Advanced Pulldown, same with my sequence settings. This is my first time shooting in 24pa so I'm a little lost at what to do. Does anyone know the correct settings I should be using?
    so neither camera captures properly? that's odd. We know the Canon is going to give you trouble but the Pani should work.
    Try searching the forum for your camera models, see what comes up. Many different cameras shoot their own versions of various image,frame, and pulldown formats.
    bogiesan

Maybe you are looking for

  • Converting Word Form & Textfields

    Hi, I am using Acorbat Pro 9 and try to convert an existing Microsoft Word form to pdf. The word file contains text, checkboxes and text input fields. The checkboxes are converted correctly and the plain text, too. But the text input boxes are missin

  • How to disable login page in an application

    how to disable login page in an application

  • Installing ni488.2

    When trying to install the GPIB-ENET/100 software on a Win2000 PC, I get the following error box: Currently installing NI-PAL 1.5.8f0 Engine. Part 2 of 4 Removing backup files File: C;\config.msi\abf1213.rbf Error 1605 occured while installing NI-PAL

  • Converting bounces to AAC fails

    Most of the times after bouncing a project Logic ProX quits unexpectedly just during the conversion to AAC (without tail, offline). Conversions to mp3 no problem. Please anybody out there tell me how to fix this. OS X 10.9.4 and Logic ProX on I Mac 2

  • Utility Server Username and Password ??

    Hello All, While adding a VM Server, what is the system username and password for the Utillity Server? In the Documentation for VM Manager:http://download.oracle.com/docs/cd/E11081_01/doc/doc.21/e10901/site.htm#CHDHJBJH Its said, If you select Utilit