Compiler crash Forms 6i

Hi,
I have a problem with Forms developer 6i. I have a very big form 2.3 MB, and then I added some extra lines of code ( and there are no errors in them ), and when I try to recompile the fmb now it crashes the whole forms developer program !
I think I hit maximum compilesize for fmb's or something - but then again can that really be true ?
Have anyone experienced similar problems ? and does a solution exist.
PS - I tried to add the lines again from the functioning fmb and same thing happened again and again at roughly the same point - around 2.3 MB
Kind regards
Bo Normann

First of all, the last two posts are implying that the runform session is crashing. Please note that the original post is talking about the Forms Builder crashing.
I couldn't understand the logic behind 'Finding and Replacing' a semicolon with a semicolon through out the form.If you compile a form, you will notice in the Object Navigator, that each program unit has a '+' by them that you can click and see more options. If you open the source of the program unit, at the bottom of the editor window it says Not Modified . . . Sucessfully Compiled. If you save the form, close it, and re-open it, the program unit still has this compiled indicator.
If you change anything in the program editor, the compiled indicator disappears. If you save the form without compiling, and reopen it, it is still NOT compiled.
All you are doing by changing semicolon to semicolon is forcing every trigger and procedure to become uncompiled. And then if you save the form in this state and check the fmb size, you will notice a much smaller fmb size. You will notice when you open such a form in the Builder, the open is faster, and the first compile is slower (just like doing a shift-ctrl-K compile-all). On the other hand, a form saved with all compiled code opens slower, but first compile is fast. Apparently when Oracle opens a pre-compiled fmb, it tries to verify the compiled program units.
However, these compiled program units cause problems -- we have had problems using pre-compiled fmb's transported to different environments failing in stored-procedure calls and other places. Doing a compile-all (shift-ctrl-K) clears the problem.
The bottom line is this: Storing compiled code inside an fmb does no good. Oracle has been doing it from the beginning of client/server forms, along with storing a copy of the color palette, too. In BOTH situations, this has caused issues with forms, especially when moved from one environment to another. In my workplace, we make SURE we always store production forms WITHOUT the compiled code. They transport quicker due to smaller file size, and they compile cleaner in the users environments.

