Problem Dropping Objects in Oracle XE using PL/SQL Developer

Hi all,
I am using PL/SQL Developer to access Oracle XE. I created some tables and later dropped them. But I still see some objects in the PL/SQL Developer Browser under the Tables section.
Below is the name of the objects in I see:
bin$fj7zj7y9rhqujmwrz1zmtg==$0,
bin$frxjknkot4cwtkexm4wtca==$0,
bin$q2m8wls+s72szfufb+mnzw==$0,
bin$syrcyj1bsqcelpfsodudrw==$0,
bin$tjt8ipk6ras8qtx0zvn+6w==$0,
bin$vc6dzazorg6zwemticqdha==$0,
bin$xfrxhcb3s5ev8wkjfc/3vg==$0,
bin$oyrdsi+us+yhhoprzdingq==$0,
bin$vtk7saqqtecbhmdwpnp1bg==$0,
bin$x1hhdhy+trmfponyldjwdw==$0
When I tried dropping these objects, I get ORA - 00933: SQL Command not properly ended. Error deleting bin$fj7zj7y9rhqujmwrz1zmtg==$0
How do I resolve this problem? And then drop all those objects listed above.
Is it possible to drop those objects at all?
Thanks in advance.
Sam.

There is no problem sofar. The objects you see are dropped objects ( if you drop it, oracle silently rename the object but preserve it as long you have sufficient space ).
You shouldn't drop them if you don't have issue with free space - they enable you to get back accidentally dropped table without to have restore the backup ( flashback table). If you are annoyed by displaying it in PL SQL Developer, you can just add a filter to not show them to you ( all objects like 'bin%' ) or you can update to newrer version of PL SQL Developer ( i've 7.0.0.1050 and it is displayed properly, all dropped objects can be found under recyclebin folder ). Finally , if you want purge them, use the 'purge recyclebin' command.
Best regards
Maxim

Similar Messages

  • Cannot login to XE using PL/SQL Developer Tool

    Hi,
    I have problem using PL/SQL Developer with XE. Whenever I try to use PL/SQL Developer to connect to the XE, I am getting this error message from PL/SQL Developer:
    Initialization error: SQL*Net not properly installed.
    OracleHomeKey: SOFTWARE\ORACLE
    OracleHomeDir:
    Both the PL/SQL Developer and XE are installed on a same laptop which is having XP with SP2 and its firewall disabled.
    My "sqlnet.ora" reads the following:
    # This file is actually generated by netca. But if customers choose to
    # install "Software Only", this file wont exist and without the native
    # authentication, they will not be able to connect to the database on NT.
    SQLNET.AUTHENTICATION_SERVICES = (NTS).
    Any help would be much appreciated.
    Regards,
    Abdiqadir.

    Had the same problem myself. I tried this and it worked. Mind you, BOTH Oracle XE and PL/SQL Developer have to be on same machines. I have WinXPSP2. Change the installation paths as per your settings in the examples below.
    In PL/SQL Developer:
    - Tools-->Preferences-->Options Tab-->
    ---- Oracle Home (empty is autodected): enter this value: C:\oraclexe\app\oracle\product\10.2.0\server
    ---- OCI Library (empty is autodected): enter this value:
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN\ociw32.dll
    That's it. It worked for me.

  • How to know the ORACLE version from PL/SQL developer

    Guys,
    I wanted to know the version of ORACLE that i am using currently. How should i get it ? is there any functions available ?
    Note: I am using PL/SQL Developer tool.

    select * from v$version

  • Scheduler for Export Table utility using PL/SQL developer Tool

    Hi,
    Is there any way by which i can schedule manually export tables from a user using PL/SQL developer tool 'Export Tables' utility.
    As i have lot many schema a for each i have to manually exporting all tables using this utility.
    Please suggest.
    Thanks,

    Hello,
    do you mean PL/SQL developer from Allroundautomation? Then this is the wrong forum.
    Do you mean the export feature from SQL Developer, that you can invoke on right click in a result pane? You cannot automate it.
    But if you tell us more about your requirements we might be able to find a good solution for you. Yet this is a question for the {forum:id=75} forum. There is a FAQ {message:id=9360007}. This combined with dbms_scheduler or a scheduled job on your computer might solve the problem.
    Regards
    Marcus

  • Oracle 11g - External Table/SQL Developer Issue?

    Oracle 11g - External Table/SQL Developer Issue?
    ==============================
    I hope this is the right forum for this issue, if not let me, where to go.
    We are using Oracle 11g (11.2.0.1.0) on (Platform : solaris[tm] oe (64-bit)), Sql Developer 3.0.04
    We are trying to use oracle external table to load text files in .csv format. Here is our data look like.
    ======================
    Date1,date2,Political party,Name, ROLE
    20-Jan-66,22-Nov-69,Democratic,"John ", MMM
    22-Nov-70,20-Jan-71,Democratic,"John Jr.",MMM
    20-Jan-68,9-Aug-70,Republican,"Rick Ford Sr.", MMM
    9-Aug-72,20-Jan-75,Republican,Henry,MMM
    ------ ALL NULL -- record
    20-Jan-80,20-Jan-89,Democratic,"Donald Smith",MMM
    ======================
    Our Expernal table structures is as follows
    CREATE TABLE P_LOAD
    DATE1 VARCHAR2(10),
    DATE2 VARCHAR2(10),
    POL_PRTY VARCHAR2(30),
    P_NAME VARCHAR2(30),
    P_ROLE VARCHAR2(5)
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY P_EXT_TAB_D
    ACCESS PARAMETERS (
    RECORDS DELIMITED by NEWLINE
    SKIP 1
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' LDRTRIM
    REJECT ROWS WITH ALL NULL FIELDS
    MISSING FIELD VALUES ARE NULL
    DATE1 CHAR (10) Terminated by "," ,
    DATE2 CHAR (10) Terminated by "," ,
    POL_PRTY CHAR (30) Terminated by "," ,
    P_NAME CHAR (30) Terminated by "," OPTIONALLY ENCLOSED BY '"' ,
    P_ROLE CHAR (5) Terminated by ","
    LOCATION ('Input.dat')
    REJECT LIMIT UNLIMITED;
         It created successfully using SQL Developer
    Here is the issue.
    It is not loading the records, where fields are enclosed in '"' (Rec # 2,3,4,7)
    It is loading all NULL value record (Rec # 6)     
    *** If we remove the '"' from input data, it loads all records including all NULL records
    Log file has
    KUP-04021: field formatting error for field P_NAME
    KUP-04036: second enclosing delimiter not found
    KUP-04101: record 2 rejected in file ....
    Our questions
    Why did "REJECT ROWS WITH ALL NULL FIELDS" not working?
    Why did Terminated by "," OPTIONALLY ENCLOSED BY '"' not working?
    Any idea?
    Thanks in helping.

    I don't think this is a SQLDeveloper issue. You will get better answers in the Database - General or perhaps SQL and PL/SQL forums.

  • Scheduler for Export Table utility using PL/SQL developer

    Hi,
    Is there any way by which i can schdule manually export tables from a user using PL/SQL developer 'Export Tables' utility.
    As i have lot many schema a for each i have to manually exporting all tables using this utility.
    Please suggest.
    Thanks,

    My suggestion is you re-ask this question on the forums of the vendor of PL/SQL Developer, Allround automations, http://www.allroundautomations.com
    If you are asking about SQL Developer, it has it's own forum on OTN.
    Sybrand Bakker
    Senior Oracle DBA

  • Memory used by SQL Developer

    Hello
    I was running a query with output of around 9 lakh records. I did this with Toad earlier and now I tried with SQL Developer.
    I found a difference like this.
    When in toad the records were being fetched the memory used by Toad was not getting increased as shown in the Task manager processes. While the PF Usage was getting increased which I understand is SWAP file. When all the rows were received this increase was approximately same as the file I created after exporting that data.
    In case of SQL Developer the memory used by SQL developer itself goes on increasing.
    Will this have impact on machines actual RAM being used ?
    or In other words is Toad using swap memory directly rather than consuming RAM for saving file output ?
    Regards
    Sanjeev

    I believe the difference could be that toad fetches each record and automatically flushes it to the output file while SQL Developer might keep all the records in memory or use a different file handling method. Basically what you said sounds as a reasonable assumption.

  • Not able to debug package procedure using PL/SQL Developer 7.0.3

    Hi Guys,
    I am debugging one of procedure of my package which is calling many procedure for different package
    I am using PL/SQL Developer 7.0.3., Iam not able to debugger , whenever I run debugger it makes all the dependent package as invalid
    Please advice me what to do,
    Thanks
    Nav

    PL/SQL Developer has it's own forum @http://forums.allroundautomations.com/ubb/ubbthreads.php?ubb=postlist&Board=3&page=1&PHPSESSID=13b3aab3b0281796203ac9eca9db0f82
    You have an old version, by the way, why not upgrade?

  • Generating multi-level XML in Oracle 8i using XML-SQL utility

    Oracle 8i has a limitation when it comes to the object types. Only one-level nesting of collection is allowed. Oracle 9i apparently removes this limitation.
    I am trying to generate XML for a hierarchical (conceptually) structure. To do that I am using XML-SQL utility (XSU) running agains an object view build on top of the relational data. The problem is the limit to onelevels of colelction nesting. Oracle 8i gives you a way to create a view with more levels of nesting by using references (REF). The problem is that when XSU runs agains a view with the references, it inserts the references into the XML document (instead of dereferencing them).
    Is there a way to generate XML with Oracle 8i with more than two levels of collection nesting?
    Thank you.
    Michael

    Oracle 8i has a limitation when it comes to the object types. Only one-level nesting of collection is allowed. Oracle 9i apparently removes this limitation.
    I am trying to generate XML for a hierarchical (conceptually) structure. To do that I am using XML-SQL utility (XSU) running agains an object view build on top of the relational data. The problem is the limit to onelevels of colelction nesting. Oracle 8i gives you a way to create a view with more levels of nesting by using references (REF). The problem is that when XSU runs agains a view with the references, it inserts the references into the XML document (instead of dereferencing them).
    Is there a way to generate XML with Oracle 8i with more than two levels of collection nesting?
    Thank you.
    Michael

  • Unable to use PL/SQL Developer on Oracle 10g express edition

    Hello,
    i have installed oracle 10g XE and PL/SQL developer 8.
    The contents of .ora files are as follows
    tnsnames.ora file:
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = pravindasari)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = XE)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    listener.ora
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (ADDRESS = (PROTOCOL = TCP)(HOST = pravindasari)(PORT = 1521))
    DEFAULT_SERVICE_LISTENER = (XE)
    sqlnet.ora
    # This file is actually generated by netca. But if customers choose to
    # install "Software Only", this file wont exist and without the native
    # authentication, they will not be able to connect to the database on NT.
    SQLNET.AUTHENTICATION_SERVICES = (NTS)
    i am able to login thru database home page.
    When connecting to oracle through PL/SQL developer, m using the following details
    username: system
    pwd: system
    database: XE
    connect as: Normal
    But i get the error as follows:
    ORA-12154: TNS: could not resolve the connect identifier specified
    Its working completely fine on my desktop which has windows XP, bt having problem while logging on laptop which has windows 7 home edition.
    Please help me how to login thru developer.....
    Edited by: user9243989 on Jun 13, 2010 12:36 AM

    Set the environment variable ORACLE_HOME to point to the XE database.

  • # coming when I select data from oracle table using Native SQL

    Hi Gurus,
    I am selecting 'First name' from oracle table directly using native sql. I am fetching 65000 records but 10+ records having '#' at the end of firstname. For eg: John#.
    But oracle team couldn't find '#' in their table for those records. What could be problem?
    or what could be the character in oracle which comes as '#' in abap?
    Pls help...
    Saj

    Thanks for replies.
    My DB NLS_PARAMETER is AL32UTF8. I am able to pullout data with older version of ojdbc jar file. So I think there is no issue regarding NLS setting.
    So please guide me with proper solution as soon as possible.

  • Search option using a new small window in oracle forms using pl/sql

    Hai Friend,
    Iam Navya Jeevan,regarding Oracle Forms and Reports Doubts.
    Our project is developed using Forms and Reports
    In Forms for triggers we are using Pl/SQl language.
    DOUBT
    IN a form we require an option like search button when we press the search button a small window must be opened.This window should contain details from database(ie an entire column of database,must be displayed in the window ) and the user selects the value from the window.
    If u got any sample code related to this subject please mail to me.
    ....................................VERY URGENT............................................................................
    thankyou,

    Hello,
    The LOV is made for this.
    Francois

  • Oracle Database 10 g/ SQL Developer connection problem

    Hello,
    I hope you can help me further. now wants to learn Oracle, Oracle Database 10g Enterprise have
    Edition instaled (successful), and wants to connect to SQL Developer but unfortunately was not working.
    I get this error:
    Status: Failure - Test failed: Listener refused the connection with the followong error:ORA-12505, TNS: listener does not currently know of SID given in connect descriptor.
    Thank you for your understanding!

    881920 wrote:
    Hello,
    I hope you can help me further. now wants to learn Oracle, Oracle Database 10g Enterprise have
    Edition instaled (successful), and wants to connect to SQL Developer but unfortunately was not working.
    I get this error:
    Status: Failure - Test failed: Listener refused the connection with the followong error:ORA-12505, TNS: listener does not currently know of SID given in connect descriptor.
    Thank you for your understanding!welcome to the forum,
    what is your operating system name and version?
    check
    $lsnrctl status
    if the listener is down
    start the listener
    $lsnrctl start
    also check the database is up and running.
    and try to connect with correct username,password,role (normal or sysdba) hostname or IP, port number, SID or service name.
    Good Luck.

  • Still Using OLD SQL Developer - Concerns about Direction / Quality

    I've been an avid user and supporter of SQL Developer for a little over a year now; prior to that I was a Quest TOAD advocate and had been for about 10 years. I use the tool every day, primarily for object browse and PL/SQL development and debugging. I'm a DBA so I don't do a lot of development, but I really like the functionality offered in SQL Developer and find that it's a great supplement to my SQL*Plus command-line scripts. However, I'm still using v1.0.0.15.57 and don't feel like I have much incentive to update. Each time a new release comes out I get hopeful and check out the release notes, but it always seems that there are more problems introduced than bugs fixed. I have been a vocal advocate of the tool here, working to replace aging products like TOAD and SQL Navigator and singing the praises of a community-developed product like SQL Dev, but my fervor is starting to falter a bit. What's happening to the QC on this product? Seems to me that the focus has shifted from offering a compact, high-performance tool for Oracle developers and administrators in favor of a more feature-rich but less stable product. I'd like to know what others out there think about this. Am I just missing the boat?

    I just love how the community, through the SQL Developer Exchange, influences on the direction to take.
    In general, I don't have any objections on which new features get implemented when. Although some basic functionality is still lacking, like file-based development. If you support a feature, support it fully, or it will explode in your face.
    Really, the only dreadful mistake in the product is the incredibly poor Quality Assurance.
    I can't believe these guys work for the so well known reliable Oracle.
    The framework is a present from the JDeveloper team, so they should be able to focus 100% on database functionality, but as you discovered every new release introduces at least 2 new bugs for every bug fixed, plus the regression of previous fixed bugs!
    Sporting a free product is no excuse for screwing up.
    Second mistake is let the majority of bugs reported through this forum slip by. They've got us as they're most valuable QA, but often just say: "log a bug through Metalink", or just don't respond to the reported issue.
    There are several unrecoverable crashes, which really are showstoppers (issues which should be fixed before releasing), but release after release just don't get fixed, not even acknowledged. I understand some reports get buried inside threads that really have a different subject, but I've even tried putting in bold: "Unrecoverable crash:" in a new post's title, but without getting any response.
    If I can follow the posts in this forum, working for another company, surely the team can do so also, especially when it's their job for which they get paid!
    Let's just hope the next release meets the promises of improving the stability and fixing flawed features.
    Regards,
    K.

  • Performance problem with slow VIEW from JDBC (fast from SQL Developer)

    Hi all,
    I'm experiencing following problem and would like to know if someone else also hit this one before and has a suggestion how to solve it:
    I have a pretty complicated SELECT statement that per definition returns only a few rows (~30). With no further optimization it takes ~20 seconds to return the full dataset in Oracle SQL Developer. If you add the */+ PUSH_PRED(name_of_some_inner_view) /* hint (hint is correct, stars got eaten by the OTN-forum syntax), the statement takes less than 0.5s to execute (still in SQL Developer). I saved the statement with the hint as VIEW. Selecting from the VIEW in SQL Developer is also fast.
    Now if I call the statement from JDBC (Tomcat webapp), I can see from the server console that the statement is 1:1 100% the same as the one I execute in SQL Developer. Nevertheless it takes about 20 seconds to complete.
    Here my details:
    SELECT banner FROM v$version;
    BANNER                                                                        
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production             
    PL/SQL Release 11.2.0.2.0 - Production                                          
    CORE     11.2.0.2.0     Production                                                        
    TNS for 32-bit Windows: Version 11.2.0.2.0 - Production                         
    NLSRTL Version 11.2.0.2.0 - Production                                          
    JDBC Driver used: some old odbc14.jar as well as current odbc6.jar for 11.2.0.2.0 from http://www.oracle.com/technetwork/da...10-090769.html
    SQL Developer: current version 3.2.20.09From my reading this could go wrong:
    - JDBC doesn't know the VIEW's column data types and Oracle behaves mysterious because of this (=there must be more to the SELECT than just the string, some meta-information)
    - For some reason the hint inside the VIEW is not used (unlikely)
    I also tried a Table Function/Pipelined table and selected from it as a workaround, but the result is the same: Selecting from Function is fast from SQL Developer, but slow from JDBC. All other statements that come from JDBC are as fast as they should be. I really don't know what to think of this and where the error might be.
    Is there some setting that tells Oracle not to use hints when called from JDBC?
    Thank you & Best regards,
    Blama

    Hi Bawer,
    that's what I'm thinking. Unfortunately I can't post it, as it is library code (not my lib). But in the debug-output I can see the SQL-String sent to the DB (which does include the hint).
    But I find the 2nd option you mention more likely anyway: Even if I put the hint into a VIEW and select from the view, the time-difference is there (it's even there if I use Table Functions/Pipelined table and select from the function).
    So I'd think it is more likely that something else is happening (e.g. Oracle is configured in a way that it does not use hints when called from JDBC or similar. Or the library sets some session options in order to prevent the usage of hints). But I don't know if there is even the possibility of doing so.
    Does the Oracle JDBC driver have the option to set these options?
    Does the Oracle DB have the option to set sth. like "ALTER SESSION SET dontUseHints = 'Y';"

Maybe you are looking for

  • How to save as W3D file

    Hi, i have another problem..,i'm doing assemble that included 1 board and a few component like 7 segment display,wires and IC using 3ds max7 and doing some motion there. Then i save it as .W3D file... When I export it at director,i found that it to s

  • Find the date needed

    Hello All, I have a reqmnt, I want to find out the dates of current academic year using sy-datum, it means if i provide date 06/07/07, the dates i need in return is 31-07-07 and 01-08-06. could anyone suggest how do i go bout it. thanks, RS

  • Cost of a material

    Hi, If we cannot see the cost of the material issued in teh order then what will we check? Thanks in Advance.

  • Clearing returned an unexpected returned code: 1 in MDT 2013

    I am testing some application deployment in MDT 2013 but I keep getting error code 1 in a yellow summary page even when the applications were deployed successfully onto the devices. Can some advised how to clear this error

  • Saving iphone messages to transfer?

    I plan on upgrading from a 3G to the new 4S - is there a way to save my text messages to put them on my new phone?