Sudden increase in size of alert file < SID > .log

the file < SID > .log Alert is abrubtly increasing in size that is in process girls free disk space, so more no DB connection.

I stop the database, took a bakup of the alert log file, negated the alerts log (using cat/dev/null > alert.log) and started the database.

From now, its OK, but can I cancel this alert log file while the database is running. ???

Hi Vicky,

Yes, you can... you can even delete the alert.ora file that has the database open: Oracle will recreate it just the next you will need to write to it.

HTH,
Thierry

Tags: Database

Similar Questions

  • How to increase the size of the file

    My application creates .amr files of 0 KB after completing the recording of the voice. How can I increase the size of the file.

    I think I am, but I write my code if you could help me.

    • This is in fact the problem is that it is not written in my .amr file if it is their creation

    whenever I call someone.

    • Furthermore it is also telling me that 'myappname' trying to record media.

    So confirmation registration takes place

    However why write records into mu .amr files intrigues me

    Thanks in advance

    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    
    import javax.microedition.io.Connector;
    import javax.microedition.io.file.FileConnection;
    import javax.microedition.media.Manager;
    import javax.microedition.media.Player;
    import javax.microedition.media.control.RecordControl;
    
    import net.rim.blackberry.api.phone.Phone;
    import net.rim.blackberry.api.phone.PhoneCall;
    import net.rim.blackberry.api.phone.PhoneListener;
    import net.rim.blackberry.api.phone.phonegui.PhoneScreen;
    import net.rim.blackberry.api.phone.phonegui.ScreenModel;
    import net.rim.device.api.i18n.Locale;
    import net.rim.device.api.ui.component.Menu;
    import net.rim.device.api.ui.container.MainScreen;
    
    /**
     * A class extending the MainScreen class, which provides default standard
     * behavior for BlackBerry GUI applications.
     */
    public final class RecordScreen extends MainScreen
    {
        Player player;
        RecordControl recorder;
        private ByteArrayOutputStream output;
        byte[] data;
        boolean yes = false;
        int st;
        /**
         * Creates a new RecordScreen object
         */
        public RecordScreen()
        {
            Phone.addPhoneListener(new PhoneListener() {
    
                public void conferenceCallDisconnected(int callId) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callWaiting(int callid) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callResumed(int callId) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callRemoved(int callId) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callInitiated(int callid) {
                    PhoneCall phoneCall = Phone.getCall(callid);
                    if (phoneCall != null)
                       /* st = Dialog.ask(Dialog.D_YES_NO,
                                "Are you sure to record this call?");
                        if (st == Dialog.YES) */
                            yes = true;
                      /*  else
                            yes = false; */
                        // TODO Auto-generated method stub
    
                }
    
                public void callIncoming(int callId) {
                    // TODO Auto-generated method stub
    
                    // TODO Auto-generated method stub
                   // Dialog.ask(Dialog.D_YES_NO, "Are you sure to record this call?");
    
                    PhoneCall phoneCall = Phone.getCall(callId);
                    if (phoneCall != null)
                        yes=true;
    
                    // TODO Auto-generated method stub
              /*      if (yes) {
                        try {
                            recorder.commit();
    
                        } catch (IOException e) {
                            // TODO Auto-generated catch block
                            System.out.println("====Exception: "+e.getMessage());
                        }
                        player.close();
                        data = output.toByteArray();
                        saveRecordedFile(data);
                    }  */
    
                }
    
                public void callHeld(int callId) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callFailed(int callId, int reason) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callEndedByUser(int callId) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callDisconnected(int callId) {
                    // TODO Auto-generated method stub
    
                    if (yes)
                    {
                        try {
                            recorder.commit();
                            data = output.toByteArray();
                            saveRecordedFile(data);
                            player.close();
                            }
                        catch (IOException e) {
                            // TODO Auto-generated catch block
                            e.printStackTrace();
                        }
                        finally
                        {
    
                             data = output.toByteArray();
                             saveRecordedFile(data);
                             player.close();
                        }
                      //  player.close();
                       // data = output.toByteArray();
                        //saveRecordedFile(data);
    
                        /** _rcontrol.commit();
                       _data = _output.toByteArray();
    
                       saveRecordedFile(_data);
    
                       _output.close();
                       _player.close();**/
                    } 
    
                }
    
                public void callDirectConnectDisconnected(int callId) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callDirectConnectConnected(int callId) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callConnected(int callId) {
                    // TODO Auto-generated method s
                    //@@ScreenModel scr=new ScreenModel(callId);
    
                    //set language to english
                    //@@Locale.setDefault(Locale.get(Locale.LOCALE_en));
                    //get Menu
                    //@@Menu menu=scr.getPhoneScreen(PhoneScreen.PORTRAIT, PhoneScreen.ACTIVECALL).getMenu(0);
                    /*System.out.println("Menu of BB Dialler - Begin");
                    for (int i = 0, cnt = menu.getSize(); i < cnt; i++)
                        System.out.println("Menu of BB Dialler - "
                            +menu.getItem(i).toString());
                    System.out.println("Menu of BB Dialler - End");     */
                    /**for (int i = 0, cnt = menu.getSize(); i < cnt; i++)
                        if(menu.getItem(i).toString().equalsIgnoreCase("Activate Speakerphone"))
                            menu.getItem(i).run();
                    **/     
    
                    PhoneCall phoneCall = Phone.getCall(callId);
                    if (phoneCall != null) {
                        if (yes)
                            initPlay();
                    }
    
                    if (yes) {
                        try {
                            recorder.commit();
                        } catch (IOException e) {
                            // TODO Auto-generated catch block
                           // System.out.println("====Exception: "+e.getMessage());
                            e.printStackTrace();
                        }
                        data = output.toByteArray();
                        try {
                            output.close();
                        } catch (IOException e) {
                            // TODO Auto-generated catch block
                            e.printStackTrace();
                        }
                        //player.close();
                        saveRecordedFile(data);
                        player.close();
                    }
                }
    
                public void callConferenceCallEstablished(int callId) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callAnswered(int callId) {
                    // TODO Auto-generated method stub
    
                    // yes = true;
    
                    // TODO Auto-generated method stub
    
                }
    
                public void callAdded(int callId) {
                    // TODO Auto-generated method stub
    
                }
            });
            // Set the displayed title of the screen
            setTitle("");
        }
    
        private void initPlay() {
            // TODO Auto-generated method stub
            try {
                player = Manager.createPlayer("capture://audio?encoding=amr");
                player.realize();
                recorder = (RecordControl) player.getControl("RecordControl");
                output = new ByteArrayOutputStream();
                recorder.setRecordStream(output);
                recorder.startRecord();
                player.start();
            } catch (Exception e) {
                // TODO: handle exception
                //Dialog.alert(e.getMessage() + "");
                e.printStackTrace();
            }
        }
    
        public boolean saveRecordedFile(byte[] data) {
            try {
    
                String filePath1 = System.getProperty("fileconn.dir.music");
    
                //WRiting into a file
                //String filePath1= "file:///store/home/user/";
    
                String fileName = "Call Recorder(";
                boolean existed = true;
                for (int i = 0; i < Integer.MAX_VALUE; i++) {
                    try {
    
                        FileConnection fc = (FileConnection) Connector
                                .open(filePath1 + fileName + i + ").amr");
    
                        if (!fc.exists()) {
                            existed = false;
                        }
                        fc.close();
                    } catch (IOException e) {
                        //Dialog.alert("Unable to save");
                        e.printStackTrace();
                        return existed;
                    }
                    if (!existed) {
                        fileName += i + ").amr";
                        filePath1 += fileName;
                        break;
                    }
                }//end for
                System.out.println(filePath1);
                // output---file:///store/home/user/pictures/Photo Editor(10).bmp
                System.out.println("");
    
                FileConnection fconn = (FileConnection) Connector.open(filePath1, javax.microedition.io.Connector.READ_WRITE);
                if (fconn.exists())
                    fconn.delete();
    
                fconn.create();
                fconn.setHidden(false);
    
                OutputStream outputStream = fconn.openOutputStream();
                outputStream.write(data);
                outputStream.close();
                fconn.close();
                return true;
            } catch (Exception e) {
                 //System.out.println("====Exception: "+e.getMessage());
                // Dialog.alert("====Exception: "+e.getMessage());
                e.printStackTrace();
            }
            return false;
        }
    
    }
    
  • Printing win 7 guest, the printer queue maintains a loop and increases the size of the file

    Hi all

    That are running Windows 7 enterprise and on another professional machine, same results:

    I share a "laser" on the USB printer, the printer works very well under windows prgms...  (all as administrator)

    Open CMD window:

    "net use LPT2: \\hp1\laser / persistent: Yes" command complete and looks good in "Net view \\hp1".

    Now, I open the print queue window and try printing a text file:

    "print test.txt > lpt2" command appears to complete.  (Same results for copy, etc.)

    I now see the file appear in the print queue, flashing, saying: rolling/printing, repeating & loop, and each Flash increases the size of the file!

    I tried to change the Port LPT1 and 3

    Nothing prints, because I have to stop the spooler, delete the file, start the spooler to clear.

    What happens on two different machines, I'm totally stuck!

    Help appreciated!

    Hello Stan,

    Thank you for visiting the Microsoft Community Forum.

    The question you asked is more complex than what is generally answered in the Microsoft Community Forums. We have a support forum dedicated to complex issues. I suggest you to send your query on Microsoft TechNet forum. You can get more effective suggestions and adapted by experts familiar with this topic. Your understanding is appreciated.

    Here is the link:

    http://social.technet.Microsoft.com/forums/Windows/en-us/home?Forum=w7itprovirt

    Hope this information is useful. Feel free to write us again to the case where you are facing in the future any other problem with Windows. We will be happy to help you.

  • Electronic signature PDF file increases the size of the file about 3 MB

    We use our Smart badge certificates to sign electronically PDF documents.  This action adds recently ~ 3 MB for each file for each signature.  It is a recent phenomenon.  It didn't last month.  When you do that, you might have multiple signatures on a PDF of 1 page and the overall size of the file was very small, like the size of 200-300kb.  What could have been changed and the suggestions on how reset it?

    In fact, I found a possible solution:

    Edit / Preferences / Signatures

    1. Design & appearance: uncheck "include signature's revocation status.
    2. Audit: Uncheck "Require the revocation of the certificate to succeed..." »

    See the screenshots below:

    Note, this is Adobe XI and uses certificates from a SmartBadge.  It seems that fairly constant file size (not dramatically increasing the size of the file).,.

  • How to link images without increasing the size of the file?

    I have this book that I am designing that uses the same image on all other pages. Like I did the changes to the image and the restoration of the links/update links, I noticed that the size of my file went from 30 to 102 MB. At first I thought that my image is too big, so I tried to reduce the size in Photoshop. But it seems that just rebinding time and again increases the size of the file. Anyone know how I can get rid of the additional data/information that is saved in my InDesign file? Help, please!

    Thank you!

    Increase in the size of the file that you edit because ID is to store data changed in the editing for you session can use cancel. The data stored in the file, also, unfortunately and becomes heavy. A Save AS will remove all data undo, as will crossing IDML.

  • Multiple instances of the same audio clip increase the size of the file?

    By example, if the same audio clip is placed on layers separated five as opposed to one (5 v 1)?

    Does not Flash "dedupe"?

    No, they do not increase the size of file significantly.  That is to say, the assistance of 100 cases of a noise could increase the file size of 1 KB on a single instance because noise of no added 100 times at the end of file, just the necessary info to indicate where it should play in the timeline or in your actionscript code.

  • the textField element formatting dramatically increases the size of my file

    I have a relatively simple form for clients to create the stationery business (visit/comp card slip) for themselves, to then send our printing Department

    It is built as follows:

    Page 1 Instruction, business cards and samples of model sheet, the client fills text fields and a button to save/email

    Page 2 is a sheet A4 10 subforms, a copy of the original card on Page 1

    Page 3 is a sheet A4 3 subforms a copy of the original model on Page 1 sheet

    My 3-page PDF file is 3 MB, with a total of 119 KB of images embedded in the file. During the re-creation from scratch, I noticed that when I edit the textfield object to a specific size, to remove the legend, change font, etc., the size of the file increases. Only a single text field treated as this added an another 400 KB of the size of my file.

    I am following the format of a similar form that has as much information (maybe more), and this file, over 2 pages, total not more than 800 KB. There are several text fields for the customer to add their details.

    Could I have a bug?

    Are there problems of incompatibility or conflict with other software?

    All this experience and found a solution?

    Using LiveCycle Designer (9.0) ARE on Win 7 64-bit. Have you tried a recent update for CS6 (e-Learning suite) who screwed up other parameters of the software and have since removed it (CS6) for now.

    Thank you

    DOM

    It may be the police that you changed in your field. Try to use as little of different fonts as possible. Otherwise, if it's a popular font that you are using you can remove the option of them be incorporated into the form. File > properties > Save Options and uncheck the box embedded fonts.

    Kyle

  • Increase in size of project file

    I reduced the slides in my project from 1024 x 768 to 800 x 600 and my file size has almost doubled in size.

    Also, I got a project of 264 slides to 22 slides, and the size of the file only 64 MB to 58 MB. (The files that I removed the entire screen capture have been, and I do not use FMR)

    What the?

    See you soon,.

    Kerry

    Hi Kerry

    Sometimes, we see that Captivate does not reduce the file size of the. CP file if you remove library items. The only sure fire I know is to create a completely new project. Then copy and paste slides from the old to the new.

    It should be noted, however, that although the size of the project file has not changed, the size of output file must have changed radically.

    See you soon... Rick

  • Whenever I boot, I get and error message on my virtual memory being low and Windows is increasing the size of the file, etc. etc. It started to happen just after I had IE 8. How can I fix it, or how are we going bavk to IE 7?

    I have problems with virtual memory.

    Hi GrandmaPat1952,

    Thanks for posting. Please see the link below on how to change the page file size.

    http://support.Microsoft.com/kb/307886

    I hope this helps! Shawn - Support Engineer - MCP, MCDST
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • Increase in size of LR files after import

    After importation for LR 5 file size goes from 20 to 30 MB to 40-50 mb.  Upates are current, no prefferences have been changed.  This problem occurs with both cameras of difference.  What happens, how can I solve this problem.

    Thank you, problem solved.  A checkbox 'inbed original raw file' has been verified.  Next imported file was the right size.  After re-verification of preferences, the problem became clear.

  • What I discovered suddenly increased in size

    I closed the lid of my computer laptop last night, and when I opened again later all the icons, fonts, windows and everything was great. I went the DPI setting and it is said this is the default format, but it's not.

    I tried the system restore, but I got the following message whenever I tried: System Restore has failed. Your computer and setting file system did not change.

    I also uninstalled the game, I had installed the day before. But between the time I installed the game and when this problem started I had turned my computer on and off several times and no problem occurred.

    I also tried to customize - shows the settings and change the resolution bar but just everything is too small, including the text and icons and everything all square and unpleasant to look at.

    How can I get everything back to normal?

    Problems with system restore:

    http://Service1.Symantec.com/support/sharedtech.nsf/pfdocs/2005113009323013

    1. If you use Norton (Etc), disable it before using System Restore. info at the link above.

    2. try SR in safe mode:

    Try typing F8 at startup and in the list of Boot selections, select Mode safe using ARROW top to go there > and then press ENTER.

    Try a restore of the system once, to choose a Restore Point prior to your problem...

    Click Start > programs > Accessories > system tools > system restore > choose another time > next > etc.

    3 Malware will stop at the system restore:

    If necessary, do all the work Safe Mode with network.

     

    To get into Safe Mode with network, press F8 at the Power On / boot and use key arrow upward to get into SafeMode with networking from the list of options, and then press ENTER.

    http://www.Malwarebytes.org/MBAM.php

    Malwarebytes is as its name suggests, a Malware Remover!

    Download the free Version from the link above.

    Download, install, upgrade and scan once a fortnight.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Restore point:

    http://www.howtogeek.com/HOWTO/Windows-Vista/using-Windows-Vista-system-restore/

    Do Safe Mode system restore, if it is impossible to do in Normal Mode.

    Try typing F8 at startup and in the list of Boot selections, select Mode safe using ARROW top to go there > and then press ENTER.

    Try a restore of the system once, to choose a Restore Point prior to your problem...

    Click Start > programs > Accessories > system tools > system restore > choose another time > next > etc.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    If the above does not fix it:

    Go to the website of the manufacturer of your computer/laptop > drivers and downloads Section > key in your model number > look for the latest Vista drivers > download/install them.

    Then:

    http://Windows.Microsoft.com/en-AU/Windows-Vista/change-screen-resolution

    Change the screen resolution

    Screen resolution refers to the clarity of the text and images on your screen. At higher resolutions, items appear sharper. They appear also smaller, so more items adapted to the screen. At lower resolutions, fewer items adapted to the screen, but they are larger and easier to see. At very low resolutions, however, images may have serrated edges.

    See you soon

    Mick Murphy - Microsoft partner

  • Adding id properties increases the size of the file?

    I tend use the property id, in addition to comments as a tool to help me see the layout of components and converters to display the overview of my work space. I'm curious to know if it's a bad practice, if these are properties that are not necessary to the functionality of a given application, and if so, to what extent?

    Thank you

    ~ B

    It adds to the size of the SWF, but probably not significantly.

  • When I save my RAW image edited to JPEG of the size of the file is very small? approximately 3 MB per image. How can I increase it?

    I record in JPEG, large file size, but the file saves about 3 MB? Then, when my clients want to put my images on a canvas, etc. image false. But when I use to shoot just JPEG saving used to increase the size of the file and the photos were very good to put on a canvas, etc.

    Please help and thanks in advance.

    Mark

    I'm not a user of the Canon system, so I'm not familiar with their cameras. But I googled your resolution and found a link.

    http://www.learn.USA.Canon.com/resources/articles/2011/eos_qt_small_raw_images_article.htm lp

    Apparently, you pull something Canon mRAW calls, which is a 10.5MP raw file designed for 4 K devices. In other words, you set your camera to produce small size raw files, less than half of a JPEG full size. Then you use Camera Raw to artificially enlarge these files in order to compensate by using a workflow setting widens. I hope that I don't need to explain the futility in this!

    You need to go back to your camera settings, consult the manual and find out how to produce full raw files standard size. This way you do not throw in detail and then the creation of extensions pixelated.

    In short, your camera settings are wrong to produce raw files full size. You are then enlarge the images of 2.4 times and that is why they have air c * p.

    You must change the setting of the camera RAW, and therefore you should not expand in Camera Raw.

  • Size of the file increase even encode settings?

    Hi-

    So I've recently upgraded to CS6 in CS5 and I nocited the size of the video files are much larger when encoding on SOUL CS6, as first CS6, espacilly with MPEG-2.

    For example, in CS5 I had a preset for a specific type of MPEG-2 encoding with the following parameters.

    VIDEO:

    Codec: MainConcept MPEG video

    Quality: 5

    TV standard: NTSC

    Width of the frame: 720

    Frame height: 480

    Frame rate: 29.97

    Field order: None (progressive)

    Pixel format: Standard 4:3 (0,909)

    Profile: hand

    Level: hand

    Go to maximum depth: WE

    Encoding Bitrate: VBR, 2 Pass

    Minimum birate [Mbps]: 4,7

    Target speed [Mbps]: 6.2

    Maximum bitrate [Mbps]: 7.7

    M frames: 3

    N frames: 15

    Closed the GOP all: 0

    Automatic GOP placement: OFF

    Macroblock quantization: 10

    VBV buffer size: 112 x 2Kbytes

    Noise control: sensitivity

    Write SDE: No.

    Forcing service VBV Delay: 0xffff

    Intra DC Precision: 9 Bits

    Write the sequence end Code: Yes

    Incorporate the user blocks SVCD: No.

    Ignore the frame interval: 0

    AUDIO:

    Audio Format: MPEG

    Codec: MainConcept MPEG Audio

    Layer audio: MPEG-1 Layer II Audio

    Audio mode: stereo

    Sample size: 16 bit

    Frequency: 48 kHz

    Speed [Mbps]: 224

    : Psych Mode 2

    De-emphasis: Matter

    Enable CRC: Off

    Set the private Bit: Off

    Set the Copyright Bit: Off

    Set the Original Bit: Off

    ---

    OK, so when I initially exported a project to create the output file was 1.32 GB.

    When I export the same project with the same settings, same bitrate audio, exact data rate pre-defined, same same, etc.., why is the exported file 1.62 GB, which is larger than estimated, 1258 MB and same file size even more, bigger than the file that has been exported by CS5 on the same settings?

    Were there new default settings that changed the compression of the video in Media Encoder CS6? Is there something that needs to be changed? I find it odd that the files are larger in CS6 espacilly if it's the same exact export settings.

    TECHNICAL DATA:

    iMac Intel i3 Dual Core, 3.06 GHz, 8 GB 1067 MHz DDR3 RAM, Adobe Media Encoder v6.0.1 first v6.0.1

    -Christmas

    Hi Noel,

    What are your settings of multiplexers? I ask for two reasons: a) the CS6, we changed the multiplexing Bitrate Type for all constant to Variable MPEG2 presets and CS5.5 b) had a bug where the filling was not added when multiplexing Bitrate Type has the constant value (meaning that throughput resulting for multiplexed output was not really constant); This bug is fixed in CS6. I don't know if (a) could be to increase the size of your file, but would certainly be b.

    If multiplexing Bitrate Type for both your old and new presets constant value, then it is to be expected that the resulting CS6 file will be larger due to padding. I don't know if QuickTime (or MediaInfo or any other application that reports the properties of the clip) represents the padding that was missing in the output of 5.5 MPEG2, but is present in the output of 6.0.

  • I use a 43 in. TV as monitor and have trouble reading the text in the drop-down menu (file, editing, display etc.) boxes. Is it possible to increase the size?

    I downloaded the theme and font size changer, but I cannot increase the size of the text in the drop-down menus. I sit 10 ft away from the TV with a wireless keyboard. Even when I Zoom on the page of the menu drop-down does not increase in size. With the help of a mini Mac OSX 10.3

    I think that the solution is a TV 60 ", but I hope we can find a more affordable solution!

    I think that the menu bar on Mac OS X.

    [Apple] Window helps the Firefox Edit View History bookmarks file tool

    -wouldn't be likely changes via an add-on or a parameter of Firefox.

    However, as a Windows user, I am at a disadvantage by experimenting.

    I've seen a number of discussions on the forums of Apple, without a clear solution:

