Database File Space Available (%) alert for sysft_ Catalog_Name

Hi,
i'm monitoring some SQL Server environments by Grid Control 10.2.0.5 and plug-in for SQL Server 4.0.3.1.0.
I have received some alerts sent from Database File Space Available (%) metric about lack of space for the sysft_<Catalog_Name> datafile, but i can't manage it by Microsoft SQL Management Studio.. or not?
Can someone give me a suggestion to resolve this issue?
Thanks
SBI

Hi SBI,
From the EMGC Console, go to the SQLServer plugin homepage and click on "Metrics and Policy Settings" under the related links section of the page. Next click on the edit column (3 pencils) for the Metric "Database File Space Available (%)". This will take you to the Edit Advanced Settings page where you can specify what database files should be examined for this metric and what thresholds should be set for that particular file.
Regards,
-- Craig

Similar Messages

  • Database log not available alert

    Database abc is on sql instance test1\test
    I get following scom alert
    at 6:00 AM
    The log
     for database 'abc' is not available. Check the event log for related error messages. Resolve any errors and restart the database.
    I check 6:00 am event viewer and find following log from operation manager---What is issue and how to fix it?
    Date  4/6                    Source:     HealthService
    Time: 6:00:00 AM        Category: Health Service
    Type: Warning             Event ID: 5399
    User: N/A
    Computer: test1
    Decsription:
    Event Type: Warning
    Event Source: HealthService
    Event Category: Health Service
    Event ID: 5399
    Date:  4/5/2014
    Time:  9:30:00 PM
    User:  N/A
    Computer: Test1
    Description:
    A rule has generated 50 alerts in the last 60 seconds.  Usually, when a rule generates this many alerts, it is because the rule definition is misconfigured.  Please examine the rule for errors. In order to avoid excessive load, this rule will be temporarily
    suspended until 2014-04-05T21:39:59.1612979-05:00.
    Rule: Microsoft.SQLServer.2005.Operating_System_error_encountered_1_5_Rule
    Instance: test
    Instance ID: {EFEA1D5F-A78D-A15E-0B36-F287DDB50225}
    Management Group: abcdef
    For more information, see Help and Support Center at
    http://go.microsoft.com/fwlink/events.asp.

    Hi bestrongself,
    According to your message, we need to find this rule in the console for troubleshooting this issue. Firstly, we search the display name of the rule/monitor/discovery, then paste the display name in the search window, click ”View Knowledge” to bring up the
    rule properties. From here , you can view the data source, and get a better idea of what the rule/monitor/discovery does, and how to troubleshoot it. For more information, see:
    http://blogs.technet.com/b/kevinholman/archive/2009/04/17/how-to-find-a-specific-rule-monitor-discovery-in-the-console-when-all-you-have-a-more-cryptic-id-in-an-alert.aspx
    The rule can generate alerts whenever an error occurs in the Application event log or the System event log on any server being monitored by Operation Manager, for more information, see:
    Operations Manager Alerts for Event Log Errors
    Hope it can help you.
    Regards,
    Sofiya Li
    If you have any feedback on our support, please click here.
    Sofiya Li
    TechNet Community Support

  • SQL AGENT JOB FOR DISK SPACE USAGE ALERT

    Hello Experts
    what is the best way to set up a disk space usage alert for my sql server 2008r2 databases. i want to get a notification or alert whenever the disk usage is >80%, thank you as usual.

    Hi
    You can use sql server job for same. I am using below procedure configured with sql job running every 15 mins
    Example: EXEC [DBA_DiskSpaceMntr]
    @mailto = 'team mail',
    @CDrivethreshold = 1024,
    @OtherDrivethreshold = 10240
    CREATE PROCEDURE [dbo].[DBA_DiskSpaceMntr]
    @mailto nvarchar(4000),
    @CDrivethreshold INT,
    @DDrivethreshold INT,
    @YDrivethreshold INT,
    @OtherDrivethreshold INT
    AS
    BEGIN
    declare @count int;
    declare @DiskFreeSpace int;
    declare @tempfspace int;
    declare @tempdrive char(1);
    declare @mailbody nvarchar(4000);
    declare @MailSubject nvarchar(1000);
    declare @AlertMessage nvarchar(4000);
    declare @altflag bit;
    declare @sub nvarchar(4000);
    declare @cmd nvarchar(4000);
    set @count = 0;
    SET @mailbody = '';
    SET @cmd = '';
    set nocount on
    IF EXISTS(select * from sys.sysobjects where id = object_id('#driveinfo'))
    drop table #driveinfo
    create table #driveinfo(id int identity(1,1),drive char(1), fspace int)
    insert into #driveinfo EXEC master..xp_fixeddrives
    SELECT @DiskFreeSpace = fspace FROM #driveinfo where drive in ('C')
    IF @DiskFreeSpace < @CDrivethreshold
    Begin
    SET @MailSubject = 'Drive C: free space is low on ' + cast(Serverproperty('Machinename') as nVarchar)
    SET @mailbody = 'Drive C: on ' + cast(Serverproperty('Machinename') as nVarchar) + ' has only ' + CAST(@DiskFreeSpace AS VARCHAR) + ' MB left. Please free up space on this drive. '
    --select * FROM #driveinfo where drive in ('L')
    EXEC msdb.dbo.sp_send_dbmail
    @profile_name = 'SQLDBA_Support',
    @recipients= @mailto,
    @subject = @MailSubject,
    @body = @mailbody,
    --@file_attachments = @logfile,
    @body_format = 'HTML'
    End
    SELECT @DiskFreeSpace = fspace FROM #driveinfo where drive in ('D')
    IF @DiskFreeSpace < @DDrivethreshold
    Begin
    SET @MailSubject = 'Drive D: free space is low on ' + cast(Serverproperty('Machinename') as nVarchar)
    SET @mailbody = 'Drive D: on ' + cast(Serverproperty('Machinename') as nVarchar) + ' has only ' + CAST(@DiskFreeSpace AS VARCHAR) + ' MB left. Please free up space on this drive. '
    EXEC msdb.dbo.sp_send_dbmail
    @profile_name = 'SQLDBA_Support',
    @recipients= @mailto,
    @subject = @MailSubject,
    @body = @mailbody,
    --@file_attachments = @logfile,
    @body_format = 'HTML'
    End
    SELECT @DiskFreeSpace = fspace FROM #driveinfo where drive in ('Y')
    IF @DiskFreeSpace < @YDrivethreshold
    Begin
    SET @MailSubject = 'Drive Y: free space is low on ' + cast(Serverproperty('Machinename') as nVarchar)
    SET @mailbody = 'Drive Y: on ' + cast(Serverproperty('Machinename') as nVarchar) + ' has only ' + CAST(@DiskFreeSpace AS VARCHAR) + ' MB left. Please free up space on this drive. '
    EXEC msdb.dbo.sp_send_dbmail
    @profile_name = 'profile_name',
    @recipients= @mailto,
    @subject = @MailSubject,
    @body = @mailbody,
    --@file_attachments = @logfile,
    @body_format = 'HTML'
    End
    set @mailbody='';
    while (select count(*) from #driveinfo ) >= @count
    begin
    set @tempfspace = (select fspace from #driveinfo where id = @count and drive not in ('C','Q','D','Y'))
    set @tempdrive = (select drive from #driveinfo where id = @count and drive not in ('C','Q','D','Y'))
    if @tempfspace < @OtherDrivethreshold
    BEGIN
    SET @altflag = 1;
    SET @mailbody = @mailbody + '<p>Drive ' + CAST(@tempdrive AS NVARCHAR(10)) + ' has ' + CAST(@tempfspace AS NVARCHAR(10)) + ' MB free</br>'
    --SET @cmd = 'dir /s /-c ' + @tempdrive + ':\ > ' + @logfile
    --EXEC xp_cmdshell @cmd
    END
    set @count = @count + 1
    end
    IF (@altflag = 1)
    BEGIN
    SET @sub = 'Monitor Space on ' + cast(Serverproperty('Machinename') as nVarchar)
    set @mailbody = 'The below drives on ' + cast(Serverproperty('Machinename') as nVarchar) + ' have low disk space then threshold limit ' + CAST(@OtherDrivethreshold as VARCHAR(10)) +' Please free up the space in below specified drives <p>' + @mailbody
    --print 'Space on ' + @tempdrive + ': is very low: ' + str(@tempfspace)+ 'MB'
    EXEC msdb.dbo.sp_send_dbmail
    @profile_name = 'Profile name',
    @recipients= @mailto,
    @subject = @sub,
    @body = @mailbody,
    --@file_attachments = @logfile,
    @body_format = 'HTML'
    END
    drop table #driveinfo
    set nocount off
    END
    Thanks Saurabh Sinha
    http://saurabhsinhainblogs.blogspot.in/
    Please click the Mark as answer button and vote as helpful
    if this reply solves your problem

  • File.ftp.FTPEx: 501 Unexpected reply codeUnknown extension in database file name

    Hi Folks,
    I am trying to place file in the iSeries library folder and for this I am using a receiver file adapter with the following config, FYI, I am not using any FCC
    Target Directory : /QSYS.LIB/XXXXX.LIB/
    File Name Scheme : FILENAME.FILE
    As I am doing this config for the first time I am using the following SCN discussion as my reference,
    File FTP to AS400 Library folder | SCN
    but i am still getting the error message at the receiver channel as below
    Message processing failed. Cause: com.sap.engine.interfaces.messaging.api.exception.MessagingException: An error occurred while connecting to the FTP server 'XXXXXX:21'. The FTP server returned the following error message: 'com.sap.aii.adapter.file.ftp.FTPEx: 501 Unexpected reply codeUnknown extension in database file name.'. For details, contact your FTP server vendor.
    Please let me know if anyone has anymore suggestions.

    Hi Kalyan,
    The File Name extension that you configured is incorrect I think.  Can you try to change the extension to .txt and try once.
    File Name Scheme : FILENAME.FILE
    Thanks,
    Satish.

  • How to reduce unused/available space in database file

    our database is partitioned on monthly basis and i am seeing large amount (nearly 50-70%) of space available in the data files. These files are not expected to grow(in large amount) in future. So i want to remove the unused space. What is the reason for
    that large amount of unused space and how to eliminate it? I tried shrinking the file which decresed the unused space to decent size but that resulted in fragmentation. To avoid fragmentation I rebuilded the indexes which again brought the unused space to
    the original size.
    Is there any way to find which table (which field ) is causing this.
    thanks in advance,

    hi Kalen,
      I am using sql server 2008 . I ran the following query [borrowed from other online sources]to get used,unused space for the files.
    --================query======================
    select
    [FileSizeMB]
    =
    convert(numeric(10,2),sum(round(a.size/128.,2))),
    [UsedSpaceMB]
    =
    convert(numeric(10,2),sum(round(fileproperty(
    a.name,'SpaceUsed')/128.,2)))
    [UnusedSpaceMB]
    =
    convert(numeric(10,2),sum(round((a.size-fileproperty(
    a.name,'SpaceUsed'))/128.,2)))
    [Type]
    =
    case
    when a.groupid
    is
    null
    then
    when a.groupid
    = 0
    then
    'Log'
    else
    'Data'
    end,
    [DBFileName]
    =
    isnull(a.name,'***
    Total for all files ***')
    from
    sysfiles a
    group
    by
    groupid,a.name
    with
    rollup having
    a.groupid
    is
    null
    or
    a.name
    is
    not
    null
    order
    by
    case
    when a.groupid
    is
    null
    then 99
    when a.groupid
    = 0
    then 0
    else 1
    end,
    a
    .groupid,
    case
    when a.name
    is
    null
    then 99
    else 0
    end,
    a
    .name
    --===========end of the query======================
    When I ran the query sugested by you, i observed that there is no much difference[less than 10] between row_reserved and row_used value and all the reamining columns are 0.
    Any suggestion is appreciated
    thanks,
    mp

  • OEM12c - Added tablespace to database and the Available Space Used (%) Alerts is not checked

    Hello -  I'm new to OEM 12c and I'm still getting my head around the monitoring aspects of it.  I just added two temporary tablespaces to a database.  When I look at the tablespaces via OEM12c, I notice that the Avaliable Space Used (%) Alerts column has a check mark for all the tablespaces except the two I just created.  The original TEMP tablespace does have check in the column.  Will these two new tablespaces be monitored for used space?
    Thanks!
    Shawn

    I'm assuming you're on DB 11.2 or higher...    Temp and Undo are typically excluded from monitoring due to their cyclical nature.   Thresholds must explicitly be set from 11.2 and higher.  Please see this note for more details.   Another explanation might be timing... if you just added them, and the tablespace collection hasn't run, you won't see that check because the metric hasn't validated them yet.   If you go back after the collection runs, you should see (if they were a normal tablespace and the temp/undo monitoring wasn't in play)...
    How to - Exclude UNDO and TEMP Tablespaces From The Tablespace Used (%) Metric (Doc ID 816920.1)

  • Msg states: "your Mac os x startup disk has no more space available for application memory...Removing files from startup disk may help." yet, I have 299.11GB of 319.73GB available. Why is msg received?

    The full message reads as, "
    Force Quit Applications
    Your Mac OS X startup disk has no more space available for application memory. 
    To avoid problems with your computer, quit any applications you are not using.  Closing windows and removing files from your startup disk will also help."
    Currently I have:
    Capacity: 319.73GB ; Available: 299.11GB ; Used: 20.62GB
    Why am I receiving this message and being forced to force quit items?  Both times the message has been received, Safari was open (frozen) while checking yahoo! mail.
    I received my MacBook Pro as a gift less than a month ago and I have only saved 20 pictures within iPhoto and installed Skype and Vuze...no other modifications from default have been made.
    Any idea?

    The full message reads as, "
    Force Quit Applications
    Your Mac OS X startup disk has no more space available for application memory. 
    To avoid problems with your computer, quit any applications you are not using.  Closing windows and removing files from your startup disk will also help."
    Currently I have:
    Capacity: 319.73GB ; Available: 299.11GB ; Used: 20.62GB
    Why am I receiving this message and being forced to force quit items?  Both times the message has been received, Safari was open (frozen) while checking yahoo! mail.
    I received my MacBook Pro as a gift less than a month ago and I have only saved 20 pictures within iPhoto and installed Skype and Vuze...no other modifications from default have been made.
    Any idea?

  • "Your Mac OSX startup disk has no more space available for application memory" - uploading files problem

    Hi everyone,
    I'm running a late-2012 27 inch iMac - 3.4GHz Intel Core i7, 32GB 1600 MHz DDR3 with the 3TB fusion drive, OS 10.8.4. At present there is 1.92TB of available storage.
    I have received this message "Your Mac OSX startup disk has no more space available for application memory" just before a full on crash multiple times in the past couple of days whilst using WeTransfer to send over some large files (500MB+). The applications I have had open at the time have been: Activity Monitor, App Store, Firefox, and Finder. Over the course of uploading the files, the active system memory has gone from 1.04GB and steadily increased until it more or less maxes out around 29GB, at which point the Page Outs rocket up to around 40GB/s and the swap memory fills up pretty quickly until the computer basically can't take any more and blacks out.
    This is a pretty new thing, haven't really had an issues before. My main software used: Sibelius 7 & Logic Pro X. I've also recently started working with Final Cut Pro X, which seems to have been struggling at points. I've tried closing everything, restarting the computer and not opening anything (specifically NOT FCPX) before attempting an upload. I've even gone so far as to remove FCPX from my system, and yet the problem is still recurring. Both "kernal_task" and "WindowServer" have been running high on CPU when these problems have occurred.
    Does anyone know what might be the issue and how it could possibly be resolved?
    Really appreciate any help, I'm in the middle of a fairly sizeable project and the deadlines are just around the corner.
    Thanks,
    Tom

    There is excessive swapping of data between physical memory and virtual memory. That can happen for two reasons:
    You have a long-running process with a memory leak (i.e., a bug), or
    You don't have enough memory installed for your usage pattern.
    Tracking down a memory leak can be difficult, and it may come down to a process of elimination.
    When you notice the swap activity, open the Activity Monitor application and select All Processes from the menu in the toolbar, if not already selected. Click the heading of the Real Mem column in the process table twice to sort the table with the highest value at the top. If you don't see that column, select
    View ▹ Columns ▹ Real Memory
    from the menu bar.
    If one process (excluding "kernel_task") is using much more memory than all the others, that could be an indication of a leak. A better indication would be a process that continually grabs more and more real memory over time without ever releasing it. Here is an example of how it's done.
    The process named "Safari Web Content" renders web pages for Safari and other applications. It uses a lot of memory and may leak if certain Safari extensions or third-party web plugins are installed. Consider it a prime suspect.
    If you don't have an obvious memory leak, your options are to install more memory (if possible) or to run fewer programs simultaneously.
    The next suggestion is only for users familiar with the shell. For a more precise, but potentially misleading, test, run the following command: 
    sudo leaks -nocontext -nostacks process | grep total
    where process is the name of a process you suspect of leaking memory. Almost every process will leak some memory; the question is how much, and especially how much the leak increases with time. I can’t be more specific. See the leaks(1) man page and the Apple developer documentation for details.

  • What does _total for instance mean in SQL server log space used alert

    Hi,
    I would like to know the meaning of specifying _total for instance when creating log space used alert in SQL server 2008R2 server.
    Thanks,
    Preetha

    Hi,
    ‘_total’ means performance condition alerts are available for all the database and it monitors all the existing databases.
    Check out the following TechNet article for more information about
    performance condition:
    http://technet.microsoft.com/en-us/library/ms180982.aspx
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Short dump - No more storage space available for extending an internal tabl

    Hi All,
    I have requirement in which my program generates a text file on my presentation server. Here my problem is, this requirement can not be executed in back ground, it should be done in foreground only. When I execute in foreground, if the data records comes to some 38 lacks then I am getting a short dump saying 'No more storage space available for extending an internal table'.
    And in dump analysis under WHAT HAPPENED section it is giving as
    ' What happened?                                                                                |
    |    You attempted to extend an internal table, but the required space was                         |
    |    not available.
    Please suggest me, what I have to do in this case?
    Thanks in advance.
    Thanks,
    Sudha Mettu

    Hi SuDash,
    Allocation of the memory spaces will be done by BASIS people.
    you can contact them..
    Regards!

  • Hard disk has no more space available for application memory

    I keep this getting this error after my applications freeze for several minutes.
    "Your hard disk has no more space available for application memory."
    I have 1 drive with 160 GB and 46 GB available. I'm pretty sure that's plenty of free space. And why does my memory need my drive? I've got 2.5 GB of memory. That should be plenty sufficient to run Safari without needing virtual memory.
    Help!

    Hello! OSX uses a virtual memory scheme and even though you have a lot of ram it still utilizes the paging file. Panther 10.3.9 and below runs maintenance routines very early in the morning to clear temp files and other stuff. If you don't normally leave it on 24/7 then you may need to consider a utility to clear the temp files and do the routine maintenance. Tiger 10.4+ runs these automatically. I suggest leaving it on all night for a day or so and then restarting and see if the problem clears up. Here's a list of utilities such as Macjanitor.Tom
    Utilities

  • Limiting the amount of space available for time machine

    How do I limit the amount of space time machine is allowed to use on my 500gb external hard drive? I need the rest of the space for other stuff. Is there a way to partition the external hard drive or make time machine think there is only a certain amount of space available?

    Yes. Open up Disk Utility (located in utilities in your applications folder), and select the drive. Make sure you select the actual Drive (the one with the amount of space listed on the name) on the panel on your left. click the partition tab, and open the drop down menu under "Volume Scheme". choose the number of partitions. I have my external drive at 2 partitions, one for TM and one for general files. move the slider bar that will appear in the panel below to determine the size of the partitions. the size of you TM-dedicated partition should be at least twice the size of the drive you are backing up.
    Hope this helps.

  • Error in identifying control File  , check alert for more details

    Hi ,
    I am unable to create user in the database , I can connect to sqlplus as sysdba
    Getting the following error :
    Error in identifying , check alert for more details :
    When I run : Show Parameter Contol_Files ;
    I am getting control01.ctl and control02.ctl with their paths mentioned.
    Kindly Help .

    1> env |sort
    COLORTERM=gnome-terminal
    CVS_RSH=ssh
    DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-YFSE8cCveS,guid=1736156c077604e0df1154004fe9c3bb
    DESKTOP_SESSION=default
    DESKTOP_STARTUP_ID=
    DISPLAY=:0.0
    G_BROKEN_FILENAMES=1
    GDMSESSION=default
    GDM_XSERVER_LOCATION=local
    GNOME_DESKTOP_SESSION_ID=Default
    GNOME_KEYRING_SOCKET=/tmp/keyring-C6CnCJ/socket
    GTK_RC_FILES=/etc/gtk/gtkrc:/home/oracle/.gtkrc-1.2-gnome2
    HISTSIZE=1000
    HOME=/home/oracle
    HOSTNAME=localhost.localdomain
    INPUTRC=/etc/inputrc
    KDEDIR=/usr
    KDE_IS_PRELINKED=1
    KDE_NO_IPV6=1
    LANG=en_US.UTF-8
    LESSOPEN=|/usr/bin/lesspipe.sh %s
    LOGNAME=oracle
    LS_COLORS=no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:
    MAIL=/var/spool/mail/oracle
    OLDPWD=/home/oracle
    ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_1
    ORACLE_SID=ORCL
    PATH=/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/home/oracle/bin:/home/oracle/app/oracle/product/11.2.0/dbhome_1/bin
    PWD=/home/oracle/app/oracle/product/11.2.0
    SESSION_MANAGER=local/localhost.localdomain:/tmp/.ICE-unix/12103
    SHELL=/bin/bash
    SHLVL=2
    SSH_AGENT_PID=12142
    SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass
    SSH_AUTH_SOCK=/tmp/ssh-IPvxh12103/agent.12103
    TERM=xterm
    USERNAME=oracle
    USER=oracle
    _=/usr/bin/env
    WINDOWID=26243546
    XAUTHORITY=/tmp/.gdmAO4NGW
    XMODIFIERS=@im=none
    2>Output of ls-l
    -rw-r----- 1 oracle oracle 9748480 Jun 30 00:53 /home/oracle/app/oracle/oradata/orcl/control01.ctl
    -rw-r----- 1 oracle oracle 9748480 Jun 30 00:53 /home/oracle/app/oracle/flash_recovery_area/orcl/control02.ctl
    3>
    SQL> show parameter control_files;
    NAME TYPE VALUE
    control_files string /home/oracle/app/oracle/oradat
    a/orcl/control01.ctl, /home/or
    acle/app/oracle/flash_recovery
    _area/orcl/control02.ctl
    4>
    SQL> startup
    ORACLE instance started.
    Total System Global Area 839282688 bytes
    Fixed Size 2217992 bytes
    Variable Size 494929912 bytes
    Database Buffers 339738624 bytes
    Redo Buffers 2396160 bytes
    ORA-00205: error in identifying control file, check alert log for more info
    I did by trying , startup upgrade , startup nomount
    but still facing the same error.
    Kindly help.

  • Cannot Clear Critical Alert for Physical Standby Databases

    10.2.0.4.0 Grid Control monitoring 10.2.0.4.0 databases and standby databases with 10.2.0.4.0 agents.
    The standby databases are running on Xen guests. The O/S is Red Hat 4 Advanced Server.
    I had a failure of Xen guest on Saturday that caused me to have to rebuild the standby servers. EM Grid Control successfully verifies the configurations and the status is normal for both physical standby databases. (A rebuilt logical standby database shows no alerts.)
    Grid Control database targets page shows a single critical alert for each physical standby database. The alert is for "number of missing media files is 4". The metric graph shows the count as 0 since before the rebuilds. I cannot clear the alerts from the Critical Alerts page. Grid Control reports "The selected alert(s) cannot be manually cleared. They will clear automatically once the metric is no longer in a critical or warning state.".
    Any suggestions?
    Thanks,
    Ray Westphal

    Thanks for the reply Anthony.
    The result of the query on both standby databases is '0'. The metric graph also shows the value at '0' since before rebuilds.
    And the OMS db and agents have been reset several times since I posted this.
    Ray Westphal.

  • Filled redo log files are available to LGWR for reuse

    Hi,
    Oracle version:
    Oracle Database 10g Release 10.2.0.4.0 -
    OS:Windows XP
    In oracle documentation it is mentioned that:
    Filled redo log files are available to LGWR for reuse depending on whether archiving is enabled.
    *> If archiving is disabled (the database is in NOARCHIVELOG mode), a filled redo log file is available after the changes recorded in it have been written to the datafiles*.
    Link for Documentation is:
    http://docs.oracle.com/cd/B28359_01/server.111/b28310/onlineredo001.htm
    My doubt is:
    Redo Records are written to datafiles also??

    user12141893 wrote:
    Does it mean:
    Suppose:
    Online redo log files contains some redo entries and database buffer cache contains some data and this data belong to redo entries of redo log files.
    Now this redo log file can't be reused until those (related) blocks of database buffer cache are written into datafiles.
    This is sort of correct. If the log file would be filled up , LGWR would switch over to the next log group and would initiate a Log Switch which would further trigger DBWR to start checkpointing the content protected by this log group to the data file. By the time this operation would be going on, the Log group's members would have the status of Active and once it would be complete, the status would be marked to Inactive which means that this log group and its members can be reused by LGWR.
    HTH
    Aman....

Maybe you are looking for

  • My iphone won't show up in itunes on my g5 mac

    It has before. Not sure what happened.

  • 64 bit ATM deluxe actually works, you just can't install

    I actually could hardly believe it. Is Adobe Really that lazy that they can't just repackage the installer so it will work on a 64bit version of windows? Well, it seems so. I went to my coworkers computer, who has the same version of the software as

  • DW CS5 - fonts not displaying properly

    Hi there I've just downloaded a trial version of Dreamweaver CS5.5 and seem to be having a little trouble as the fonts on the actual graphic interface are not displaying correctly. Here's what I mean: https://fbcdn-sphotos-a.akamaihd.net/hphotos-ak-s

  • Help with Goods Receipts report by using batches

    Good morning! I need some help to create a new report based a Goods Receipt by using batches. I have a customer that needs a report wich it lists to them items and the batches that was used on the Goods Receipts...But didn't get to solve it... Is the

  • How to use Synchronized Keyword

    Hi guys, Sorry if this is a simple question, but I'm not sure about the following: Suppose we have the class, Class Foo public synchronized void bar1() {...} public synchronized void bar2() {...} If I have two threads running concurrently, say T1 and