ALL_TAB_COLUMNS table name showing with fancy characters

Dear All
when i execure followowing query and got a table name as BIN$eeHkLT/tL+PgRAAhKBTEWA==$0
select * from all_tab_columns
where column_name like '%APPLICATIONORDER%'
Please let me know what is this and how to select the data from it
thanking you

its recycle bin ; please refer to oracle documentation to understand this feature;
see below from oracle documentaion : (http://www.oracle.com/technology/pub/articles/10gdba/week5_10gdba.html)
Managing the Recycle Bin
If the tables are not really dropped in this process--therefore not releasing the tablespace--what happens when the dropped objects take up all of that space?
The answer is simple: that situation does not even arise. When a tablespace is completely filled up with recycle bin data such that the datafiles have to extend to make room for more data, the tablespace is said to be under "space pressure." In that scenario, objects are automatically purged from the recycle bin in a first-in-first-out manner. The dependent objects (such as indexes) are removed before a table is removed.
Similarly, space pressure can occur with user quotas as defined for a particular tablespace. The tablespace may have enough free space, but the user may be running out of his or her allotted portion of it. In such situations, Oracle automatically purges objects belonging to that user in that tablespace.
In addition, there are several ways you can manually control the recycle bin. If you want to purge the specific table named TEST from the recycle bin after its drop, you could issue
PURGE TABLE TEST;
or using its recycle bin name:
PURGE TABLE "BIN$04LhcpndanfgMAAAAAANPw==$0";
This command will remove table TEST and all dependent objects such as indexes, constraints, and so on from the recycle bin, saving some space. If, however, you want to permanently drop an index from the recycle bin, you can do so using:
purge index in_test1_01;
which will remove the index only, leaving the copy of the table in the recycle bin.
Sometimes it might be useful to purge at a higher level. For instance, you may want to purge all the objects in recycle bin in a tablespace USERS. You would issue:
PURGE TABLESPACE USERS;
You may want to purge only the recycle bin for a particular user in that tablespace. This approach could come handy in data warehouse-type environments where users create and drop many transient tables. You could modify the command above to limit the purge to a specific user only:
PURGE TABLESPACE USERS USER SCOTT;
A user such as SCOTT would clear his own recycle bin with
PURGE RECYCLEBIN;
You as a DBA can purge all the objects in any tablespace using
PURGE DBA_RECYCLEBIN;
As you can see, the recycle bin can be managed in a variety of different ways to meet your specific needs.

Similar Messages

  • Need to know schema name and table name associated with a column-URGENT

    Hi folks,
    I need to know the schema name and the table name associated with a column. Though jdbc has the api to getTableName and getSchemaName, some database vendor like oracle does return empty upon call of mentioned methods. I found that oracle driver does not support that ……
    Can any one give me the solution? It is urgent. Or do you suggest any third pary jdbc driver which can provide those?
    Thanks
    Angelina

    Angelina,
    Your question has been discussed several times previously in this forum. Search this forum's archives for "getTableName". Oracle JDBC driver does not implement this (because "it is not feasible" -- according to Oracle).
    First of all, I would suggest that you could probably change your application's logic so that you would not need this functionality (but I guess that is not feasible either, right :-)
    Alternatively, you could try querying the Oracle database data dictionary.
    Good Luck,
    Avi.

  • MTL Table name mapped with IC_ITEM_MST_B in oracle apps r12

    Hi Experts,
    Can anyone suggest me the MTL table name mapped with IC_ITEM_MST_B table in oracle apps with all the columns.
    thanks,

    Response to: I don't see this option "Periodic Sequences in Format" under "Payment Instruction Format" table. I can see only Payment File Information.
    You are maybe missing this (from Implementation Guide):
    "Note: If no payment system is selected or entered for the Payment
    System field in the Payment System subtab of the Update Payment
    Process Profile page, then the Periodic Sequences in Format region is
    not displayed."
    The payment system must be selected at the time you create the profile. It does not seem to allow adding afterwards.
    Edited by: user11974306 on Jan 25, 2013 1:49 PM
    Edited by: user11974306 on Jan 25, 2013 1:49 PM

  • Table Name Substitution with a varaible

    I have the following procedure....
    LOOP
    FETCH table_cur INTO table_rec;
    EXIT WHEN NOT table_cur%FOUND;
    TableID := table_rec.TableName;
    Office := table_rec.OfficeNum;
    Client := table_rec.CliNum;
    IF Office = 'Y' AND Client = 'Y' Then
    UPDATE TableID
    SET OfficeNum = (SELECT OfficeNum
    FROM Comd02a
    WHERE Comd02a.CliNum = TableID.CliNum
    AND Comd02a.LoanNum = TableID.LoanNum);
    END IF;
    END LOOP;
    CLOSE table_cur;
    TableID is a vaiable and I keep coming back with an error... How
    do I make a reference to a table through a variable...
    Thanks in Advance
    Sally
    null

    Brian Lelek (guest) wrote:
    : Rashmi Rungta (guest) wrote:
    : : Hi,
    : : You cannot make a direct reference to a table name thru a
    : : variable. You have to use dynamic sql.
    : : Hope it helps. Let me know if you need further information on
    : how
    : : to use dynamic sql.
    : : Rashmi
    : : Sally (guest) wrote:
    : : : I have the following procedure....
    : : : LOOP
    : : : FETCH table_cur INTO table_rec;
    : : : EXIT WHEN NOT table_cur%FOUND;
    : : : TableID := table_rec.TableName;
    : : : Office := table_rec.OfficeNum;
    : : : Client := table_rec.CliNum;
    : : : IF Office = 'Y' AND Client = 'Y' Then
    : : : UPDATE TableID
    : : : SET OfficeNum = (SELECT OfficeNum
    : : : FROM
    : Comd02a
    : : : WHERE Comd02a.CliNum =
    : TableID.CliNum
    : : : AND Comd02a.LoanNum =
    : : TableID.LoanNum);
    : : : END IF;
    : : : END LOOP;
    : : : CLOSE table_cur;
    : : : TableID is a vaiable and I keep coming back with an
    error...
    : : How
    : : : do I make a reference to a table through a variable...
    : : : Thanks in Advance
    : : : Sally
    : The previous response is correct. You must use dynamic SQL.
    : With dynamic SQL, you create a string in a varchar field that
    : contains the SQL statement. Then you pass that string to
    Oracle
    : for execution. I think that orange and white book has a good
    : explanation of dynamic SQL. My copy of the book is not here,
    : but I can look it up in a few days if you are still having
    : trouble.
    : By the way, you may want to consider using a "cursor for
    loop".
    : This code is more simple because you don't need and OPEN,
    FETCH,
    : EXIT, or CLOSE. See below:
    : FOR table_rec IN table_cur
    : LOOP
    : END LOOP;
    : Brian
    Hello,
    Yes, you need to use dynamic SQL. If you are using oracle 7 or
    8.0.x, you can use the bundled package dbms_sql to do the dynamic
    SQL. If you are using 8i (8.1.5), the PL/SQL is improved to do
    the dynamic SQL directly. You can now do for example:
    begin
    execute immediate 'update '

  • Table names for with holding tax

    Hi all,
    please can any body tellme  few  table names  for withholding tax
    thanks

    hii...
    you can use...
    A399                           Withholding tax code - country-specific
    others are
    /CCEE/FISISTGRD                Reasons for Reversal enabling to change t
    /CCEE/SIFICUSTPR               Mapping table for customer procedure numb
    A399                           Withholding tax code - country-specific
    BSIUDTT                        HR-US: BSI test data (tax record)
    BTXEMPT                        BSI: Employee tax results
    BTXERES                        BSI: Employee/Employer tax
    CIMSYN                         Syntax Description for Extensions
    COMC_R3_FIELDS                 Assignment of R/3 material master fields
    CRMRDTRMSG                     Check Results Management: Texts of Messag
    DFKKARREPCONTST                ARGENTINA: Legal report sales tax control
    EDISYN                         Syntax Description for Extended Basic Typ
    EDSYN                          IDoc syntax after 3.0
    ETXDCH                         External tax document: header info
    ETXDCI                         External tax document: line item info
    ETXDCJ                         Ext. tax document: tax rates and amounts
    regards

  • Table name ? with query name , variable name and variant .

    Hi All,
    Is there any single table with fields as query name , variable name and variant ?
    or any table which i can build a view to get these fields.
    or any other way ?? to get this fields in single table
    Thanks,
    Ak

    Hi,
    first use the proper heading for a question.
    you want the query all details means technical name, variable and variable type use RSRTQ
    it will give total information of query.
    Bex related tables
    RSZELTDIR ----
    Directory of the reporting component elements
    RSZELTTXT ----
    Texts of reporting component elements
    RSZELTXREF  ---
    Directory of query element references .
    Thanks,
    Phani.

  • Table Name Substitution with a variable

    I have the following procedure....
    LOOP
    FETCH table_cur INTO table_rec;
    EXIT WHEN NOT table_cur%FOUND;
    TableID := table_rec.TableName;
    Office := table_rec.OfficeNum;
    Client := table_rec.CliNum;
    IF Office = 'Y' AND Client = 'Y' Then
    UPDATE TableID
    SET OfficeNum = (SELECT OfficeNum
    FROM Comd02a
    WHERE Comd02a.CliNum = TableID.CliNum
    AND Comd02a.LoanNum = TableID.LoanNum);
    END IF;
    END LOOP;
    CLOSE table_cur;
    TableID is a vaiable and I keep coming back with an error... How
    do I make a reference to a table through a variable...
    Thanks in Advance
    Sally
    null

    Hi Sally,
    The way this is usually handled in Oracle is to use the DBMS_SQL
    package provided with the database to run Dynamic SQL, although
    I hear that Oracle 8.1.5 (8i) supports Dynamic SQL without the
    use of the DBMS_SQL package. I can only personally tell you
    that DBMS_SQL has worked like a charm for me on several
    occasions. You'll find reference to this package in several
    places, but the best place for explanation is the Oracle Press
    book: Oracle PL/SQL Programming.
    Hope that helps,
    Rob
    Sally (guest) wrote:
    : I have the following procedure....
    : LOOP
    : FETCH table_cur INTO table_rec;
    : EXIT WHEN NOT table_cur%FOUND;
    : TableID := table_rec.TableName;
    : Office := table_rec.OfficeNum;
    : Client := table_rec.CliNum;
    : IF Office = 'Y' AND Client = 'Y' Then
    : UPDATE TableID
    : SET OfficeNum = (SELECT OfficeNum
    : FROM
    Comd02a
    : WHERE Comd02a.CliNum = TableID.CliNum
    : AND Comd02a.LoanNum =
    TableID.LoanNum);
    : END IF;
    : END LOOP;
    : CLOSE table_cur;
    : TableID is a vaiable and I keep coming back with an error...
    How
    : do I make a reference to a table through a variable...
    : Thanks in Advance
    : Sally
    null

  • Web pages are partially showing with graphic characters

    is as simple as that, unrecognized characters at certain areas of a website, not just one, examples
    http://www.josephprince.org/Resources_Current_Broadcast.asp?active=resources

    hello, the behaviour you have described might be the case when you have enabled a high contrast theme in your windows control panel - please switch to another theme...

  • Table names in generated stored procs are qualified with sa schema name

    I am using OMW 9.2.0.1.2 with the 9.2.0.1.3 SQL Serevr plugin to help with a SQL Server 7 to Oracle 9.2.0.1 migration on NT.
    As is common with SQL Server databases, the dbo is sa. I don't want my Oracle schema to be called sa. I have succesfully gotten around this by renaming the sa user in the Oracle model in OMW.
    However, the stored procedure code that OMW generates has table names qualified with sa as the schema (the tables names in the original T/SQL procs were not qualified).
    How can I stop OMW from generating table names qualified with sa?
    Thanks.

    Hi,
    this is a bug in the OMWB. As a workaround, you can generate the migration scripts (see reference guide and user guide for more information) from the OMWB Oracle Model and then edit these scripts to ensure that the 'sa' prefix does not appear in the text of the stored procedures. Then use these scripts to generate the schema in your database.
    An alternative is to migrate the stored procedures, schema and data over to the Oracle database using OMWB and then open each procedure in Enterprise Manager, remove the references to the 'sa' prefix and re-compile the procedure.
    I will keep you updated on the release this fix will appear in.
    I hope this helps,
    Tom.

  • Is it possible to change Overridden Qualified Table Name in code?

    Hi,
    Environment: Crystal Reports XI R2, 2008, Sql Server 2005
    I had about 1000 reports to change. Several changes are the standard, so i had created several tools that i use to make that change in all reports.
    However i can't find a way to change Overridden Qualified Table Name and remove the Catalog and Owner information, so it seems that the only way is using CR editor and make these changes one by one... not a good idea!
    Does anyone managed to do this???
    Thanks,
    Carlos Crespo

    Hi,
    <P>Thanks for your input.</P>
    <P>I use CR in two ways:<BR>
    a) to develop reports to use in our projects - In this case we don't have major issues with this, and we chance the location of the database in code at runtime;<BR>
    b) to develop reports to use in ERP softwares from third parties - and here we are having some issues - not always but some times.<BR>
    We know that they change the location of the DB in code also (no specific info however).<BR>
    <P>An example:<P>
    We change a report on my development PC, against a DB called TEST;<BR>
    We send the report to the customer, who runs it on its system, trying to read data from a db XYZ;<BR>
    If the customer also has a TEST db, in some reports the system reads some tables from XYZ, but others he gets the info from TEST db. In one example our customer has an invoice where all data was from the production DB, except the COUNTRY table that was read from a copy of the TEST db. After TEST was removed, the data was read from the production DB....<BR><BR>
    And to get you an idea: we're talking about hundreds of customers - some of them have 600 SQL DBs in the same server (small Dbs, around 70/500 MB in size) - so we can only hope that the user doesn't create a DB with the same name we used to develop the report...<BR><BR>
    And what i don't understand is WHY we can define Overridden Qualified Table Name  in same tables, and not in others.<BR><BR>
    Example:<BR><BR>
    One of the reports has 6 sub-reports. <BR>
    I can define Overridden Qualified Table Name  in the main report (except for a View), and in 2 of the subreports - but not in the other 4...<BR>
    The zero in front of the table name shows  a table where Overridden Qualified Table Name has been defined, and the original Catalog and Owner was removed - the 2 shows a table where Overridden Qualified Table Name has been defined, but the original catalog (PRITESTEDOC75) and owner (dbo) remains.<BR><BR>
    I even tried to export the sub-reports, change this info in the sub-report, and then import it again (a suggestion from Business Object support), but it doesn't work...<BR><BR>
    Main Report:<BR>
    Artigo     0     <BR>     
    CabecDoc     0     <BR>     
    LinhasDoc     0     <BR>     
    ModosExp     0          <BR>
    Clientes     0          <BR>
    CondPag     0          <BR>
    DocumentosVenda     0     <BR>     
    Moedas     0          <BR>
    MoradasAlternativasClientes     0     <BR>     
    OutrosTerceiros     0<BR>          
    ArtigoIdioma     0          <BR>
    Paises     0          <BR>
    ArtigoLote     0     <BR>     
    TDU_CC_INFODOCVND     0     <BR>     
    Clientes_Fac     0     <BR>     
    Paises_Fac     0          <BR>
    V_Entidades     2     PRITESTEDOC75     dbo        (V_Entidades is a View, not a Table)<BR><BR>
    Sub-Report 1:<BR>
    GCP_VND_CalculaTotaisDocumento     2     PRITESTEDOC75     dbo (GCP_VND_CalculaTotaisDocumento is a SP)<BR><BR>
    Sub-Report 2:<BR>
    CnfTabLigCBL     2     PRITESTEDOC75     dbo<BR><BR>
    Sub-Report 3:<BR>
    LinhasNumSerie     2     PRITESTEDOC75     dbo<BR><BR>
    Sub-Report 4:<BR>
    ResumoRetencao     0          <BR>
    Historico     0          <BR>
    OutrosTerceiros     0          <BR>
    EntidadesPublicas     0          <BR>
    Clientes     0          <BR><BR>
    Sub-Report 5:<BR>
    1 ResumoRetencao     0     <BR>     
    2 Historico     0          <BR>
    3 OutrosTerceiros     0          <BR>
    4 EntidadesPublicas     0     <BR>     
    5 Clientes     0     <BR><BR>
    Sub-Report 6:     <BR>
    1 ResumoIva     2     PRITESTEDOC75     dbo<BR>
    2 CabecDoc     2     PRITESTEDOC75     dbo<BR>
    3 Iva     2     PRITESTEDOC75     dbo<BR><BR>
    Best Regards,<BR><BR>
    Carlos Crespo<BR>

  • 2005 PL07 User define table name size changed?

    Hi everyone,
    I just upgrade Add-on from SBO 2004 to SBO 2005 PL07, there is a problem, when a DBDatasource bind to an User difine table, if the UDT name length <=7, the code runs good under, but under 2005 PL07, when UDT name Length >7, an error "Data source - Invalid table name" shows when code runs to the statement "oDBDataSource.Query(oConditions)".
    who knows what's the reason of this problem, is this by the UDT name longer than SBO 2005 PL07 SDK constraint or other reasons.
    Thanks in advance!
    Kathy

    Hi Kathy,
    I haven't experienced this error, but it looks like Barend has. I am not sure if he has solved his problem, but it seems to be the same. His table name is also longer than 7 characters. Look at this post posted a couple of days ago:
    SBO 2005 DBDatasource
    Hope it helps,
    Adele

  • MySQL - In a Query, Using a Variable as a Table Name

    Hello,
    The code I have attached works. However, I would like to
    replace the table name "tractors" with the variable "$result". How
    do I do this? (It doesn't work if I just type "$result" where
    "tractors" is.)
    Thanks,
    John

    ArizonaJohn wrote:
    > The code I have attached works. However, I would like to
    replace the table
    > name "tractors" with the variable "$result". How do I do
    this?
    You can't. In the code you have given $result is a MySQL
    database result
    resource. You need to extract the actual value from the
    result resource
    in the same way as you have done by using
    mysql_fetch_array().
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS4",
    "PHP Solutions" & "PHP Object-Oriented Solutions"
    http://foundationphp.com/

  • Table name having relationship between Business area and Profit Center

    Hi guys,
    Can you tell me the table name showing the relationship between Business area and Profit Center in fb60  transaction.
    thnx
    hema

    HI.
    BSEE u2013GSBER  Business area.
    BSID-PRCTR Profit center
    Regards.
    jay

  • Need to know schema and table name

    Hi folks,
    I need to know the schema name and the table name associated with a column. Though jdbc has the api to getTableName and getSchemaName, some database vendor like oracle does return empty upon call of mentioned methods. I found that oracle driver does not support that ��
    Can any one give me the solution? It is urgent. Or do you suggest any third pary jdbc driver which can provide those?
    Thanks
    Angelina

    hi,
    does not work for me.
    more pls
    --thanks                                                                                                                                                                                                                   

  • JPA and table names

    Hello, are there any possibilities to use the same table names in different SAP JPA EJB? For example, the first project has entity with a name History and the table name is TMP_HISTORY. The second one has also the entity History with a table name TMP_HISTORY with other columns. In such case it's impossible to deploy the second one dictionary.

    Hi Kirill,
    if you use the System Data Source, it is obvious that there is the same table and you cannot deploy the 2nd application.
    If you use two different data sources and set the datasource type to "native" or "vendor" in NetWeaver Administrator, it should work.
    Regards
    Rolf

Maybe you are looking for

  • Problem with 16 its images files

    Hello every one,  I am trying to work with 16 bits image and found vision does not support 16 bits image and I have convert the images to 64RGB. I have converted the images into 64RGB but as my computer screen is 8 bits therefore i can only see a bla

  • Composite Primary Key

    Hi, I have few tables which had primary key on one column A, I made it composite primary key by adding one more column B at 2nd position. I made this change in all the tables. When I ran few SQLs to check the performance I found that explain plan sho

  • Shuffle option went missing after downloading latest IOS software.   IPAD says I have latest, 5.1.1

    Downloaded what I thought was the latest version of IOS. Everything works, but the shuffle feature for my entire music collection.  Use to show up at the top of the SONG category.   IT'S GONE?

  • Safari 4.0.3 keeps quitting

    I've noticed that Safari 4.0.3 keeps quitting lately. On it's own and especially if I try to upload pics to my Facebook or Photobucket pages. Also, the pages stall with the revolving ball. Anyone else suffer this too?

  • Magenta ink not functioning

    I have an ip4820 and I am having difficulty with Magenta. The cartridge will not print red at all. When I deep clean the nozzle, I can get the "nozzle check" to print the proper pattern, including red. I might also get the ip4820 to print one quick p