Expanded controlfile section 19 from 816 to 1633 records

Hi,
My Client has two databases , one is on 9.2.0.5 and the other is 10.2.0.4 and both have the standby databases.
I am getting expanded controlfile section 19 from 816 to 1633 records message in my standby databases oftenly. I am getting this message in both of my standby databases , may be digits can change.
The exact message in my standby 9i database is as like below.
Fri Nov 19 11:52:34 2010
Media Recovery Waiting for thread 1 seq# 11010
Fri Nov 19 12:40:17 2010
kccrsz: expanded controlfile section 19 from 816 to 1633 records
requested to grow by 816 record(s); added 2 block(s) of records
Fri Nov 19 12:41:34 2010
Media Recovery Log /prodarch/prodarch/prod_1_11010.arc
Fri Nov 19 12:41:55 2010
Media Recovery Waiting for thread 1 seq# 11011
We never touch the controlfile for any use.
What the message says exactly ?. Please suggest me , if anybody of you have gotten this message before.
Thanks in advance,
Sunand

The message is just a warning first off.
CONTROL_FILE_RECORD_KEEP_TIME specifies the minimum number of days before a reusable record in the control file can be reused. So if yours is growing its no big deal, it will stop. The default setting for this is 7 days, you could set it lower but its not a very good idea.
This parameter applies only to records in the control file that are reusable like backup and archive.
CONTROL_FILE_RECORD_KEEP_TIME specifies the minimum number of days before a reusable record in the control file can be reused ... NOT the MAXIMUM.

