Problem with purge temp and system tablespace

hi,
i am purging tablespec with sys user and it seems doing it, but tablespaces are still full
also wanted to drop a datafile
alter tablespace system drop
datafile 'C:\oraclexe\files\sys.bf'
and it giving the following error
Error starting at line 28 in command:
alter database datafile 'C:\oraclexe\files\sys.bf' offline drop
Error report:
SQL Error: ORA-01541: system tablespace cannot be brought offline; shut down if necessary
01541. 00000 - "system tablespace cannot be brought offline; shut down if necessary"
*Cause:    Tried to bring system tablespace offline
*Action:   Shutdown if necessary to do recovery
but if i shutdown how i drop it? or delete manually the file?
sorry for the 2 question in one thread
thanks

but if i shutdown how i drop it? or delete manually the file?Operate in MOUNT state.
But If you need to resize your system tablespace, You have to check HWM.
On XE, I think it's easy to use full exp -> recreate -> full imp..
Regards,

Similar Messages

  • Problem with showing battery and system information in openbox

    I wanted to install docks( in open box wm ) which give me battery life information and some thing like that but when I run them terminal give me this error :
    CPU frequency scaling NOT available
    No power management subsystem detected
    No power management support...
    what should I do
    Last edited by sarsanaee (2013-08-08 15:14:42)

    well.. dockapps are veery old fashioned way to do that. If you look at wmpower app on that site you see it hasn't been updated for nearly five years, so i'm not surprised if it's not working on a modern system.
    many people use conky to display power status on openbox, so you might want to look into that..
    you can add power applet to various panels (xfce-panel, gnome-panel etc.) and use the panel with your openbox session
    you could also code/google for openbox pipe menu script that does what you need
    if none of those options work for you i found this git repository that seems to be still maintaied that holds wmpower and some other dockapps: http://repo.or.cz/w/dockapps.git
    unfortunately couldn't find PKGBUILD for that on AUR...
    Last edited by ooo (2013-08-09 11:25:56)

  • Problems with user SYS and SYSTEM

    Hi,
    I installed 9i on the Linux Suse 7.2, it's runing OK. But when I try to connect with user SYSTEM or SYS as SYSDBA/SYSOPER I receive message "ORA-01031: Insufficient Privileges".
    Please, what do I get this privileges SYSDBA AND SYSOPER?
    Anyone have any ideas?
    Thanks.

    Check the to see if the user is a member of the dba group.
    The O/S user you are using needs to be a member of the dba group in /etc/group.

  • Problems with ListViews Drag and Drop

    I'm surprised that there isn't an Active X control that can do this more
    easily? Would
    be curious to find out if there is - although we aren't really embracing the
    use of
    them within Forte because it locks you into the Microsoft arena.
    ---------------------- Forwarded by Peggy Lynn Adrian/AM/LLY on 02/03/98 01:33
    PM ---------------------------
    "Stokesbary, Michael" <[email protected]> on 02/03/98 12:19:52 PM
    Please respond to "Stokesbary, Michael" <[email protected]>
    To: "'[email protected]'" <[email protected]>
    cc:
    Subject: Problems with ListViews Drag and Drop
    I am just curious as to other people's experiences with the ListView
    widget when elements in it are set to be draggable. In particular, I am
    currently trying to design an interface that looks a lot like Windows
    Explorer where a TreeView resides on the left side of the window and a
    ListView resides on the right side. Upon double clicking on the
    ListView, if the current node that was clicked on was a folder, then the
    TreeView expands this folder and the contents are then displayed in the
    ListView, otherwise, it was a file and it is brought up in Microsoft
    Word. All this works great if I don't have the elements in the ListView
    widget set to be draggable. If they are set to be draggable, then I am
    finding that the DoubleClick event seems to get registered twice along
    with the ObjectDrop event. This is not good because if I double click
    and the current node is a folder, then it will expand this folder in the
    TreeView, display the contents in the ListView, grab the node that is
    now displayed where that node used to be displayed and run the events
    for that as well. What this means, is that if this is a file, then Word
    is just launched and no big deal. Unfortunately, if this happens to be
    another directory, then the previous directory is dropped into this
    current directory and a recursive copy gets performed, giving me one
    heck of a deep directory tree for that folder.
    Has anybody else seen this, or am I the only lucky one to experience.
    If need be, I do have this exported in a .pex file if anybody needs to
    look at it more closely.
    Thanks in advance.
    Michael Stokesbary
    Software Engineer
    GTE Government Systems Corporation
    tel: (650) 966-2975
    e-mail: [email protected]

    here is the required code....
    private static class TreeDragGestureListener implements DragGestureListener {
         public void dragGestureRecognized(DragGestureEvent dragGestureEvent) {
         // Can only drag leafs
         JTree tree = (JTree) dragGestureEvent.getComponent();
         TreePath path = tree.getSelectionPath();
         if (path == null) {
              // Nothing selected, nothing to drag
              System.out.println("Nothing selected - beep");
              tree.getToolkit().beep();
         } else {
              DefaultMutableTreeNode selection = (DefaultMutableTreeNode) path
                   .getLastPathComponent();
              if (selection.isLeaf()) {
              TransferableTreeNode node = new TransferableTreeNode(
                   selection);
              dragGestureEvent.startDrag(DragSource.DefaultCopyDrop,
                   node, new MyDragSourceListener());
              } else {
              System.out.println("Not a leaf - beep");
              tree.getToolkit().beep();
    }

  • Problems with the richTextEditor and quotes

    Hello
    I'm having problems with quote chars and the richText
    control's htmlText. When users enter quotes into the richTextEditor
    control. The quotes breaks the HTML text, meaning it's no longer
    well formatted. Is there an escape char that I need to use. Or do I
    need to force some kind of refresh on the control prior to using
    the htmlText string?

    I have been using RTE in a content management system and
    found a need to replace non-standard quote characters with proper
    UTF-8 character counterparts. Curly quotes in particular are
    problematic. Use a replace function to substitute non-standard for
    standard characters.

  • Problem with java, ASCII and Linux

    Hi Friends,
    I has a Linux RedHat 9.0 with a jre1.5.0_04 (rpm package of Sun).
    I has a problem with ASCII , for example :
    import java.io.*;
    public class HolaMundo
    public static void main (String[] args)
    System.out.println("Hol� M�ndo");
    this programs runs ok on my windows jdk so it prints "Hol� M�ndo", but when i run the same HolaMundo.class program on my linux redhat it prints "Hol�� M��ndo"
    I think the problem is with the ASCII table that uses the linux version of jre, but i dont know how to solve this problem. I need a Spanish-European ASCII table on my application but i think it is working with a US-ASCII table.
    Then i has installed a kaffe 1.0 (rpm) java machie on this linux and this solve the problem but i has another problems of compatibility with this old version of java kaffe.
    Do you know whats happening?
    Thanks in advance.

    The problem doesn't have to do anything with Java or Linux as far as i can see. It's more likely a problem with Windows XP and IE. Be assured that normally downloading the Linux JDK in windows is not a problem.

  • Problem with correlation on QA systems

    Hi all
    i need help!!!
    I have a problem with correlation on QA systems!!!!
    I have exported file (SCVW and CS) from DEV system and imported into QAL system!
    I ve changed the parameters of CCs!!
    But messages on sxi_moni doesn't meet correlation!!!!
    The same interface on DEV system work fine, everything it's ok!!!
    Everyone can help me? What could be the problem?
    Tnx all

    Hi Prateek
    Scheduled Background Job for Event Queue has a red flag in QA, while all flags are green on Dev!!!
    What I sholud do?

  • HP Officejet Pro 8600 "Problem with Printer or Ink System'

    A gander at this forum suggests I am one ofa multitude of people perplexed by this issue. There is a notation beside one enquiry which says 'Problem Solved'.... well it isn't for me. My printer (typical!) is one month out of warranty. I had to replace the black cartridge and, when I did, it came up with this error prompt. I then replaced all the other cartridges. HP suggests removing the printhead and following that they say place it 'upside down on a clean sheet of paper'... NO instructions for cleaning it!! When it is replaced in the printer they suggest you 'rock the printhead left and right to make sure that the printhead fully seats in the carriage' and if THIS doesn't fix things 'try reseating the printhead up to 3 times'... This in itself is an admission of an 'issue' with this product. It doesn't sound like a very scientific engineering 'fix' to me!
    A new printhead costs almost what we paid for the printer a year ago. I hate consigning anything to landfill that I can avoid... unfortunately it looks like that is where this unit belongs...

    Hi @Robin_Perth,
    Welcome to the HP Forums!
    I am sorry to hear about you getting the problem with printer or ink system error, with your HP Officejet 8600, but I am happy to look into this for you!
    I am assuming you have already been through this guide, A 'Problem with Ink System' Error Message Displays on the Control Panel or Computer During Setup.
    If this guide does not resolve the issue, please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region. Country-language selector.
    This guide, Limited Warranty for HP Ink Cartridges and Customer-Replaceable Printheads for HP Inkjet Supplies, will help you to determine if your printhead is still in warranty or not.
    Hope this helps!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • HP 4622 All in One Printer: Problem with Printer or Ink System

    Problem with Printer or Ink System Error OXC19a0027.

    charleshia wrote:
    Thanks so much for replying to my post. I tried the fist suggestions and they did not work. So, I attempted to move on Dow to the cleaning of my printer. I am the the first to admit that I'm not the genius when it come to electronics buys, my printer do not seem to have what is described in the photos. I'd like to upload a photo of my ink cartage but do not know how.
    Charleshia, you can upload a photo here to reply. Click Reply, then on the window you'll see the image below..
    click the one which has the red box, it's where you insert the photo
    Going back on your issue.. the basic step would be.. take out the inks then close the door... what error message you  got? If it's saying "Missing Ink Cartridge" just hit OK. Unplug the power cable at back of the printer, plug it back in.. Clean the copper contacts on the ink cartridges using a lint free cloth then reinstall them. Let me know if it resolved it or not.. I can only give basic troubleshooting here

  • When i try to update my itunes on my pc i keep getting the messaage that there was a problem with the installer and it could not finish. how do i fix this? i`ve tried to download 3 times already.

    when i try to update my itunes on my pc i keep getting the messaage that there was a problem with the installer and it could not finish. how do i fix this? i`ve tried to download 3 times already.

    Hi
    I've got a similar problem.  iTunes v10.2 worked fine, but when I tried to update it to 10.5 I got a 'Bonjour' error.  I eventually solved that but I still couldn't upgrade to 10.5, so I deleted every single Apple, Quicktime, iTunes, etc file on my PC using Revo Unistaller (because the normal Windows Add/Delete programs wouldn't work) but now, when I install the latest iTunes version from scratch (on XP SP3), it says: "the installer encountered errors before it could be configured.... your system has not been modified" 
    Any ideas?
    Rick

  • "Problem with printer or ink system"

    Hello, so this morning I printed out a paper and I saw I was almost out of black ink. I replaced the cartridge and everything was okay. When I went to print out another paper I received the error message "Problem with printer or ink system... 0x6100004e" I went to HP support and found a whole bunch of solutions. I went through the first few, there is no paper jams, but then I realized my carriage was either not leaving the dock or it would come all the way left just to go right back. When I open the door, its like the printer thinks the carriage is moving because it keeps turning the way it normally would. I tried resetting it, and looking up other solutions but nothing. My warranty was up in May. It had never had this problem when I changed the cartridges before, so I really need all the help I can get.

    Hi andre2015,
    Please perform the steps from the link below and this will resolve the issue.
    http://support.hp.com/us-en/document/c03253201
    ---- If my answer was helpful please click the Kudos star.
    If your problem is solved please click the Accept as Solution button so other forum users can use the solution.
    Regards
    Aneesh

  • Boot Camp problems with Windows 7, and a new Macbook Pro

    When I try to install Windows 7, when the process is almost complete and Windows is finalizing all settings, the system reboots then gets stuck at the white/gray bootscreen, and then tries to boot from disk, only to repeat the bootscreen cycle indefinitely. How do I fix this? Thank you very much.

    My MAC BOOK is 13 inch, first generation of unibody that I bought when it first came out last November, 2009. It seems that the latest boot camp 3.1 does not support windows7 64 bits on my mac book model. I followed Apple instruction to upgrade boot camp 3.0 when running XP 32 bits. And I then upgrade my XP 32 bits to 64 bit Windows 7. The upgrade/installation was successful but I encountered a lot of problems with the mouse and sound.
    1. No sound with my new Windows 7 64 bits.
    2. I managed to make Windows 7 64 bit recognize my apple mighty mouse. But the mouse does not funtion normal as expected. It does not work with swiping and scrolling.
    3. I could not re-install boot camp 3.0 from windows.old nor from the Mac OS X installation disk. When I tried to run setup.exe from the MAC OS X snow leopard, I got the error "Boot camp x64 is unsupported for this model"
    I am really disappointed that boot camp 3.1 is not universally supported for all mac book or mac book pro.
    I need help to re-install boot camp for my Windows 7? I bought the upgrade through education upgrade program and I selected to get 64 bit version so I do not want to rollback the installation to 32 bit.
    Please help.

  • OneKey Recovery 6.0. Problem with back up operating system from recovery cd'ies

    Hello, i have problem with back up operating system from recovery cdies.
    When i acceped start button to backup partition system i get an alert "space not enough"
    I had linux before and i whant change it to windows back. i deleted all ext partitions. I have all unlocated space.I shouldnt have problems.
    Please help me

    I would use something like Partition Magic or Acronis Disk Director to first create a FAT32 partion for your C: Drive where your OS will go and be sure to leave 10GB or so unallocated for the secondary FAT32 Partition where your "factory image" will go. 
    You then create a Logical Drive with the unallocated space and make it hidden (PM or ADD will do this).   Install your OS (preferably Windows XP if you want less problems) and then after you have setup everything the way you want (drivers, applications, etc), then use Acronis True Image to create your "factory restore" image on the hidden partition and activate the Startup Recovery Manager.
    This is the way I do it and it works like a charm!

  • Problems with games server and client

    Hi! I am making an MMORPG game and I have problems with the server and client connection.
    I can connect to the server, but when a second player does, the server console tells me this:
    java.net.SocketException: Connection reset
    After that, all clients disconnect.
    Which is the problem?
    How can I solve it?
    Thank you so much

    Here is how my sever work. I took some of this code from a book called Killer Programming Games in Java. If you google for it, you will find it for sure.
    TourGroup tg = new TourGroup(); // this object stores information about all clients connected to the server
        try {
          ServerSocket serverSock = new ServerSocket(PORT);
          Socket clientSock;
          while (true) {
            System.out.println("Waiting for a client...");
            clientSock = serverSock.accept();
            new TourServerHandler(clientSock, tg).start(); // this is the thread that monitors each client
        catch(Exception e)
        {  System.out.println(e);  }
      } This is some code of TourServerHandler
    public TourServerHandler(Socket s, TourGroup tg)
        this.tg = tg;
        clientSock = s;
        name= "?";
        cliAddr = clientSock.getInetAddress().getHostAddress();
        port = clientSock.getPort();
        System.out.println("Client connection from (" +
                     cliAddr + ", " + port + ")");
    public void run()
      // process messages from the client
        try {
          // Get I/O streams from the socket
          BufferedReader in  = new BufferedReader(
       new InputStreamReader( clientSock.getInputStream() ) );
          PrintWriter out =
    new PrintWriter( clientSock.getOutputStream(), true );  
    // and here goes the rest... The TourServerHandler thread uses this code to send messages:
    tg.broadcast(msg); tg.broadcast works like this:
    synchronized public void broadcast(String cliAddr, int port, String msg)
      // broadcast to everyone but original msg sender
        TouristInfo c; // this object stores info about the client
        for(int i=0; i < tourPeople.size(); i++) {
          c = (TouristInfo) tourPeople.get(i);
            c.sendMessage(msg);
      } This is the error part
    public void sendMessage(String msg)
      PrintWriter out;  
        out.println(msg);  
          System.out.println("OK");
      } I can't find any error but I still get that Connection reset exception...

  • Toshiba sattelite pro ( SPM30 ) problem with black screen and white cursor

    I have a toshiba SPM30 from a friend and I couldn't succed to resolve the problem with black screen and white cursor.I can enter in bios using F2 and I can use F12 but is not booting, I have some CD and DVD with Win Xp but it seeams that is not booting.I've traied to change the order in boot order: first CD/DVD and after HDD but still is not working...I saw that a HDD I can see details about it but at CD/DVD I can't see...I think that the CD/DVD is not working( but I can see the light and hear the sounds when I put a bootable CD or DVD)...Please, if someoane can help me......( byt the way I've traied to remove the bios battery and still is not working...)

    Try f8 and try the repair your computer options
    This explains advanced start up options:
    http://windows.microsoft.com/en-us/windows/advanced-startup-options-including-safe-mode#1TC=windows-...
    This explains start up repair:
    http://windows.microsoft.com/en-us/windows/startup-repair-faq#1TC=windows-7
    A system disc can be used for these repair options also, in your case if the DVD drive is not working you can use an external dvd drive if you have one.
    S70-ABT2N22 Windows 7 Pro & 8.1Pro, C55-A5180 Windows 8.1****Click on White “Kudos” STAR to say thanks!****

Maybe you are looking for