Unable to drop a procedure

I want to drop a procedure by writting this script
drop procedure procedure_name;
but it is giving a error messege saying it is unable to lock the specified procedure.
when i am seeing the containts of V$_lock_objects it is showing that this procedure is locked.
i want to unlock that procedure pls
help me to unlock that procedure
thangs
Anuj

Using V$access and v$session find the sid, machine that is locking the procedure. Contact the person or kill if u feel that is unimportant.
Hope it helps u.
null

Similar Messages

  • I unable to drop the procedure created by me

    i have created a procedure using sql workshop. procedure compiled successfully.
    when i am trying to run the procedure i got hanged. then i try to drop that procedure, i am not able to drop. The window is hanging i need to relogin agin. what might be the problem?

    You can't drop a procedure that is in use by another session. You will need to wait for it to finish (if it ever will), or kill the session that is currently running the proc.
    Anton

  • Unable to compile a procedure

    Hi All!
    I am using Oracle 10g. I am facing a strange problem. I am unable to compile a procedure. I get the following error:
    PL/SQL: ORA-06552: PL/SQL: Compilation unit analysis terminated ORA-06553: PLS-201: identifier 'UNDEFINED' must be declared
    The line it is pointing to is:
    select dai.id into m_id from ACCNTPARTIES dai where dai.P_NUM = mpnum
    The error is pointing to ACCNTPARTIES in the line, which is a view.
    I checked in some blogs for the error. Some say it a bug, some say, drop and recreate the view, it will work. But nothing worked for me :( .
    Please let me know, what could be the problem and suggest a solution. Thanking in advance.
    Regards,
    Deepika.

    Hi!
    The view definition looks as follows:
    CREATE OR REPLACE FORCE VIEW ACCNTPARTIES(ID,NAME,CERT,ADDRESS,STATE,COUNTRY)
    as select A.ID,A.NAME,A.CERT,B.ADDRESS,B.STATE,B.COUNTRY
    from ACCNT A,ADDRESS B where to_char(A.id)=B.ID;
    In this definition, ACCNT is a table and ADDRESS is a view.
    The procedure which is not getting complied looks somethhing like this:
    create or replace
    PROCEDURE CREATEITEM (
    batchid in number,
    mpnum in varchar2,
    mparty_type in varchar default 'ACCNTPARTIES'
    ) is
    m_id number;
    mopenopps number;
    begin
    if mparty_type = 'ACCNTPARTIES' then
    select dai.id into m_id from ACCNTPARTIES dai where dai.P_NUM = mpnum
    else
    select hc.id into m_id from CON hc where hc.p_num = mpnum;
    end if;
    insert into some_table values ( some values );
    commit;
    end;
    Hope this helps.
    Regards,
    Deepika.

  • Unable to drop database user

    Hi All,
    I am unable to drop database user and getting the folllowing error:
    " must use DBMS_AQADM.DROP_QUEUE_TABLE to drop queue tables "
    I find 3 table with AQ prefix in the schema but unable to drop these table even by using "sys" user.
    Any idea how can I do that ?
    Regards,

    Hi,
    select object_name,object_type from dba_objects where owner='USERNAME' and object_name like '%AQ%';TO drop the queue table, login as the owner and
    exec DBMS_AQADM.DROP_QUEUE_TABLE(queue_table=>'PASTE_THE_OBJECT_NAME_FROM_ABOVE',force =>TRUE);Anand

  • Unable to drop materialized view with corrupted data blocks

    Hi,
    The alert log of our database is giving this message
    Wed Jan 31 05:23:13 2007
    ORACLE Instance mesh (pid = 9) - Error 1578 encountered while recovering transaction (6, 15) on object 13355.
    Wed Jan 31 05:23:13 2007
    Errors in file /u01/app/oracle/admin/mesh/bdump/mesh_smon_4369.trc:
    ORA-01578: ORACLE data block corrupted (file # 5, block # 388260)
    ORA-01110: data file 5: '/u03/oradata/mesh/mview.dbf'
    No one is using this mview still oracle is trying to recover this transaction (6, 15).
    when i tried to drop this mview it gives me this error
    ERROR at line 1:
    ORA-01578: ORACLE data block corrupted (file # 5, block # 388260)
    ORA-01110: data file 5: '/u03/oradata/mesh/mview.dbf'
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2255
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2461
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2430
    ORA-06512: at line 1
    I have tried to fix the corrupted data blocks by using dbms_repair package, but of no use.
    I have marked this block to be skipped by using dbms_repair.skip_block but still unable to drop it.
    Please suggest what should I do?
    Thanks in advance
    Anuj

    You are lucky if only your undesirable MV is affected by theese corrupted blocks. This is an advice to do a complete-super-full-hot-cold-middle backup of ypur database and search for any disk for a "possible replace".
    God save us!

  • I have to re-install acrobat standard 9 becaus of 'unable to extend license procedure (148:3)'. Where can I download? Or better to upgrade to XI (what is the price and how to do this)

    I have to re-install acrobat standard 9 becaus of 'unable to extend license procedure (148:3)'. Where can I download? Or better to upgrade to XI (what is the price and how to do this)

    Hi riffpizcy,
    Error 148:3 is a licensing error.
    Try following the steps mentioned in the KB: Error "Licensing has stopped working" | Windows
    You can download Acrobat 9 Std. from: https://files.acrobat.com/a/preview/8d640488-4a92-4f7d-b50b-d8eb7f96bff8
    You can upgrade from Acrobat 9 to Acrobat 11 Pro at $199 USD
    Please refer: Buying guide | Adobe Acrobat XI Pro  for more information.
    Regards,
    Rave

  • How to drop a procedure, if already exists

    Hi,
    I want to run an sql script in Hana Studio that will drop a procedure if this procedure already exists.
    Otherwise nothing will happen.
    Thank you in advance.
    D.E.

    You can use the view SYS.PROCEDURES to check if your procedure exists, something similar to this:
    declare v_proc_exists integer;
    select count(PROCEDURE_NAME) into v_proc_exists from SYS.PROCEDURES
    where PROCEDURE_NAME = '<PROC_NAME>';
    if :v_proc_exists > 0 then
      DROP PROCEDURE "<PROC_NAME>";
    end if;
    Cheers,
    Fernando

  • Unable to drop spatial index

    Hi
    In my Oracle 11.2 Test database, i had accidentally deleted the base tables of a Spatial Domain index that starts with MDRT$.
    I am unable to drop or rebuild the index. I even tried dropping the schema , however the query just hangs forever for both
    SQL> drop index Geo1_ID_1 force;
    SQL> drop user geonom cascade;I checked the AWR and ASH report , those sql are not listed there .
    Please Suggest !

    hi,
    I'm grasping at straws here, but you might want to try recreating the user_sdo_geom_metadata entry. When you do, make sure there aren't any spaces in the table_name or column_name. It looks OK though from what you printed out.
    Also, you might want to consider leaving off the sdo_numtiles and sdo_maxlevel. Oracle is no longer recommending the use of hybrid indexes in almost all cases.
    regards,
    dan

  • Unable to drop nodes onto a line.

    Hello Everyone,
    I'm hoping someone can help me with this. I've got a situation where I'm unable to drop nodes onto a line. I'm having to manually connect them at each point. The Tutorial tells me that when I drag a node over a line the node in and out should highlight and at that point I can release it and it will automatically connect onto the tree. Although this did work with the trial version it is not working with my purchased version. Most likely I've dissabled the option without knowing it. Can't find the solution in any of the manuals. Thanks for any help.

    > Man, I STILL do that... then wonder where everything
    went!!
    Well, now I know you do it, I don't feel so stupid when I do it!
    . . . But isn't it great when you hit the space bar again . . . and everything comes back!
    Andy
    G5 Quad 8GB. 250, 500 GB HDs. G-Raid 1TB. FCP 5.1.1. Shake 4.1. Sony HVR Z1E   Mac OS X (10.4.7)  
    "I've taught you all I know, and still you know nothing".

  • Unable to drop a function

    Hi,
    I have created a function. I have full access on that function. But unable to drop it. When I issue drop function function_name. My SQLPLUS hangs and after brief wait I am getting the following error ORA-04021: timeout occurred while waiting to lock object.
    How to drop the function now. I am unable to use it also.
    Regards,
    Subbu S.

    Hi,
    my function is
    FUNCTION PENDING_HRS
    (st_dt IN DATE, ed_dt IN DATE, out_type in varchar2, loc_type in varchar2,
    hrs_type in varchar2)
    RETURN NUMBER IS
    CURSOR holiday_cnt (st_dt_tr_in IN DATE, ed_dt_tr_in IN DATE,loc_type_in IN VARCHAR2 ) IS
    SELECT count(*) FROM bi_prod.boe_hmh_holiday where
    (LOCATION = loc_type_in or 'BOTH' = loc_type_in) and
    holiday_dt between st_dt_tr_in and ed_dt_tr_in and
    to_number(to_char(holiday_dt,'d')) not in (1,7);
    st_dt_mod DATE;
    ed_dt_mod DATE;
    st_dt_tr DATE;
    ed_dt_tr DATE;
    st_dt_wk DATE;
    ed_dt_wk DATE;
    no_of_wkeds NUMBER;
    st_dy_filler NUMBER;
    ed_dy_filler NUMBER;
    no_of_wkdys NUMBER;
    st_hr_filler NUMBER;
    ed_hr_filler NUMBER;
    nr_hrs NUMBER;
    num_hdys NUMBER;
    BEGIN
    no_of_wkeds :=0;
    st_dy_filler :=0;
    ed_dy_filler :=0;
    no_of_wkdys :=0;
    st_hr_filler :=0;
    ed_hr_filler :=0;
    nr_hrs :=0;
    num_hdys :=0;
    st_dt_mod := BUS_DAY(st_dt,'+',loc_type,hrs_type);
    ed_dt_mod := BUS_DAY(ed_dt,'-',loc_type,hrs_type);
    dbms_output.put_line(to_char(st_dt_mod,'dd-Mon-yyyy hh24:mi:ss'));
    dbms_output.put_line(to_char(ed_dt_mod,'dd-Mon-yyyy hh24:mi:ss'));
    if ed_dt_mod > st_dt_mod then
    st_dt_tr := trunc(st_dt_mod);
    ed_dt_tr := trunc(ed_dt_mod);
    st_dt_wk := st_dt_tr - (to_number(to_char(st_dt_tr,'d')) - 1);
    ed_dt_wk := ed_dt_tr + (7 - to_number(to_char(ed_dt_tr,'d')));
    dbms_output.put_line(to_char(st_dt_wk,'dd-Mon-yyyy hh24:mi:ss'));
    dbms_output.put_line(to_char(ed_dt_wk,'dd-Mon-yyyy hh24:mi:ss'));
    no_of_wkeds := ((ed_dt_wk - st_dt_wk + 1) / 7) * 2;
    dbms_output.put_line('Weekends - ' || no_of_wkeds);
    IF to_number(to_char(st_dt_tr,'d')) > 2 THEN
    st_dy_filler := to_number(to_char(st_dt_tr,'d')) - 2;
    ELSE
    st_dy_filler := 0;
    END IF;
    dbms_output.put_line ('St Filler - ' || st_dy_filler);
    IF to_number(to_char(ed_dt_tr,'d')) < 6 THEN
    ed_dy_filler := 6 - to_number(to_char(ed_dt_tr,'d'));
    ELSE
    ed_dy_filler := 0;
    END IF;
    dbms_output.put_line ('ed Filler - ' || ed_dy_filler);
    open holiday_cnt(st_dt_tr , ed_dt_tr, loc_type);
    fetch holiday_cnt into num_hdys;
    close holiday_cnt;
    dbms_output.put_line(num_hdys);
    no_of_wkdys := ed_dt_wk - st_dt_wk - no_of_wkeds - st_dy_filler - ed_dy_filler + 1 - num_hdys;
    dbms_output.put_line ('Work Days - '|| no_of_wkdys);
    IF to_number(to_char(st_dt_mod,'d')) > 1 AND to_number(to_char(st_dt_mod,'d')) < 7 then
    if hrs_type = '8' then
    IF to_number(to_char(st_dt_mod,'hh24')) >= 9 AND (to_number(to_char(st_dt_mod,'hh24')) < 17 or (to_number(to_char(st_dt_mod,'hh24')) = 17 and to_number(to_char(st_dt_mod,'mi')) = 0 )) then
    st_hr_filler := round((st_dt_mod - to_date(to_char(st_dt_tr,'dd-Mon-yyyy') || ' 09:00:00' ,'dd-Mon-yyyy hh:mi:ss')) * 24, 2) ;
    ELSE
    if to_number(to_char(st_dt_mod,'hh24')) < 9 then
    st_hr_filler := 0;
    elsif to_number(to_char(st_dt_mod,'hh24')) >= 17 then
    st_hr_filler := 8;
    end if;
    END IF;
    else
    st_hr_filler := round((st_dt_mod -st_dt_tr) * 24 ,2);
    end if;
    ELSE
    st_hr_filler := 0;
    END IF;
    dbms_output.put_line ('St_hr_filler - '|| st_hr_filler);
    IF to_number(to_char(ed_dt_mod,'d')) > 1 AND to_number(to_char(ed_dt_mod,'d')) < 7 then
    if hrs_type = '8' then
    IF to_number(to_char(ed_dt_mod,'hh24')) >= 9 AND (to_number(to_char(ed_dt_mod,'hh24')) < 17 or (to_number(to_char(ed_dt_mod,'hh24')) = 17 and to_number(to_char(ed_dt_mod,'mi')) = 0 )) then
    ed_hr_filler := round((to_date(to_char(ed_dt_tr,'dd-Mon-yyyy') || ' 17:00:00' ,'dd-Mon-yyyy hh24:mi:ss') - ed_dt_mod) * 24 , 2) ;
    ELSE
    if to_number(to_char(ed_dt_mod,'hh24')) < 9 then
    ed_hr_filler := 8;
    elsif to_number(to_char(ed_dt_mod,'hh24')) >= 17 then
    ed_hr_filler := 0;
    end if;
    END IF;
    else
    ed_hr_filler := 24 - round((ed_dt_mod - ed_dt_tr) * (24) , 2);
    end if;
    ELSE
    ed_hr_filler := 0;
    END IF;
    dbms_output.put_line ('ed_hr_filler - '|| ed_hr_filler);
    IF hrs_type ='24' then
    nr_hrs := (no_of_wkdys * 24) - st_hr_filler - ed_hr_filler;
    else
    nr_hrs := (no_of_wkdys * 8) - st_hr_filler - ed_hr_filler;
    end if;
    if nr_hrs < 0 then
    nr_hrs := 0;
    end if;
    if out_type ='H' then
    RETURN nr_hrs ;
    else
    IF hrs_type ='24' then
    RETURN nr_hrs / 24;
    else
    RETURN nr_hrs / 8;
    end if;
    end if;
    else
    RETURN 0;
    end if;
    END pending_hrs;
    From port string I came to know its on solaris (SVR4-be-64bit-8.1.0).
    My oracle instance version is 10.2.0.4.0. I have to catch hold of my DBA.
    Regards,
    Subbu S.

  • Unable to Drop ASM Disk Group

    Hi,
    working on Oracle 11gR2, (Solaris).
    unable to drop diskgroup, need to deinstall asm setup manually insted of running with deinstall tool.
    sqlplus / as sysasm
    SQL> startup pfile='/u01/grid/oracle/product/11.2.0/asm_1/dbs/init+ASM.ora';
    ASM instance started
    Total System Global Area  283930624 bytes
    Fixed Size                  2210328 bytes
    Variable Size             256554472 bytes
    ASM Cache                  25165824 bytes
    ORA-15110: no diskgroups mounted
    SQL> alter diskgroup fra mount;
    Diskgroup altered.
    SQL> alter diskgroup data mount;
    Diskgroup altered.
    SQL> drop diskgroup FRA INCLUDING CONTENTS;
    drop diskgroup FRA INCLUDING CONTENTS
    ERROR at line 1:
    ORA-15039: diskgroup not dropped
    ORA-29786: SIHA attribute GET failed with error [Attribute 'SPFILE' sts[200]
    lsts[0]]
    SQL> DROP DISKGROUP DATA INCLUDING CONTENTS;
    DROP DISKGROUP DATA INCLUDING CONTENTS
    ERROR at line 1:
    ORA-15039: diskgroup not dropped
    ORA-29786: SIHA attribute GET failed with error [Attribute 'SPFILE' sts[200]
    lsts[0]]

    Sachin B wrote:
    Hi,
    working on Oracle 11gR2, (Solaris).
    unable to drop diskgroup, need to deinstall asm setup manually insted of running with deinstall tool.
    sqlplus / as sysasm
    SQL> startup pfile='/u01/grid/oracle/product/11.2.0/asm_1/dbs/init+ASM.ora';
    ASM instance started
    Total System Global Area  283930624 bytes
    Fixed Size                  2210328 bytes
    Variable Size             256554472 bytes
    ASM Cache                  25165824 bytes
    ORA-15110: no diskgroups mounted
    SQL> alter diskgroup fra mount;
    Diskgroup altered.
    SQL> alter diskgroup data mount;
    Diskgroup altered.
    SQL> drop diskgroup FRA INCLUDING CONTENTS;
    drop diskgroup FRA INCLUDING CONTENTS
    ERROR at line 1:
    ORA-15039: diskgroup not dropped
    ORA-29786: SIHA attribute GET failed with error [Attribute 'SPFILE' sts[200]
    lsts[0]]
    SQL> DROP DISKGROUP DATA INCLUDING CONTENTS;
    DROP DISKGROUP DATA INCLUDING CONTENTS
    ERROR at line 1:
    ORA-15039: diskgroup not dropped
    ORA-29786: SIHA attribute GET failed with error [Attribute 'SPFILE' sts[200]
    lsts[0]]
    Did you create ASM instance manually? If yes, then follow MOS DOC ID: 976075.1

  • Unable to drop view

    Hi
    I'm unable to drop a view owned by me. The system hangs when I issue 'DROP VIEW &lt;view name&gt;.
    In DBA_OBJECTS the STATUS shows 'VALID'.
    Can you help to how to drop this problem.
    Thanks & Regards
    Bhaskara

    here are few options :
    o write a query on v$lock, v$session and v$process
    or
    o select field_lists from v$sql where sql_text like '%VIEW_NAME%' and parsing_schema_id = user_id from dba_users
    this will give you some idea about the process
    or
    o take a systemstate dump
    if you know how to read systemstate dump trace file, this is prefered method.
    try the 1st option and use addr and saddr to join the tables.
    Best,
    G

  • Unable to descripe the table and unable to drop the table

    Hi,
    I have a temp table that we use like staging table to import the data in to the main table through some scheduled procedures.And that will dropped every day and will be created through the script.
    Some how while I am trying to drop the table manually got hanged, There after I could not find that table in dba_objects, dba_tables or any where.
    But Now I am unable to create that table manually(Keep on running the create command with out giving any error), Even I am not getting any error (keep on running )if I give drop/desc of table.
    Can you please any one help on this ? Is it some where got stored the table in DB or do we any option to repair the table ?
    SQL> select OWNER,OBJECT_NAME,OBJECT_TYPE,STATUS from dba_objects where OBJECT_NAME like 'TEMP%';
    no rows selected
    SQL> desc temp
    Thank in advance.

    Hi,
    if this table drops then it moved DBA_RECYCLEBIN table. and also original name of its changed automatically by oracle.
    For example :
    SQL> create table tst (col varchar2(10), row_chng_dt date);
    Table created.
    SQL> insert into tst values ('Version1', sysdate);
    1 row created.
    SQL> select * from tst ;
    COL        ROW_CHNG
    Version1   16:10:03
    If the RECYCLEBIN initialization parameter is set to ON (the default in 10g), then dropping this table will place it in the recyclebin:
    SQL> drop table tst;
    Table dropped.
    SQL> select object_name, original_name, type, can_undrop as "UND", can_purge as "PUR", droptime
      2  from recyclebin
    SQL> /
    OBJECT_NAME                    ORIGINAL_NAME TYPE  UND PUR DROPTIME
    BIN$HGnc55/7rRPgQPeM/qQoRw==$0 TST           TABLE YES YES 2013-10-08:16:10:12
    All that happened to the table when we dropped it was that it got renamed. The table data is still there and can be queried just like a normal table:
    SQL> alter session set nls_date_format='HH24:MI:SS' ;
    Session altered.
    SQL> select * from "BIN$HGnc55/7rRPgQPeM/qQoRw==$0" ;
    COL        ROW_CHNG
    Version1   16:10:03
    Since the table data is still there, it's very easy to "undrop" the table. This operation is known as a "flashback drop". The command is FLASHBACK TABLE... TO BEFORE DROP, and it simply renames the BIN$... table to its original name:
    SQL> flashback table tst to before drop;
    Flashback complete.
    SQL> select * from tst ;
    COL        ROW_CHNG
    Version1   16:10:03
    SQL> select * from recyclebin ;
    no rows selected
    It's important to know that after you've dropped a table, it has only been renamed; the table segments are still sitting there in your tablespace, unchanged, taking up space. This space still counts against your user tablespace quotas, as well as filling up the tablespace. It will not be reclaimed until you get the table out of the recyclebin. You can remove an object from the recyclebin by restoring it, or by purging it from the recyclebin.
    SQL> select object_name, original_name, type, can_undrop as "UND", can_purge as "PUR", droptime
      2  from recyclebin
    SQL> /
    OBJECT_NAME                    ORIGINAL_NAME TYPE                      UND PUR DROPTIME
    BIN$HGnc55/7rRPgQPeM/qQoRw==$0 TST           TABLE                     YES YES 2006-09-01:16:10:12
    SQL> purge table "BIN$HGnc55/7rRPgQPeM/qQoRw==$0" ;
    Table purged.
    SQL> select * from recyclebin ;
    no rows selected
    Thank you
    And check this link:
    http://www.orafaq.com/node/968
    http://docs.oracle.com/cd/B28359_01/server.111/b28310/tables011.htm
    Thank you

  • Unable to run Store Procedure based deski report in Infoview

    Hi All,
    I have a Deski report which is created using Store Procedure. I am able to run report in Full Client Deski. But I am unable to run / schedule same report thorough infoview.
    More details about report
    - Report uses 3 store procedures. When I ran report in infovew I get error message as "SP2 Dataprovider did not refresh properly".  -- SP2 is Dataprovider name.
    - Same report I am able to run in Dev environment. After migration to Model, report fails to run in model infoview.
    - I am able to Run report only for 1st. When I refresh and run with same parameter report shows error.
    Any input will be great help.
    Thanks,
    NV

    Hi,
    Could you please test the following solutions to resolve the issue.
    Solution1:
    Test the issue by inserting the following parameter in .SBO file.
    <Parameter Name="Force SQLExecute">Always</Parameter> .
    Solution2
    Just put SET NOCOUNT OFF in the end of the stored procedure SQL.
    If the above doesnu2019t works then please try the following solution.
    Solution3
    Make the new connection from the scratch using ODBC connection and test the issue.
    I hope this will help you.
    Regards,
    Sarbhjeet Kaur

  • AW$ table unable to drop

    Hi ALL,
    I have an analytical workspace in oracle 10g (10.2.0.3). I deployed a new dimension recently in my workspace, which contains chart of accounts hierarchy.
    After deploying the dimension, i am unable to ATTACH the Analytical Workspace. I have tried it doing from AWM 10g (10.2.0.3), as well as from Discoverer. Similarly, when i try to drop the AW$ANALYTICAL_WORKSPACE table, Oracle error is thrown
    "ORA-00942:table or view does not exist". I have also tried to drop the partitions and analyze the table, but same error occurs. The table is shown in dba_tables and dba_objects view, but is unable to be dropped.
    I also tried dropping the Analytical Workspace, but Java Null Pointer exception occurs.
    Has anybody faced such scenario? what should i do to drop the table.
    Thanks.

    Hi,
    This is not the forum for Analytic Workspace Manager. I would suggest to try the oracle olap forum for your questions.
    OLAP
    Regards,
    Ben

Maybe you are looking for

  • Page Setup Scaling under Pages 5.0.1

    Yesterday, I had my first session with Pages 5.0.1 and Mavericks. Most of my pages documents are simply tables.  I modified a pages document (and foolishly allowed the document to be updated), then tried to print at 60% scaling -- using Page Setup. I

  • IPhone sync with Calendars

    When syncing my iPhone 4S with iTunes, I've just recently started getting the following message: "iTunes could not sync calendars to the iPhone 'XXX' because the iPhone disconnected.  I've taken the following actions: 1.     connected the iPhone to a

  • Display selected currency translation type in BEX webappl report

    Hi everybody, we use currency translation at query runtime. We do not select the translation type in the variable screen but use the possibility with Context menu -> Calculations and Translations -> Global Currency Translation Everything works fine,

  • Setting in-and-out points  -- is this possible?

    I set in-and-out points in the preview window by dragging the blue triangles. I would like to sample various parts of a clip, though there are only 2 triangles. 1. Is there a way to take one segment of video and establish in-and-out points for maybe

  • Berkely DB 4.6.19

    For migration purpose I need the old Berkely DB 4.6.19 It is quite sad, that a customer is forced to submit a lot of personal and business details to oracle first just to make him believe he can then download the desired product what does not work at