Purge recyclebin

Hello:
in XE when you drop a table it gets in the recyclebin:
Connect through XE's sqlplus and
iq000:XE>create table t (a number);
Table created.
iq000:XE>drop table t;
Table dropped.
iq000:XE>select object_name,original_name,operation from user_recyclebin;
OBJECT_NAME ORIGINAL_NAME OPERATION
BIN$BZdYaEalXJ7gQAB/AQAjzQ==$0 T DROP
iq000:XE>purge recyclebin;
Recyclebin purged.
iq000:XE>select object_name,original_name,operation from user_recyclebin;
no rows selected
iq000:XE>
When I try to do 'purge recyclebin' through XE's SQL -> SQL Commands I receive an ORA-00911: invalid character
Is it possible to do this from the web interface?
Thanks,
Andrea

Indeed, you are correct. Looks like a general HTMLDB issue
begin execute immediate 'purge recyclebin'; end;
can be used to work around it currently. I'll file a bug. thanks

Similar Messages

  • Error on "purge recyclebin"

    Hi,
    I am using Oracle 10g (10.2.0.2.0).
    I am having problems purging the recyclebin, when connected as dbadmin.
    When I tried to do a purge recyclebin, I was left with only 2 objects in the recyclebin, and got an error -
    SQL> purge recyclebin;
    purge recyclebin
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02449: unique/primary keys in table referenced by foreign keys
    The objects in the database are:
    SQL> select object_name, original_name, type, can_undrop, can_purge, droptime, ts_name
    from recyclebin;
    object_name original_name type can_undrop can_purge droptime ts_name
    =========================================================================================
    SYS_IL0000011599C00063$$     SYS_IL0000011599C00063$$     LOB INDEX     NO     NO     2010-10-08:09:13:34 small_tables
    SYS_LOB0000011599C00063$$     SYS_LOB0000011599C00063$$     LOB     NO     NO     2010-10-08:09:13:34 small_tables
    If I try connecting as sysdba, and purging the dba_recyclebin, it says purged -
    sqlplus as sysdba
    SQL> purge dba_recyclebin;
    DBA Recyclebin purged.
    But, I still see the objects in the recyclebin. Doing a purge tablespace gives me the same error -
    SQL> purge tablespace small_tables;
    purge tablespace small_tables
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02449: unique/primary keys in table referenced by foreign keys
    Any help would be greatly appreciated.
    Thanks.

    Use this to find the dependents,
    select owner, constraint_name,table_name,index_owner,index_name
    from dba_constraints
    where (index_owner,index_name) in (select owner,index_name from dba_indexes
    where tablespace_name='YOUR_TABLESPACE IN UPPER CASE');
    Now disable the referenced constraints and purge the tablespace.
    SQL> ALTER TABLE table_name DISABLE CONSTRAINT constraint_name;
    Thanks

  • PURGE RECYCLEBIN;  doesnt work

    hello there..
    we have oracle 10g...
    i have some triggers and tables that i have dropped without specifying them to be purged and they are now in the recyclebin.
    i am unable to empty the bin by using the command...
    PURGE RECYCLEBIN;
    i get this response -
    unknown command beginning "purge recy..." - rest of line ignored.
    help

    hi
    dear this is not a right command.
    if u want to delete complete then u use this cmd
    drop table "tablename" purge;
    that time delete table directly delete from database its not gone in recyclebin...
    purge recyclebin--its wrong command.
    Mohammadi
    Oracle DBA

  • Reclaim memory occupied by Table in recyclebin(dropped without purging )

    Hi all,
    In my oracle 11g R2 database, one table 'TEST' with 3 GB size has been dropped without purge option.
    So now its showing in recyclebin.
    Then later i issued '*PURGE RECYCLEBIN*', so that it disppeard from recyclebin view.
    But dba_segments shows the table as '[email protected]==$0' exists in the data file.
    How to remove this table from the data file , so to get back 3GB size?

    I couldn't reproduce on 11201,
    E:\Documents and Settings\aristadba>sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.1.0 Production on Tue Apr 17 12:28:01 2012
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> conn aman/aman
    Connected.
    SQL> create table test_rbin as select * from dba_objects
      2  ;
    Table created.
    SQL> select segment_name from dba_segments where lower(segment_name) like '%test_rbin%';
    SEGMENT_NAME
    TEST_RBIN
    SQL> select segment_name, owner from dba_segments where lower(segment_name) like '%test_rbin%';
    SEGMENT_NAME
    OWNER
    TEST_RBIN
    AMAN
    SQL> drop table test_rbin;
    Table dropped.
    SQL> select segment_name, owner from dba_segments where lower(segment_name) like '%test_rbin%';
    no rows selected
    SQL> show recyclebin
    ORIGINAL NAME    RECYCLEBIN NAME                OBJECT TYPE  DROP TIME
    TEST_RBIN        BIN$HxpUUT4DRVec1WanHeziaw==$0 TABLE        2012-04-17:12:29:10
    SQL> select segment_name, owner from dba_segments where segment_name like '%BIN$HxpUUT4DRVec1WanHeziaw==$0%';
    SEGMENT_NAME
    OWNER
    BIN$HxpUUT4DRVec1WanHeziaw==$0
    AMAN
    SQL> purge recyclebin
      2  ;
    Recyclebin purged.
    SQL> select segment_name, owner from dba_segments where segment_name like '%BIN$HxpUUT4DRVec1WanHeziaw==$0%';
    no rows selected
    SQL>Show us a cut/paste from sql*plus terminal that its happening actually.
    HTH
    Aman....

  • Recyclebin in oracle 10G

    I have the privileges as follows : Connect and Resources
    I dropped a few tables, and they got into the recyclebin.
    Now i am not able to do delete them!
    Is it possible for me to delete the tables starting with BIN%.....
    If yes, Please tell me a way out
    ciao
    Linux Gates

    Hi Linux Gates,
    PURGE RECYCLEBIN; -- Purges from your recyclebin
    PURGE DBA_RECYCLEBIN ; --Purges recyclebin for all objects, however this requires SYSDBA privileges.                                                                                                                                                                                                                                                                                                                                                   

  • How to delete the recyclebin data  in oracle 10g

    i create one table.then i drop the that table.this table will be kept in recyclebin in oracle10g .how to remove table permanentley in oracle 10g.
    i used drop table table name and select * from tab;it will come two tables like
    BIN$kLM/ilgxTUil64ZsNG0l7A==$0.
    how to drop table permanentley.please give me steps.

    Hello;
    Use the PURGE statement to remove a table or index from your recycle bin and release all of the space associated with the object, or to remove the entire recycle bin, or to remove part of all of a dropped tablespace from the recycle bin.
    Remove a File From Your Recycle Bin: Example
    The following statement removes the table test from the recycle bin. If more than one version of test resides in the recycle bin, Oracle Database removes the version that has been there the longest:
    PURGE TABLE test;
    To determine system-generated name of the table you want removed from your recycle bin, issue a SELECT statement on your recycle bin. Using that object name, you can remove the table by issuing a statement similar to the following statement. (The system-generated name will differ from the one shown in the example.)
    PURGE TABLE RB$$33750$TABLE$0;
    Remove the Contents of Your Recycle Bin: Example
    To remove the entire contents of your recycle bin, issue the following statement:
    PURGE RECYCLEBIN;

  • Purging tables getting stuck?

    Oracle 10.1.0.3 & 10.1.0.4 (Linux AMD64).
    I have an often occurring problem on several Oracle SE platforms - a data management PL/SQL job that among other things, create new tables and drop old tables. Yeah I know this is not the best of ideas, but without partitioning this is the only way to create and maintain a sliding window period - by creating individual tables instead of adding new partitions...
    Regularly, such a job will spin forever on a wait even called enq: RO - fast object reuse.
    Metalink and Google searches have not turned up anything much. Nor has posting about the problem here... Seems like a pretty much unknown event.
    Recently doing some stuff on an Oracle EE platform and I start to butt my head into this again.. and only when using the PURGE clause for the DROP TABLE statement. And that is exactly what those SE data management jobs do too - they drop and purge tables outside the sliding window period.
    Thus it would seem that the problem is related to the PURGE clause.
    Anyone with similar experiences or ideas as to what the underlaying problem can be? Any special disclaimers/technical issues raised via Metalink notes regarding the PURGE clause?
    Thanks.

    > I believe the RO enqueue is associated with code that tries to clear the buffer
    cache of clean blocks belonging to the object. You might find more about it with a
    search on comp.databases.oracle.server.
    Thanks Joanathan, As for comp.databases.oracle.server... I do miss the old stomping grounds but IT security here, in all their oh--so-wise and infinite wisdom, has blocked access to the whole of Usenet.
    > A strategy that may help is to remove the PURGE from the drop, and dispatch a
    job that does a "purge recyclebin" at some later time - with the hope that by the
    time the "real" drop happens there won't be any buffered blocks for that object to
    cause a problem.
    Yeah.. that will well be worth a try and is simple to implement.

  • Purge the recycbin at sysdba level

    Hi,
    When I am purging the recyclebin at sysdba level, it is not purging all the recyclebin objects i.e. purging only the sys schema objects.
    So, if i want to purge all the objects in recyclebin from all the schemas, what is the command i have to use.
    Ex: sqlplus "/as sysdba"
    SQL> select count(*) from dba_recyclebin;
    COUNT(*)
    356
    SQL> purge recyclebin;
    Recyclebin purged.
    SQL> select count(*) from dba_recyclebin;
    COUNT(*)
    356
    Thanks,
    Mahi

    you may need to use
    purge dba_recyclebin

  • Facing problem while purging

    Hi Experts,
    I just completed ONE Schema cleanup (dropped all database objects ) in my oracle 10.2.0.4 database. After Cleanup i am trying to PURGE RECYCLEBIN.
    But while purging i am facing the below error and database is going to down.
    SQL> CONN @ORCL2
    Connected.
    SQL> sho user;
    USER is "ACCOUNTINFO"
    SQL> purge recyclebin;
    purge recyclebin
    ERROR at line 1:
    ORA-00603: ORACLE server session terminated by fatal error
    After above error the database is going to down..
    SQL> CONN @ORCL2
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    SVR4 Error: 2: No such file or directory
    Please help on this issue.
    Why database is going to down without purging. What kind of error it is..

    user11175946 wrote:
    Hi Experts,
    I just completed ONE Schema cleanup (dropped all database objects ) in my oracle 10.2.0.4 database. After Cleanup i am trying to PURGE RECYCLEBIN.
    But while purging i am facing the below error and database is going to down.
    SQL> CONN @ORCL2
    Connected.
    SQL> sho user;
    USER is "ACCOUNTINFO"
    SQL> purge recyclebin;
    purge recyclebin
    ERROR at line 1:
    ORA-00603: ORACLE server session terminated by fatal error
    After above error the database is going to down..
    SQL> CONN @ORCL2
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    SVR4 Error: 2: No such file or directory
    Please help on this issue.
    Why database is going to down without purging. What kind of error it is..Lets have a look into the alert logfile ...

  • Cannot use PURGE statement

    Hello there.
    I am new to 10g and I just discovered the BIN$ tables. Doing a little research, I found out about flashback.
    Well, I tried to purge the recycle bin, and I get an error :
    $ purge recyclebin;
    SP2-0734: unknown command beginning "purge recy..." - rest of line ignored.
    FYI :
    $ select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - 64bi
    PL/SQL Release 10.1.0.3.0 - Production
    CORE 10.1.0.3.0 Production
    TNS for HPUX: Version 10.1.0.3.0 - Production
    NLSRTL Version 10.1.0.3.0 - Production
    Any help would be appreciated.

    Time to download a new Oracle client.
    In the meantime I'm guessing
    exec execute immediate 'purge recyclebin'should work.

  • How to delete all data in all tables in one time ?!

    1 CREATE OR REPLACE PROCEDURE delete_all_data
    2 IS
    3 v_statement VARCHAR2 (200);
    4 BEGIN
    5 FOR i IN (SELECT *
    6 FROM user_tables)
    7 LOOP
    8 v_statement :=
    9 'delete table ' || i.table_name ;
    10 EXECUTE IMMEDIATE v_statement;
    11 END LOOP;
    12 commit;
    13* END;
    SQL> /
    Procedure created.
    SQL> exec delete_all_data
    BEGIN delete_all_data; END;
    ERROR at line 1:
    ORA-00903: invalid table name
    ORA-06512: at "DE2.DELETE_ALL_DATA", line 10
    ORA-06512: at line 1
    I made the previous code , but it's didn't work with me .... any help for this problem please ?!
    I'm just reminder ..... all what I need ,that delete all data in all tables in one time only .
    I'm waiting for the answer ..... and thanks in advance

    create or replace
    FUNCTION TRUNC_SCHEMA RETURN NUMBER AS
    CURSOR select_table IS SELECT TABLE_NAME AS TNAME FROM USER_TABLES ORDER BY 1;
    sTableName Varchar2(128);
    sUser Varchar2(128);
    sConstraintName Varchar2(128);
    plsql_block Varchar2(512);
    BEGIN
    SELECT USER INTO sUser FROM DUAL;
    IF ((sUser='SYSTEM') OR (sUser='SYS')) THEN
    RETURN 1;
    END IF;
    EXECUTE IMMEDIATE 'PURGE RECYCLEBIN';
    -- DISABLE table's constraints
    FOR C1 IN (select CONSTRAINT_NAME, TABLE_NAME from user_constraints where STATUS = 'ENABLED' AND CONSTRAINT_TYPE in ('P','R') ORDER BY R_CONSTRAINT_NAME) LOOP
    sConstraintName := C1.CONSTRAINT_NAME;
    sTableName := C1.TABLE_NAME;
    plsql_block := 'ALTER TABLE ' || sTableName || ' DISABLE CONSTRAINT ' || sConstraintName;
    EXECUTE IMMEDIATE plsql_block ;
    END LOOP;
    FOR D IN select_table LOOP
    --get table name
    sTableName := D.TNAME;
    -- clear table
    plsql_block := 'TRUNCATE TABLE ' || sTableName;
    EXECUTE IMMEDIATE plsql_block ;
    END LOOP;
    -- ENABLE table's constraints
    FOR C2 IN (select CONSTRAINT_NAME, TABLE_NAME from user_constraints where STATUS = 'DISABLED' AND CONSTRAINT_TYPE in ('P','R') ORDER BY R_CONSTRAINT_NAME desc) LOOP
    sConstraintName := C2.CONSTRAINT_NAME;
    sTableName := C2.TABLE_NAME;
    plsql_block := 'ALTER TABLE ' || sTableName || ' ENABLE CONSTRAINT ' || sConstraintName;
    EXECUTE IMMEDIATE plsql_block ;
    END LOOP;
    RETURN 0;
    EXCEPTION WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE('ERROR: ' || SQLERRM);
    RETURN 1;
    END TRUNC_SCHEMA;
    /

  • ORA-1779 when updating a view

    Hi and thanks in advance !
    i am facing a critical situation.
    i have two schema & both are same!
    the problem which i am facing is during updating a view of one i am facing above error while the same DML is issuing againt that view in other schema and that works fine.
    what's the reason..
    The major difference between two schema's is i hav different live and test database i migrate my access database to Oracle test database # 1.here i created a new user name deals . ok
    i hav done same migration in my another database but a little difference here user deals is already available here and tables and views are also available i drop all the object but forget to purge recyclebin. now whenever i try to issue DML at this schema i am facing above error while the same tables same data and same view is available in above databae where my update statement executed properly. one more thing i like to add here i hav some unwanted trigger 'BIN$##$$%##$# bla bla bla' on different table. i haven't created that .
    here is the view for your kind perusal
    CREATE OR REPLACE VIEW QRYREUTER AS
    SELECT FXdeals.deal_no,
    cparty.name,
    cparty.city,
    FXdeals.brokbill,
    FXdeals.deal_date,
    FXdeals.mode_id
    FROM FXDeals
    JOIN cparty
    ON FXdeals.cpcode = cparty.cpcode
    WHERE ( ( (FXdeals.mode_id) = 3 ) )
    Message was edited by:
    Fiz Dosani

    but i have sample scenario in other schema which replica of this schema so why i haven't got this error there
    one more interesting thing when i query select * from user_updateable_columns where table name ='ABC' in Schema # 1 it return i can modify some columns.
    but when issue the data dictionary view in schema # 2, where i was facing ORA-1779 , select * from user_updateable_columns where table name ='ABC' in Schema # 2 it return i can not modify any columns.
    Tables name are same in both schema.
    Data same in both schema.
    Constraint Same in both schema.
    Indexes same in both schema.
    why facing error in one schema not in other.
    one more interesting thing, i had faced questionable object error when importing DMP into schema # 2.

  • Jdeveloper 11g R2 problem when publishing PL\SQL Web Service

    Hi Guys,
    I have been banging my head against the wall for the past few days trying to publish pl\sql package as a web service on a weblogic 10.3 but I keep running into the same problem.
    PL\SQL Package Source below
    create type dept_type as object
    (deptno NUMBER,
    dname VARCHAR2(50),
    loc varchar2(13),
    cr_date date)
    create type dept_list_table is table of dept_type
    purge recyclebin;
    create or replace package ws_package as
    procedure test_dept_table (pout out dept_list_table);
    end ws_package;
    show errors;
    create or replace package body ws_package as
    procedure test_dept_table (pout out dept_list_table) is
    all_depts dept_list_table := dept_list_table();
    dRecType dept_type;
    i number := 0;
    begin
    -- iterate through all depts
    for r_list in (select * from dept) loop
    i := i + 1;
    dRecType := dept_type(null, null, null, null);
    dRecType.deptno := r_list.deptno;
    dRecType.dname := r_list.dname;
    dRecType.loc := r_list.loc_id;
    dRecType.cr_date := sysdate;
    pout.extend;
    pout(i) := dRecType;
    end loop;
    end test_dept_table;
    end ws_package;
    show errors;
    I go and create PL\SQL Web Service using default settings in Jdeveloper 11g R2 but when I try and test this page I get the following response:
    Failed to invoke end component servqa.MyWebService1User (POJO), operation=testDeptTable -> Failed to invoke method -> java.sql.SQLException: ORA-06550: line 1, column 13: PLS-00306: wrong number or types of arguments in call to 'TEST_DEPT_TABLE' ORA-06550: line 1, column 7: PL/SQL: Statement ignored
    Anyone have any idea what the problem may be? Your help would be much appreceated!
    Bojan

    Hi Frank,
    I think the problem is in any procedure that has a COMPLEX TYPE as OUT parameter. So even if you strip down the procedure to just do nothing I still get the error as described in my top post. Passing complex parameters as IN parameter work fine its only when I have procedure with complex out when it errors. I also tried function that returns object parameter and that works fine too so not sure why this doesnt?
    create or replace package body ws_package as
    procedure test_dept_table (pout out dept_list_table) is
    begin
    -- iterate through all depts
    for r_list in (select * from dept) loop
    i := i + 1;
    end loop;
    end test_dept_table;
    end ws_package;
    Not sure if I am meant to do anything extra before I generate Web Service using JDeveloper if my procedure has got PL\SQL types as OUT parameters but as far as I know JDeveloper should do all the type conversions for you??
    Thanks
    Bojan

  • Dropping a table

    If dropping a table without the PURGE clause sends table definition, indexes and triggers to the recycle bin leaving the table data inaccessible then where exactly is that table data? Is it just unstructured data floating around in the tablespace sucking up the user's quota?
    Matt

    Once a table is dropped, if the 'PURGE' clause was not declared, it will remain there as a ghost object, actually consuming space.
    SQL> select * from tab;
    TNAME                          TABTYPE  CLUSTERID
    CREATE$JAVA$LOB$TABLE          TABLE
    JAVA$OPTIONS                   TABLE
    EMP                            TABLE
    SQL> drop table emp;
    SQL> select * from tab;
    TNAME                          TABTYPE  CLUSTERID
    CREATE$JAVA$LOB$TABLE          TABLE
    JAVA$OPTIONS                   TABLE
    BIN$aCRWNoJ2TE+g+lQ/XJutWg==$0 TABLEThere you can see the EMP table turned into a Recycle Bin object. This will remain there until you issue the command:
    SQL> PURGE RECYCLEBIN;
    This will definitely and permanently purge the object. What it really happens in 10g R1 and above, is that the recycle bin feature is enabled by default, but you can change this behavior at either session or instance level.
    ~ Madrid
    http://hrivera99.blogspot.com

  • A potential bug on the new feature (12c) of Identity Column?

    Hi,
    I am testing a newly introduced feature of Identity Column in Oracle 12c. I used EclipseLink (JPA) to access the database.
    I may have found a potential bug with this feature. I am getting "ORA-30667: cannot drop NOT NULL constraint on a DEFAULT ON NULL column" when I try to insert a row. My code doesn't explicitly drop "NOT NULL" constraint.
    When I delete all the tables under the user and re-define the user and the tables, the error disappear.
    Here are the details:
    Error:
    DatabaseException Internal Exception: java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1 ORA-30667: cannot drop NOT NULL constraint on a DEFAULT ON NULL column Error Code: 604 Call: INSERT INTO MyTable (ID, SOMEID, SOMEDATE) VALUES (?, ?, ?) bind => [null, 100100147, 2013-11-29 Query: InsertObjectQuery(cus.entity.MyTable@1a9ea5b)
    Table definition:
    CREATE TABLE MyTable (id NUMBER GENERATED BY DEFAULT ON NULL AS IDENTITY PRIMARY KEY,
          someId INT NOT NULL,
          someDate DATE NOT NULL,
          PARTITION BY range(someDate)
          interval(numtodsinterval(1,'year'))
          SUBPARTITION BY HASH ( someId)
          SUBPARTITIONS 20
           PARTITION p0 VALUES LESS THAN (TO_DATE('01-12-2013', 'DD-MM-YYYY'))
    Could anyone tell me if there might be a bug associated with the new feature or if there was something wrong with my code?
    I would be appreciated if anyone can help.

    "here is a reproducible test case in the SCOTT schema - if it reproduces for you open an SR with Oracle"
    Yes. I have just followed the instruction you posted and managed to re-produce the same error I reported earlier. Here are the details of the script output following your posted instruction:
    table MYTABLE dropped.
    purge recyclebin
    table MYTABLE created.
    1 rows inserted.
    table MYTABLE dropped.
    OBJECT_NAME                                                                                                                      ORIGINAL_NAME                                                                                                                    OPERATION TYPE                      TS_NAME                        CREATETIME          DROPTIME               DROPSCN PARTITION_NAME                                                                                                                   CAN_UNDROP CAN_PURGE    RELATED BASE_OBJECT PURGE_OBJECT      SPACE
    BIN$6NCDTxmXTb2QBpUWF0kGqw==$0                                                                                                   SYS_C0010655                                                                                                                     DROP      INDEX                     USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030808                                                                                                                                  NO         YES            98789       98789        98812          8
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:30:56 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98790       98789        98789          0
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:31:37 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98833       98789        98789       1024
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:31:37 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98833       98789        98789       1024
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:31:37 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98833       98789        98789       1024
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:31:37 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98833       98789        98789       1024
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:31:37 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98833       98789        98789       1024
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:31:37 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98833       98789        98789       1024
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:31:37 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98833       98789        98789       1024
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:31:37 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98833       98789        98789       1024
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:31:37 2013-12-01:10:32:17    4030812                                                                                                                                  NO         NO             98833       98789        98789       1024
    BIN$Ka0sgN7XRBeCsjyXTQ76cA==$0                                                                                                   MYTABLE                                                                                                                          DROP      Table Composite Partition USERS                          2013-12-01:10:31:37 2013-12-01:10:32:17    4030812                                                                                                                          &

Maybe you are looking for

  • Adding Image to Header - Pages 5.0

    Hi, I need to add an image to the header in Pages 5.0 (newly updated!) and can't seem to do it!!!! How do I do this, is it even possible? I have tried to Copy Paste, no use. Any help is appreciated, the new version of Pages is quite frankly, annoying

  • How to convert Purchase Order to Sales Order in the Target system of Vendor

    Hi all,              My sender system and receiver system both are ECC6.00 . We are not using any Xi/PI or EDI tool ., but using ALE to tranfer purchase order to the Vendor System . The PO IDoc is getting tranfered to Target System, but the Correspon

  • Problem installing StorADE 2.4 in Oracle Java Web Console 3.1 with CAM 6.6.

    Hi Guys, I am having problem installing StorADE 2.4 in Oracle Java Web Console 3.1 with CAM 6.6. I am sure I have seen them together in Web Console but doesn't seems to be working... I am getting all sort of javv exception errors... Also the installa

  • Need to stop processing at portal

    is it possible through workflow to stop processing further from portal and through message at portal itself. examepl, wen emp applying leave, wen he doesnt has sufficient balance to apply leave, is it possible to throw error message at portal and blo

  • Has anyone noticed that the Otterbox Defender case for the Droid Maxx is not manufactured correctly?

    After ordering 2 cases from Otterbox directly, and having to send both of them back, I called a Verizon store and had them compare the Otterbox Defender case for the Droid Maxx to the actual phone.  They were surprised to note that the hole for the c