Similar Messages

  • Form builder10g  crashes if I try to compile a form

    ***Hi All,***
    **I have installed Oracle Forms10g in my personal system.when i tried to compile the form,suddenly the whole form builder is closing.***
    can anyone please help me with this error?
    Thanks in Advance.
    Regards,
    Prasad.
    Edited by: 946638 on Jul 16, 2012 5:51 AM

    can anyone please help me with this error?That would entirely depend on your "personal system"; you didn't e.g. mention your OS version, so all we can do is guessing. Please mention OS as well as database and forms versions (4 digit) plus their platforms including their versions too, so we can do better guesses...
    cheers

  • How to compile all forms in a directoy at time?

    Hi friends, thank for your replies for the previous questions.
    Now
    How to compile all form modules located in a directory
    at a time? usually what I know is opening form one by one
    and compile it. But I want to compile all forms and create
    executable files at a time.
    Is project Builder helpfule to achive this??
    thanks
    madhu

    Yes, his file is useful -- it should run on Windows XP. You need to copy the above text into a file using a standard text editor, something like Notepad. To run it, you open a Cmd.exe DOS window on your pc, change directory (CD) to the folder where your forms are, and enter the command script file name.
    Here are several more links to other topics in this forum asking how to do the same thing:
    Re: How To Compile 370 forms ?
    Re: Creating Oracle 10g Forms and Reports Builds

  • Error while compile a form In R12

    Hi all,
    I am tryng to compile a Form in R12,
    But it is showing below error
    [applmgr@apps US]$ frmcmp_batch.sh module=XXDARXTWMAI.fmb userid=apps/apps@VIS Module_Type=FORM
    Forms 10.1 (Form Compiler) Version 10.1.2.0.2 (Production)
    Forms 10.1 (Form Compiler): Release - Production
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    PL/SQL Version 10.1.0.5.0 (Production)
    Oracle Procedure Builder V10.1.2.0.2 - Production
    Oracle Virtual Graphics System Version 10.1.2.0.0 (Production)
    Oracle Multimedia Version 10.1.2.0.2 (Production)
    [b]Oracle Tools Integration Version 10.1.2.0.2 (Production)
    Oracle Tools Common Area Version 10.1.2.0.2
    Oracle CORE 10.1.0.5.0 Production
    ORA-12154: TNS:could not resolve the connect identifier specified
    Form not created
    can u please suggest any thing on this one.
    Thanx
    Lakshmi Narasaiah
    Message was edited by:
    Lakshminarasaiah
    Message was edited by:
    Lakshminarasaiah

    Check the other thread:
    How to compile a form In R12
    Re: How to compile a form In R12

  • Error while compiling the form

    Hi Everyone,
    Im getting the following error, while trying to compile the form.
    Compilation error on POST-QUERY trigger on XXX_CONTRACT_INFO data block:
    PL/SQL ERROR 0 at line 0, column 0
    ORA-12154: TNS:could not resolve service name.
    The instance which Im using is UP and running fine.
    I am using some database links to access data from a different schema, but even those db links are working fine.
    I am completly strucked up with this issue. Please help me.
    Thank you.
    Rams.

    Thanks for the reply.
    Im not running the form in local database and more over if the problem is with only tnsnames, then the form should completly through an error. But in this case, the form is compiling all its objects, but its unable to compile only one block.
    -Rams

  • How to compile a Form in Unix

    Dear all
    I am using forms 10G.
    I have a form and I want to compile it in Unix .
    Can you please tell me the solution step by step .
    I was reading the old blogs here ,and tried the same but did not get the solution .
    Please help me .

    for %%f IN (*.fmb) do frmcmp.sh userid=userid/password@DB1 module=%%f batch=yes module_type=form compile_all=yes window_state=minimize
    Is this comand will work ?On Windows yes, on Unix no, that's the Windows syntax.
    How can I give the fmb name instread of "compile_all=yes " ?"compile_all=yes" doesn't mean compile all forms, but compile all Pl/Sql code within the form. On Linux I use something like the following :. $HOME/.bash_profile
    export Filename=$1
    if [ "$Filename" ]
    then
      Filename=`echo $Filename | cut -f1 -d"."`
    else
      Filename=*
    fi
    for FRM in $Filename.fmb
    do
            echo $FRM
            $ORACLE_HOME/bin/frmcmp.sh $FRM username/password@DB module_type=form 1>$FRM.log 2>&1
    doneIf you execute the script with a form name as argument, only that form will be compiled, otherwise all forms within the directory will be compiled.

  • How to compile a form In R12

    Hi All,
    I am trying to compile a form in R12 by using frmcmp ,but it is showing
    FRM-91500: Unable to start/complete the build. error.
    can any body please tell how to resolve this problem
    By lakshmi Narasaiah

    check Note: 431324.1 - Manual forms compilation In R12 fails With: FRM-91500: Unable to start/complete the build
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=431324.1
    To implement the solution, please execute the following steps:
    1. Download and review the readme and pre-requisites for Patch 5456500 - FRMBLD.SH IS POINTING TO WRONG TNS_ADMIN
    2. Ensure that you have taken a backup of your system before applying the recommended patch.
    3. Apply the patch in a test environment. (you will get the message the patch already exist or conflicts, just ignore and continue)
    4. Retest the issue.
    5. Migrate the solution as appropriate to other environments

  • Shell script for batch compilation of forms 10g on AIX 5.3L AS

    Hi All,
    Can anybody provide me the Shell script for batch compilation of forms 10g and reports 10g on AIX 5.3L AS?
    Regards,
    SAM

    Hi Alex,
    I tried with the below script as well as the one you had posted.
    ORACLE_HOME=/opt/oracle/OraHome_3
    export ORACLE_HOME
    TNS_ADMIN=$ORACLE_HOME/network/admin
    export TNS_ADMIN
    LIBPATH=$ORACLE_HOME/lib32:$ORACLE_HOME/jdk/jre/bin:$ORACLE_HOME/jdk/jre/bin/cla
    ssic:$LIBPATH
    export LIBPATH
    cd ../forms
    for i in `ls *.pll`
    do
    echo Compiling Library $i ....
    $ORACLE_HOME/bin/frmcmp module=$i userid=mydbuser/mydbuser@mydb
    batch=yes module_type=library
    compile_all=yes window_state=minimize
    done
    export ORACLE_HOME=/opt/oracle/OraHome_3
    export ORACLE_TERM=vt220
    export LD_LIBRARY_PATH=/opt/oracle/OraHome_3/lib:/opt/oracle/OraHome_3/jdk/jre/l
    ib:/opt/oracle/OraHome_3/jdk/jre/lib/i386:
    cd ../forms
    for i in `ls *.pll`
    do
    echo "Compiling Library $i ...."
    /opt/oracle/OraHome_3/bin/frmcmp module_type=form userid=mydbuser/mydbuser@mydb
    module=$i batch=yes compile_all=no
    window_state=minimize upgrade=no
    done
    echo "PLL Compilation done"
    But there was a same kind of error thst turning up all the time.
    Compiling Library Agf.pll ....
    Forms 10.1 (Form Compiler) Version 10.1.2.0.2 (Production)
    Forms 10.1 (Form Compiler): Release - Production
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    PL/SQL Version 10.1.0.4.2 (Production)
    Oracle Procedure Builder V10.1.2.0.2 - Production
    Oracle Virtual Graphics System Version 10.1.2.0.0 (Production)
    Oracle Multimedia Version 10.1.2.0.2 (Production)
    Oracle Tools Integration Version 10.1.2.0.2 (Production)
    Oracle Tools Common Area Version 10.1.2.0.2
    Oracle CORE 10.1.0.4.0 Production
    FRM-10043: Cannot open file.
    Form not created
    I hence updated the permissions on the pll as below
    -rwxrwxrwx 1 oracle oinstall 335872 May 19 16:31 Agf.pll
    But the problem is still persisting.
    My environment details are as below.
    I am working on Win XP machine. Connected to my AS via telnet and xmanager. I have set my DISPLAY to my local IP.
    Is there any thing more that I need to do? If so then let me know.
    Regards,
    SAM

  • Problem in compiling my form

    hi gurus,
    I installed Forms 10 release 1 and compiled a form and place in my apps server. It worked perfectly.
    Later today, I wanted to use the webutil features(not in this form) and installed Forms 10g Release 2 with webutil. and compiled my forms. It compiled perfectly in Windows.
    But when I moved to apps server and compiled it there, it gives me Buss error(coredump). I don't what is it pertaining to.
    Please help me on this regard.

    is your apps server 10gR1? and did you perform your compile on your form which worked previously also with 10gR2 compiler?
    If so, the 10gR2 Forms Compiler migrated your fmb file to 10gR2, and the 10gR1 Compiler won't be able to compile it for my mind...
    But I don't know how to migrate a form back to 10gR1, but probably you should upgrade your apps server to 10gR2 too?
    regards

  • Compile all forms 6i in Unix

    i am able to compile one form at a time but how do I compile all forms, for some reason I created a new form, ftp it, then compiled it , it runs in Oracle Apps environment however all other forms are inactive, I believe I have to recompile all forms (am i right?) but I dont know how to do this , here is the code I have to compile one form
    $ ls -l /u01/app/appl/au/11.5.0/forms/US/BGQTRAIN.fmb
    $cp /u01/app/appl/au/11.5.0/forms/US/BGQTRAIN.fmb /u01/app/appl/au/11.5.0/forms/US/BGQTRAIN.fmb_070415
    $ ls -l /u01/app/appl/xxbsi/11.5.0/forms/US/BGQTRAIN.fmx
    $ cp /u01/app/appl/xxbsi/11.5.0/forms/US/BGQTRAIN.fmx /u01/app/appl/xxbsi/11.5.0/forms/US/BGQTRAIN.fmx_070415
    $ put the form source onto this host in the following directory
    $ cd /u01/app/appl/au/11.5.0/forms/US
    $ $ORACLE_HOME/bin/f60gen module=/u01/app/appl/au/11.5.0/forms/US/BGQTRAIN.fmb userid=apps/dbaapps output_file=/u01/app/appl/xxbsi/11.5.0/forms/US/BGQTRAIN.fmx module_type=form batch=yes compile_all=special
    $ more BGQTRAIN.err
    <no errors found>

    Try out
    Forms/Reports 6i
    #UNIX Forms Compile
    #compile_forms.sh
    for i in `ls *.fmb`
    do
    echo Compiling Form $i ....
    f60genm userid=scott/tiger@bs817 batch=yes module=$i module_type=form
    compile_all=yes window_state=minimize
    done

  • Form Compiles in Forms Builder but not Unix?

    I have a form that compiles fine in Forms Builder (Version 6.0.8.11.3). When trying to compile the form on a Solaris Middleware Server it fails and gives several errors similar to the following:
    Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SFTREGS data block...
    Compilation error on WHEN-NEW-BLOCK-INSTANCE trigger on SFTREGS data block:
    PL/SQL ERROR 201 at line 4, column 37
    identifier 'SATURN.SFTREGS' must be declared
    PL/SQL ERROR 0 at line 4, column 4
    SQL Statement ignored
    I realize that these same errors in Forms Builder if I have not connected to the database (Version 9.2.0.4.0) before compiling so I'm guessing that there is some environment variable set incorrectly on the middleware server. I'm quite new to Unix and am not sure what variables I should be looking at...any thoughts?

    We have tried both commands as indicated. We get the same errors that were in the original post as outlined below;
    Compiling PRE-INSERT trigger on form...
    No compilation errors.
    Compiling WHEN-NEW-FORM-INSTANCE trigger on form...
    No compilation errors.
    Compiling POST-QUERY trigger on SPRIDEN data block...
    No compilation errors.
    Compiling POST-BLOCK trigger on SPRIDEN data block...
    No compilation errors.
    Compiling KEY-NEXT-ITEM trigger on SPRIDEN_ID item in SPRIDEN data block...
    No compilation errors.
    Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SFTREGS data block...
    Compilation error on WHEN-NEW-BLOCK-INSTANCE trigger on SFTREGS data block:
    PL/SQL ERROR 201 at line 4, column 37
    identifier 'SATURN.SFTREGS' must be declared
    PL/SQL ERROR 0 at line 4, column 4
    SQL Statement ignored
    PL/SQL ERROR 320 at line 4, column 11
    the declaration of the type of this expression is incomplete or malformed
    PL/SQL ERROR 0 at line 13, column 7
    SQL Statement ignored
    Compiling WHEN-VALIDATE-ITEM trigger on SFTREGS_TXT_TOTAL_BILLING_HOUR item in SFTREGS data block...
    Compilation error on WHEN-VALIDATE-ITEM trigger on SFTREGS_TXT_TOTAL_BILLING_HOUR item in SFTREGS data block:
    PL/SQL ERROR 201 at line 2, column 6
    identifier 'SATURN.SFTREGS' must be declared
    PL/SQL ERROR 0 at line 1, column 1
    SQL Statement ignored
    Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SYSMUSA data block...
    No compilation errors.
    Compiling PRE-INSERT trigger on SYSMUSA data block...
    No compilation errors.
    Compiling POST-UPDATE trigger on SYSMUSA data block...
    Compilation error on POST-UPDATE trigger on SYSMUSA data block:
    PL/SQL ERROR 201 at line 3, column 6
    identifier 'SMLOCAL.SYSMUSA' must be declared
    PL/SQL ERROR 0 at line 1, column 1
    SQL Statement ignored
    Compiling ON-ERROR trigger on SYSMUSA data block...
    No compilation errors.
    Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SGRSATT data block...
    No compilation errors.
    Compiling POST-QUERY trigger on SGRSATT data block...
    No compilation errors.
    Compilation errors have occurred.
    Any further thoughts?

  • How to compile many forms in a HP-UX

    Hi,
    to compile a form i use
    f60gen module userid
    but this work for one form at a time
    i would like to generate for all form in a script

    Yes, his file is useful -- it should run on Windows XP. You need to copy the above text into a file using a standard text editor, something like Notepad. To run it, you open a Cmd.exe DOS window on your pc, change directory (CD) to the folder where your forms are, and enter the command script file name.
    Here are several more links to other topics in this forum asking how to do the same thing:
    Re: How To Compile 370 forms ?
    Re: Creating Oracle 10g Forms and Reports Builds

  • Can't compile the Forms,please help me.

    when I compile the form in Linux, I got the following error:
    ======================================================
    error while loading shared libraries: libig.so.0: cannot open shared object file: No such file or directory
    ==========================
    and I can find this file under
    /ora11510/oracle/visora/8.0.6/lib/
    Can you help me to resolve it? Thanks.

    Hi...
    How are you compiling the form in linux? are you using frmcmp (or f90genm for Forms 9i) executable? If so, try using frmcmp.sh script (its also available in $ORACLE_HOME/bin).
    If it does not work either, try setting LD_LIBRARY_PATH to $ORACLE_HOME/lib:$ORACLE_HOME/lib32
    HTH.
    Regards,
    Arun

  • Annotation-caused compiler crash

    Hi,
    When attempting to build against a class that uses runtime annotations, javac is crashing with:
    An exception has occurred in the compiler (1.6.0-rc). Please file a bug at the Java Developer Connection (http://java.sun.com/webapps/bugreport) after checking the Bug Parade for duplicates. Include your program and the following diagnostic in your report. Thank you.
    com.sun.tools.javac.code.Symbol$CompletionFailure: class file for test.annotation.TestAnnotation not found
    The test case that generates this error can be found at:
    http://www.cjtucker.com/annotation-bug.tgz
    Synopsis:
    Attempting to build against a class that contains a runtime annotation requires the definition of the annotation to be available to the compiler. If the definition is not available, the compiler crashes.
    Test case:
    The test case attempts to build three classes in three separate packages: a simple RUNTIME scoped annotation, a "core" class, and a "ui" class that builds against the core class. The "ui" class neither knows nor cares about the annotated properties of the "core" class. The annotation class is build in isolation; the core class is built only against the annotation class; the ui class is built only against the core class.
    The test case tarball contains the necessary .java files and directory structure for compilation. The compilation commands are contained in compile.sh.
    The crash can be avoided by including the annotation class in the classpath when building the ui component. The crash has been reproduced in 1.5.0_04, 1.5.0_05, and 1.6.0b61. Other JDKs have not been tested. The crash occurs with both RUNTIME and CLASS scoped annotations, though not with SOURCE scope (as expected: the compiler is correctly stripping annotations in that case). The crash does not occur if the annotation does not take parameters (i.e. is an empty "marker" annotation).
    This raises some additional questions I'd be interested in hearing comment on. What is the expected behavior here? I would expect the annotation class should not be required as a dependency, in the same way I'm not expected to declare a dependency on every class used by a class I interact with. This behavior with annotations seems to breach encapsulation (for example, a client would have to know that my libraries happened to be using a Hibernate persistence layer whether or not this is of interest to them). Perhaps one of the Java gurus here could shed some further light on this?
    Cheers,
    Chris Tucker

    Hi,
    I know this is an old post but I am having the exact same problem with 1.6.0_11 and have not been able to find a solution.
    Any assistance would be much appreciated.
    Thanks.

  • Compiler Crashes!!

    Hi,
    I'm using J2sdk1.4.1 on Windows XP pro. When I compile my code, the compiler crashes! It seems to work sometimes, and not others, and I think it tends to crash when I'm importing and using items from javax.swing.*
    Here's what comes up when I try to compile:
    C:\Documents and Settings\Claire\Desktop\Claire\school\Birmingham\Team Java>javac UserInterface.java
    Unexpected Signal : EXCEPTION_FLT_STACK_CHECK occurred at PC=0xBBD0D2
    Function=[Unknown.]
    Library=(N/A)
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
    Dynamic libraries:
    0x00400000 - 0x00408000 c:\j2sdk1.4.1\bin\javac.exe
    0x77F50000 - 0x77FF7000 C:\WINDOWS\System32\ntdll.dll
    0x77E60000 - 0x77F46000 C:\WINDOWS\system32\kernel32.dll
    0x77DD0000 - 0x77E5D000 C:\WINDOWS\system32\ADVAPI32.dll
    0x78000000 - 0x78086000 C:\WINDOWS\system32\RPCRT4.dll
    0x77C10000 - 0x77C63000 C:\WINDOWS\system32\MSVCRT.dll
    0x00280000 - 0x002F4000 C:\DOCUME~1\Claire\LOCALS~1\Temp\ata6.tmp
    0x77340000 - 0x773CB000 C:\WINDOWS\system32\COMCTL32.DLL
    0x77C70000 - 0x77CB0000 C:\WINDOWS\system32\GDI32.dll
    0x77D40000 - 0x77DCC000 C:\WINDOWS\system32\USER32.dll
    0x71B20000 - 0x71B31000 C:\WINDOWS\system32\MPR.DLL
    0x771B0000 - 0x772D1000 C:\WINDOWS\system32\OLE32.DLL
    0x77120000 - 0x771AB000 C:\WINDOWS\system32\OLEAUT32.DLL
    0x71AD0000 - 0x71AD8000 C:\WINDOWS\System32\WSOCK32.DLL
    0x71AB0000 - 0x71AC5000 C:\WINDOWS\System32\WS2_32.dll
    0x71AA0000 - 0x71AA8000 C:\WINDOWS\System32\WS2HELP.dll
    0x6D330000 - 0x6D45C000 c:\j2sdk1.4.1\jre\bin\client\jvm.dll
    0x76B40000 - 0x76B6C000 C:\WINDOWS\System32\WINMM.dll
    0x6D1D0000 - 0x6D1D7000 c:\j2sdk1.4.1\jre\bin\hpi.dll
    0x6D300000 - 0x6D30D000 c:\j2sdk1.4.1\jre\bin\verify.dll
    0x6D210000 - 0x6D229000 c:\j2sdk1.4.1\jre\bin\java.dll
    0x6D320000 - 0x6D32D000 c:\j2sdk1.4.1\jre\bin\zip.dll
    0x76C90000 - 0x76CB2000 C:\WINDOWS\system32\imagehlp.dll
    0x6D510000 - 0x6D58D000 C:\WINDOWS\system32\DBGHELP.dll
    0x77C00000 - 0x77C07000 C:\WINDOWS\system32\VERSION.dll
    0x76BF0000 - 0x76BFB000 C:\WINDOWS\System32\PSAPI.DLL
    Local Time = Wed Mar 19 16:26:13 2003
    Another exception has been detected while we were handling last error.
    Dumping information about last error:
    ERROR REPORT FILE = (N/A)
    PC = 0x00BBD0D2
    SIGNAL = -1073741678
    FUNCTION NAME = (N/A)
    OFFSET = 0xFFFFFFFF
    LIBRARY NAME = (N/A)
    Please check ERROR REPORT FILE for further information, if there is any.
    Good bye.
    C:\Documents and Settings\Claire\Desktop\Claire\school\Birmingham\Team Java>
    Anyone got any ideas?
    Claire

    Hello,
    We have similar java crash on HP-UX 11.11 (with all latest OS and java patches). The funny thing is that we able to run java as "root", but we won't able to run java as local users. We checked possible environment issue, but did not find anything what could be a problem. We also reinstalled java 1.4 on that machine - it did not fix the problem. Also we tried this: we installed Java 1.3 - works with all users, Java 1.2 - works with all users. With Java 1.4 , we are getting this:
    $ java -version
    Another exception has been detected while we were handling last error.
    Dumping information about last error:
    ERROR REPORT FILE = (N/A)
    PC = c52227cb
    SIGNAL = 11
    FUNCTION NAME = (N/A)
    OFFSET = 0xFFFFFFFF
    LIBRARY NAME = (N/A)
    Please check ERROR REPORT FILE for further information, if there is any.
    Good bye.
    Abort
    $ which java
    /usr/lnms/bin/java
    $ id
    uid=104(onmsorcl) gid=104(oinstall)
    $
    $ exit
    root@titania > java -version
    java version "1.4.2.00"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2.00-031015-15:06)
    Java HotSpot(TM) Server VM (build 1.4.2 1.4.2.00-031015-16:52-PA_RISC2.0 PA2.0,
    mixed mode)
    Any ideas?
    Yulia

Maybe you are looking for

  • Latest advice on creating .flv advice from Final Cut Express?

    IN our newsroom, we have a recently purchased MacBook Pro running Final Cut Express 4.0.1 for the creation of videos for our website - problem is the the website can only take .flv files and they can be no larger than about 20 MBs. I have looked at m

  • Deploying msi via group policy without administrative rights

    We are having a problem with flash player not working without Administrative right on the machine. We thought we could get around this by using the flash_player_active_x.msi and installing through group policy. The install during a computer reboot (i

  • Screen saver freezing... requires hard reboot

    I'm using the Shell screensaver and displaying the clock in it. I'm often finding overnight that the screensaver is frozen. It must wake the display up since the screensaver is set to go on after 15min of inactivity and then the screen should go to s

  • Drag from Lightroom 3 to Photodex Producer

    I use to be able drag from Media Expressions/Ivew Media Pro to Photodex Producer when building slideshows, it worked fine. I tried using Lightroom 3 from library module to producer and it did not work. Is there a way to do this in Lightroom3? I wante

  • Drop Columns

    I have an Oracle table with 60million records in it. I have about 35 columns in it and it takes about 40GB of tablespace in the database. I would like to drop some columns to reduce the table size (& also to reduce tablespace usage). Am using Oracle