Maybe you are looking for

  • App update work does not after updating IOS 10

    Hi guys,. After the update my 6plus iphone to IOS 10 yesterday, I have a problem with the update of the applications on the Itunes store. Updates are not downloaded. IPhones shows it starts the download but nothing happens. Tried via 4G and Wifi but

  • 7 pixel dead on the iPhone 6 sec more

    Hello! I bought an iPhone 6 s 12/01/2015 more. Not even a week using it. The pixels are white and they are all over the screen. If I take it to an Apple Store, they replaced it for a new? I restored the OS, and I have no backup now. What is Apple's p

  • HP all in one 6200 series ceased printing. Indicates the printer is not working online.

    After printing a document on my HP All in One 6200 series to my computer today, when I tried to print the following document, I got a signal to check color cartridge.  I checked it, ink was low, but I was not printing in color and black cartridge is

  • can not open attachments directly from browser using ie7 or ie8

    When I try to open an attachment (ie. pdf file or video file), it does allow me to open it. It works as I don't have the program to open it. where normily he would give me the option 'open', 'save' or 'Cancel', it gives me just the option 'Save' and

  • Automatic, log in via the wireless network bridge

    The main router (provided by the ISP) which brings the Internet to my home is connected to a media player.  I have a USB adapter wireless (Linksys N Series) and an ADSL Modem / gateway (Linksys WGN Modem) connected to my PC.  I can't create a wired c