Similar Messages

  • Expanded controlfile section

    Hi:
    What is this information?,
    The information in alert_log is:
    kccrsz: expanded controlfile section 11 from 867 to 881 records
    requested to grow by 8 record(s); added 1 block(s) of records
    (1)who tell me what's causing this issue,
    and give me a solution/support/hint
    Thanks!

    This is informational only. Oracle8 and beyond adds the feature of automatic controlfile expansion. This allows you to add new datafiles, for example, even if there is currently no space allocated for that type of record, without having to re-create the controlfile first (a must in version 7). Oracle8 automatically expands the controlfile to accommodate the new record. NOTE: This means you can very large controlfiles.
    The controlfile is broken up into "sections" and these messages are just telling you one of those sections was autoexpanded.
    SJH
    OCP DBA

  • Kccrsz: expanded controlfile ....

    Hello,
    I have such interesting information in my
    $O_H/<sid>/bdump/alert_<sid>.log file:
    kccrsz: expanded controlfile section 9 from 35848 to 36302 records
    requested to grow by 362 record(s); added 2 block(s) of records
    COuld smb. translate me in English this?
    Thank You.

    CONTROL_FILES
    Parameter type
    String
    Syntax
    CONTROL_FILES = filename [, filename [...] ]
    Note: The control file name can be an OMF (Oracle Managed Files) name. This occurs when the control file is re-created using the CREATE CONTROLFILE REUSE statement.
    Default value
    Operating system-dependent
    Parameter class
    Static
    Range of values
    1 to 8 filenames
    Real Application Clusters
    Multiple instances must have the same value.
    Every database has a control file, which contains entries that describe the structure of the database (such as its name, the timestamp of its creation, and the names and locations of its datafiles and redo files). CONTROL_FILES specifies one or more names of control files, separated by commas.
    Oracle Corporation recommends that you multiplex multiple control files on different devices or mirror the file at the operating system level.
    See Also:
    Oracle9i Database Performance Tuning Guide and Reference
    Oracle9i Database Administrator's Guide
    Joel P�rez

  • Form - Expand/Collapse sections to simulate website, is this possible?

    Hello,
    My FLA file is based in CS5 with AS3. I posted this in the AS3 forum but if it can be done without AS3 then I am open to that possibility as well.
    I am creating a non-functioning form, meaning I just need it to look like a form but the functionality doesn't need to work. Atleast not in this stage of development.
    The functionality I need basically looks like the following:
    - http://static.geewax.org/checktree/index.html (What would this be called in the flash world?? my google search terms have not been successful)
    Where:
    1. Clicking the arrow expands a section.
    2. The arrow changes to a different arrow when the section is expanded.
    3. It will be inside of a white box, the white box needs to resize to either shrink or get taller when a section is expanded or collapsed.
    One section will be checkboxes, and one section will be radio buttons.
    Thank you very much in advance . I look forward to exploring into how to accomplish such a thing.
    Message was edited by: da4seen

    Okay,
    I know I may be going at this completely wrong but posting my code here so someone can give me feedback so far and point me in directions where I need improvement.
    So far this code:
    1. Expands/Collapses the 1st section, and properly moves the 2nd section to the correct position.
    My problem so far is:
    1. The contents of the 2nd section doesn't update to the correct position when section 1 expands/collapses.
    import fl.controls.CheckBox;
    import fl.controls.RadioButton;
    //Set Variable for collapse position
    var collapsePosition:int = 0;
    // Tab1 Group 1
    var tab1_gp1_main:CheckBox = new CheckBox();
    var tab1_gp1_op1:CheckBox = new CheckBox();
    var tab1_gp1_op2:CheckBox = new CheckBox();
    addChild(tab1_gp1_main);
    tab1_gp1_main.move(-110, -300);
    tab1_gp1_main.width = 120;
    tab1_gp1_main.label = "Landscape";
    // Tab1 Group 2;
    var tab1_gp2_main:CheckBox = new CheckBox();
    var tab1_gp2_op1:CheckBox = new CheckBox();
    var tab1_gp2_op2:CheckBox = new CheckBox();
    addChild(tab1_gp2_main);
    tab1_gp2_main.move(-110, 20 + tab1_gp1_main.y );
    tab1_gp2_main.width = 120;
    tab1_gp2_main.label = "Performance";
    // Section Click Listeners
    tab1_gp1_main.addEventListener(MouseEvent.CLICK, sectionHandler);
    tab1_gp2_main.addEventListener(MouseEvent.CLICK, sectionHandler);
    function sectionHandler(event:MouseEvent):void
        switch (event.currentTarget)
            case tab1_gp1_main :
                switch (tab1_gp1_main.selected)
                    case true :
                        addChild(tab1_gp1_op1);
                        addChild(tab1_gp1_op2);
                        tab1_gp1_op1.move(-100, 20 + tab1_gp1_main.y);
                        tab1_gp1_op1.width = 120;
                        tab1_gp1_op1.label = "test 1";
                        tab1_gp1_op2.move(-100, 20 + tab1_gp1_op1.y);
                        tab1_gp1_op2.width = 120;
                        tab1_gp1_op2.label = "test 2";
                        collapsePosition = tab1_gp2_main.y;
                        tab1_gp2_main.move(-110, 20 + tab1_gp1_op2.y);
                        break;
                    case false :
                        removeChild(tab1_gp1_op1);
                        removeChild(tab1_gp1_op2);
                        tab1_gp2_main.move(-110, collapsePosition);
                        break;
                    default :
                        trace('Something is wrong');
                break;
            case tab1_gp2_main :
                switch (tab1_gp2_main.selected)
                    case true :
                        addChild(tab1_gp2_op1);
                        addChild(tab1_gp2_op2);
                        tab1_gp2_op1.move(-100, 20 + tab1_gp2_main.y);
                        tab1_gp2_op1.width = 120;
                        tab1_gp2_op1.label = "test 1";
                        tab1_gp2_op2.move(-100, 20 + tab1_gp2_op1.y);
                        tab1_gp2_op2.width = 120;
                        tab1_gp2_op2.label = "test 2";
                        break;
                    case false :
                        removeChild(tab1_gp2_op1);
                        removeChild(tab1_gp2_op2);
                        break;
                    default :
                        trace('Something is wrong');
                break;
    I have the above AS code inside a movieclip timeline, not sure if this was proper or not but I was trying to keep some code away from my long AS statements on my main timeline.

  • The bottom rubber case of my macbook 13" late 2009 has expanded and has detached from the main body..As i'm not presently under warrantty i wanted to know will the repair be free of charge for me. I had once got it replaced for free but in warranty.

    The bottom rubber case of my macbook 13" late 2009 has expanded and has detached from the main body..As i'm not presently under warranty i wanted to know will the repair be free of charge for me. I had once got it replaced for free but in warranty. As i read some where in the support that apple had agreed with the defect and had decided to replace the bottom covers without any charge. And even if i'm charged for it what will be the amount  will hav to pay for it..
    Thankx

    Hi,
    Here's the Bottom Case Replacement Link
    http://www.apple.com/support/macbook-bottomcase/
    It doesn't answer your specific questions about cost... but it does advise to contact an Apple Store or an AASP...
    Anyway have a look at it... if you haven't already..
    Cheers and Good Luck...

  • Expanding a signature block from 1 person to 2, 3 or 4 persons

    Need help providing a form with a button that expands a signature block from a 1 person signature to 2, 3 or 4 person signatures.  The form is signed by any number of people.  We want the base version to only have 1 signature block and a "button" to add more signature blocks.  Any ideas?  If the number of blocks added ends up increasing the numer of pages, then the pagination should auto change.  I have seen similar forms so I know it can be done, just not sure how!

    Ask in the LiveCycle Designer forum. What you've seen before is probably a dynamic XFA form created with LiveCycle Designer.

  • My notes section disappeared from my iPhone! up. Help!

    My notes section disappeared from my iPhone! I deleted an email account but it was a duplicate of one I already had set up. Help! My baby girls milestone events were put there as I prepared to put them in her baby book! My iCloud hasn't backed up in  a while because I ran out of space...

    Try going into Notes, then tap Accounts at the top left, and then tap All Notes. You can also try going into all of your email account settings and make sure Notes are switched on for all (green side showing).

  • Remove "Pop Noise" from an old vinyl record?

    Hi guys,
    How can I fix or let's say take out "pop noise" from an old vinyl record.
    I have this old song that I need to use which was on an old record.
    I saw a QT tutorial somewhere one time but can't remember where.
    Can anyone help me with this please.
    Many thanks in advance,
    ZIA

    Yes Zia this is a basic fundtion but it can be very frustrating if you try to do too much at one time.
    That's my advice, once you get into the Anaylsis(not Actions) portion select just the points where you find the pops manually, no more than a few minutes at a time or else your computer will spend all day trying to highlight all the problems, and believe me you don't want the fix that comes from letting it go through the entire audio in 24hrs.
    It's best to just try to fix section for section and listen to the results because sometimes the audio will come out sounding distorted and you have to go back and Edit>undo the fixes
    Good luck

  • How get all record from master and matching record from detail

    hi master
    sir i have master detail table
    i have many record in master table but some record in detail table how i get
    all record from master and matching record from detail
    such as
    select m.accid,m.title,d.dr,d.cr from master m, detail d where m.accid=d.accid
    this query not work that get only related record i need all record from master
    please give me idea
    thanking you
    aamir

    hi master
    sir i have master detail table
    i have many record in master table but some record in
    detail table how i get
    all record from master and matching record from
    detail
    such as
    select m.accid,m.title,d.dr,d.cr from master m,
    detail d where m.accid=d.accid
    this query not work that get only related record i
    need all record from master
    please give me idea
    thanking you
    aamir
    select m.accid,m.title,d.dr,d.cr
    from master m, detail d
    where m.accid=d.accid (+)The outer join operator (+) will get you all the details from master and any details from the detail if they exist, but the master details will still be got even if there are not details.
    Note: Oracle 10g now supports ANSI standard outer joins as in:
    select m.accid,m.title,d.dr,d.cr
    from master m LEFT OUTER JOIN detail d on m.accid=d.accid

  • Material Description in SO from Customer-Material Info Record

    Hi,
    Currently whenever user is entering the customer material number in SO item, system is bringing the SAP internal material corresponding to that.  But the material description is coming from the material master only.
    I want the material description in the SO item to be populated from Customer-Material Info Record whenever user entered the Customer material number.
    Any possibilities for the same by standard configuration without going for any enhancements.
    Thanks in advance,
    Mallik

    Hello
    Go to T code VD52 choose that customer and material combination and click on to its details blue lens on application tool bar
    In the screen which is coming ,enter your description in the CUSTOMER DESCRIPTION tab the second one and save
    Now create a sales order and see
    Your requirement will be fulfilled
    If  a material is pen description is ball pen in material master and for customer A you have defined it as Pen 1 and description as Super ball pen in VD51
    Now in sales order the description will appear as  Super ball pen
    Hope you have checked the field info record in VOV8
    I have tried this tested this and getting it
    Regards
    Raja
    Edited by: ramanathan raja on Dec 2, 2008 10:43 PM

  • Is there a way of "merging" songs in iTunes. Several times, I have downloaded from the Internet, or recorded from CDs, then found the tracks broken up to appear as separate "Albums". I have a 5-movement symphony, which appears as 5 separate songs?

    Is there a way of "merging" songs in iTunes? Several times, I have downloaded recordings from the Internet, or recorded from CDs, then found the tracks broken up to appear as separate "Albums". I have a 5-movement symphony, which appears as 5 separate songs - Irritating!

    Try posting in a more appropriate forum, as this has noting to do with itunes U - the place where University/college/museums post education material.

  • I want to diaplay my records from the databasewith 10 records per page. i l

    i want to diaplay my records from the databasewith 10 records per page. i learned that it can be done through pagination . Please can anyone there help me and give me the code of how to page my records in my jsp pages
    I have small code ,but its not working....
    below is the code....
    public ResultSet codeResult(int i){
    if(dataSource!= null){
         try {
                             con=dataSource.getConnection();
         stmt=con.createStatement (ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_READ_ONLY);
         int maxRows=stmt.getMaxRows();
         System.out.println("the maxRows is:"+maxRows);
         System.out.println("the I value is:"+i);
         if((i < 0) || (i > maxRows)){
              i=0;
         stmt.setFetchSize(i);
         long t = System.currentTimeMillis();
         rs=stmt.executeQuery("select asc_code,countrycode,asc_name,asc_address1,asc_address2,asc_city,asc_country,asc_region,asc_contact_person,asc_contact_no,asc_email_id,asc_fax_no,nso_incharge,nso_email,ar_ap_code from asc_master order by asc_code asc");
    but,its giving all records...
    any one help me on this........
    Thank you,
    D.Nagireddy.                    
                        } catch (SQLException e) {
                             e.printStackTrace();
              return rs;
              }

    hey, here my code for paging. hope it helps...
         public void DueRecordInfo(int page,int MAX_PER_PAGE)
              con = new DBConnection().getConnection();
             try
                     Statement stmt = con.createStatement();
                     String sqlcount = "SELECT COUNT(*) FROM INFO WHERE TO_DATE(DATEUPDATED,'Month DD, YYYY') < ADD_MONTHS(SYSDATE,-6) AND OBSOLETE LIKE 'No'";
                     ResultSet rscount = stmt.executeQuery(sqlcount);     
                    rscount.next();
                    total_row_count = rscount.getInt(1);
                  lowerbound = (page * MAX_PER_PAGE - (MAX_PER_PAGE))+1;
                  upperbound = lowerbound - 1 + MAX_PER_PAGE;
                  String sql = "Select * from "+
                                    "(SELECT row_number() over(ORDER BY TO_DATE(DATEUPDATED,'Month DD, YYYY') DESC) AS RN,ID,SPECNO,REVISEDNO,DATEREVISED,TITLE,ORIGINATOR,DCBNUMBER,DCBLOCATION,OBSOLETE,DATEOBSOLETE,WORDFILE,PDFFILE,DATEUPDATED FROM INFO WHERE TO_DATE(DATEUPDATED,'Month DD, YYYY') < ADD_MONTHS(SYSDATE,-6) AND OBSOLETE LIKE 'No') " +
                                    "WHERE RN BETWEEN "+ lowerbound + " AND " +upperbound;
                   ResultSet rs = stmt.executeQuery(sql);
                  while (rs.next())
                         id.add(num, rs.getString("ID"));
                         specno.add(num, rs.getString("SPECNO"));
                         revisedno.add(num, rs.getString("REVISEDNO"));
                       daterevised.add(num, rs.getString("DATEREVISED"));
                       title.add(num, rs.getString("TITLE"));
                       originator.add(num, rs.getString("ORIGINATOR"));
                       dcbnumber.add(num, rs.getString("DCBNUMBER"));
                       dcblocation.add(num, rs.getString("DCBLOCATION"));
                       obsolete.add(num, rs.getString("OBSOLETE"));
                       dateobsolete.add(num, rs.getString("DATEOBSOLETE"));
                       wordfile.add(num, rs.getString("WORDFILE"));
                       pdffile.add(num, rs.getString("PDFFILE"));
                       dateupdated.add(num, rs.getString("DATEUPDATED"));
                         num++;
                   con.close();
                   rscount.close();
                   rs.close();
                   stmt.close();
             }

  • Store the vital info from the absence quota record in an internal table

    Hi experts,
    I want to detrmine if the Absence record’s (PA2001 rec) deduction from date (PA2001-BEGDA) and absence to date (PA2001-ENDDA) are permissible for the validity period of the Absence Quota record (the PA2006 rec).  If the quota’s deduction from date, PA2006-DESTA, is greater than the PA2001-BEGDA, we then need to identify this absence quota record for change and change the deduction from date, PA2006-DESTA, to be the same as PA2001-BEGDA.  Store the vital info from the absence quota record in an internal table and record the new date that the deduction from date that needs to be changed to.  The changes will be made via a BDC session.
    Please help me out...
    Thanks,
    Vicky

    This looks possible if we code it in 'dynamic action' table, but the BDC may not read it during run time.
    Do you still have this issue?
    Thanks
    Narasimha

  • How  to retrieve one row from the number of records in a table

    i want to retrieve the rows from the number of records in a table without using the perticular column name.

    select count(*) from table
    /If you have your table currently analyzed, and no changes have been made, then you could
    select num_rows from user_tables where table_name = 'table'

  • Read extended File Info of a jpg-file from a digital camera (recorded date etc.)

    Viewing stored digital pictures in the Windows Explorer or with Google Picasa you can get additional Informations from the picture file:
    recorded date
    camera name / type etc.
    How can I acces the informations with Labview

    Hi Eldracher,
    i´m not sure if there is a function in labview, but you can load your image as binary and search for your information. See this link for more information about the JFIF (jpg file interchange format) http://en.wikipedia.org/wiki/JPEG_File_Interchange_Format.
    Hope it helps
    Mike

Maybe you are looking for

  • ODS Activation Problem - Error getting SID

    Hi All, I am facing the problem while activating the request, "Error getting SID for ODS object xxxx.i know lot of threads are there in forum but those all are taking about while loading the data to ODS,Here i loaded the data into my first ODS(here f

  • DVD created with Encore won't play on DVD player

    Hello everyone, I didn't reply to the other topic I posted here, but that problem (I think) is fixed.  It turned out to be a size problem.  I just reencoded the main movie at a lower bitrate and that problem should be resolved. The final disc image n

  • Corrupt pdf files cannot open

    I have a scanner that will scan documents into PDF format. I use this method for keeping my paper storage to a minimum by keeping physical copies of only the most important documents (i.e tax returns).  I scan documents into my laptop and then destro

  • How do I get iMovie to stop shortening my clips...

    I clicked on something accidentally that is causing my clips to shorten and I don't know how to undo it. Help please!! It took a 3 minute music video down to 2:11 and I had to go back through and try to lengthen the correct clips to get it back to wh

  • Deployed jsp can't read BIB Catalog

    I deployed my project finally. But when I ran the jsp page using http://iasserver.bi:7777/webapp/simple.jsp . The error page came out again, would somebody tell me what's wrong? I checked my BIB Catalog and found everything went well. And when ran th