LGWR generated too many logs.

Hi. I need your help.
My LGWR processor generated too many logs in trace file. Like..
WAIT #0: nam='rdbms ipc message' ela= 295 timeout=85 p2=0 p3=0 obj#=-1 tim=5887168973687
WAIT #0: nam='rdbms ipc message' ela= 490 timeout=85 p2=0 p3=0 obj#=-1 tim=5887168974217
WAIT #0: nam='log file parallel write' ela= 125 files=2 blocks=4 requests=2 obj#=-1 tim=5887168974443
WAIT #0: nam='rdbms ipc message' ela= 268 timeout=85 p2=0 p3=0 obj#=-1 tim=5887168974750
WAIT #0: nam='rdbms ipc message' ela= 394 timeout=84 p2=0 p3=0 obj#=-1 tim=5887168975184
WAIT #0: nam='log file parallel write' ela= 102 files=2 blocks=4 requests=2 obj#=-1 tim=5887168975384
WAIT #0: nam='rdbms ipc message' ela= 362 timeout=84 p2=0 p3=0 obj#=-1 tim=5887168975785
WAIT #0: nam='rdbms ipc message' ela= 464 timeout=84 p2=0 p3=0 obj#=-1 tim=5887168976291
WAIT #0: nam='log file parallel write' ela= 137 files=2 blocks=4 requests=2 obj#=-1 tim=5887168976519
WAIT #0: nam='rdbms ipc message' ela= 273 timeout=84 p2=0 p3=0 obj#=-1 tim=5887168976830
and trace file size is 30 GB. ;(
I checked average wait time 'log file parallel write' and it is '0'.
What is problem..? Somebody know about this issue??
Please help me.
dbms version : 10.2.0.4.0
OS : SUN sparc
글 수정: 82Star

82Star wrote:
There is no errors in alertlog.
But LGWR is still generating that messages in trace file. (About 6 lines per sec)
Is it normal?No, it's not normal. Is lgwr the only process doing this ? If so it looks as if someone may have used oradebug or dbms_monitor to enable extend tracing on the log writer process.
Regards
Jonathan Lewis
http://jonathanlewis.wordpress.com
Author: <b><em>Oracle Core</em></b>

Similar Messages

  • DrawLine(...) method generates too many in[] instances

    My appplication performs very intensive painting (some kind of real time charts). It often invokes drawLine(...) method of Graphics class. Under profiler I have found out that it instantiate too many int[] (about 300000 every few seconds). Though garbage collector cleans these auxilary instances well, I don't like when it runs every time. How can I write my own drawLine method, which doesn't generate so many auxilary instances? By the way I need to draw only vertical or horizontal lines.

    Are you talking about drawing a grid?
    If so, 300000 sounds / few seconds sounds like there
    is something wrong.
    Suppose your screen is 1000x1000 and you are drawing
    lines every 10 pixels apart. That is 100 lines in
    both directions for 200 lines.
    200 lines and 4 ints per call is 800. Assume 100000 /
    second, then that means you are calling repaint 125
    times / second?
    I have about 40 - 50 JFrames, each of them contains panel, which performs painting. Repaint invokes 10-50 times every second for each JFrame. Each repaint draws 1200 lines every time it is invoked. And int[] instances are created inside Swing version of drawLine(...) method, at any case Borland Optimizeit 5.0 says so.
    If anything, I would make a temporary line object:
    private Line2D line = new Line2D.Double();
    public void paint(Graphics _g) {
    super.paint(_g);
    Graphics2D g = (Graphics2D) _g;
    for each horizontal and vertical line:
    line.setLine(x1, y1, x2, y2);
    g.draw(line);
    I've tried your code. Thanks a lot, but it generates too many int[] instances too:(.
    >
    Also, make sure you are not drawing lines outside of
    the area that needs to be repainted. That is, only
    draw a line if it would intersect the viewable
    rectangle of the panel, or even better if it
    intersects the getClipBounds() of the graphics
    object.

  • Create procedure is generating too many archive logs

    Hi
    The following procedure was run on one of our databases and it hung since there were too many archive logs being generated.
    What would be the answer? The db must remain in archivelog mode.
    I understand the nologging concept, but as I know this applies to creating tables, views, indexes and tablespaces. This script is creating procedure.
    CREATE OR REPLACE PROCEDURE APPS.Dfc_Payroll_Dw_Prc(Errbuf OUT VARCHAR2, Retcode OUT NUMBER
    ,P_GRE NUMBER
    ,P_SDATE VARCHAR2
    ,P_EDATE VARCHAR2
    ,P_ssn VARCHAR2
    ) IS
    CURSOR MainCsr IS
    SELECT DISTINCT
    PPF.NATIONAL_IDENTIFIER SSN
    ,ppf.full_name FULL_NAME
    ,ppa.effective_date Pay_date
    ,ppa.DATE_EARNED period_end
    ,pet.ELEMENT_NAME
    ,SUM(TO_NUMBER(prv.result_value)) VALOR
    ,PET.ELEMENT_INFORMATION_CATEGORY
    ,PET.CLASSIFICATION_ID
    ,PET.ELEMENT_INFORMATION1
    ,pet.ELEMENT_TYPE_ID
    ,paa.tax_unit_id
    ,PAf.ASSIGNMENT_ID ASSG_ID
    ,paf.ORGANIZATION_ID
    FROM
    pay_element_classifications pec
    , pay_element_types_f pet
    , pay_input_values_f piv
    , pay_run_result_values prv
    , pay_run_results prr
    , pay_assignment_actions paa
    , pay_payroll_actions ppa
    , APPS.pay_all_payrolls_f pap
    ,Per_Assignments_f paf
    ,per_people_f ppf
    WHERE
    ppa.effective_date BETWEEN TO_DATE(p_sdate) AND TO_DATE(p_edate)
    AND ppa.payroll_id = pap.payroll_id
    AND paa.tax_unit_id = NVL(p_GRE, paa.tax_unit_id)
    AND ppa.payroll_action_id = paa.payroll_action_id
    AND paa.action_status = 'C'
    AND ppa.action_type IN ('Q', 'R', 'V', 'B', 'I')
    AND ppa.action_status = 'C'
    --AND PEC.CLASSIFICATION_NAME IN ('Earnings','Alien/Expat Earnings','Supplemental Earnings','Imputed Earnings','Non-payroll Payments')
    AND paa.assignment_action_id = prr.assignment_action_id
    AND prr.run_result_id = prv.run_result_id
    AND prv.input_value_id = piv.input_value_id
    AND piv.name = 'Pay Value'
    AND piv.element_type_id = pet.element_type_id
    AND pet.element_type_id = prr.element_type_id
    AND pet.classification_id = pec.classification_id
    AND pec.non_payments_flag = 'N'
    AND prv.result_value &lt;&gt; '0'
    --AND( PET.ELEMENT_INFORMATION_CATEGORY LIKE '%EARNINGS'
    -- OR PET.element_type_id IN (1425, 1428, 1438, 1441, 1444, 1443) )
    AND NVL(PPA.DATE_EARNED, PPA.EFFECTIVE_DATE) BETWEEN PET.EFFECTIVE_START_DATE AND PET.EFFECTIVE_END_DATE
    AND NVL(PPA.DATE_EARNED, PPA.EFFECTIVE_DATE) BETWEEN PIV.EFFECTIVE_START_DATE AND PIV.EFFECTIVE_END_DATE --dcc
    AND NVL(PPA.DATE_EARNED, PPA.EFFECTIVE_DATE) BETWEEN Pap.EFFECTIVE_START_DATE AND Pap.EFFECTIVE_END_DATE --dcc
    AND paf.ASSIGNMENT_ID = paa.ASSIGNMENT_ID
    AND ppf.NATIONAL_IDENTIFIER = NVL(p_ssn, ppf.NATIONAL_IDENTIFIER)
    ------------------------------------------------------------------TO get emp.
    AND ppf.person_id = paf.person_id
    AND NVL(PPA.DATE_EARNED, PPA.EFFECTIVE_DATE) BETWEEN ppf.EFFECTIVE_START_DATE AND ppf.EFFECTIVE_END_DATE
    ------------------------------------------------------------------TO get emp. ASSIGNMENT
    --AND paf.assignment_status_type_id NOT IN (7,3)
    AND NVL(PPA.DATE_EARNED, PPA.EFFECTIVE_DATE) BETWEEN paf.effective_start_date AND paf.effective_end_date
    GROUP BY PPF.NATIONAL_IDENTIFIER
    ,ppf.full_name
    ,ppa.effective_date
    ,ppa.DATE_EARNED
    ,pet.ELEMENT_NAME
    ,PET.ELEMENT_INFORMATION_CATEGORY
    ,PET.CLASSIFICATION_ID
    ,PET.ELEMENT_INFORMATION1
    ,pet.ELEMENT_TYPE_ID
    ,paa.tax_unit_id
    ,PAF.ASSIGNMENT_ID
    ,paf.ORGANIZATION_ID
    BEGIN
    DELETE cust.DFC_PAYROLL_DW
    WHERE PAY_DATE BETWEEN TO_DATE(p_sdate) AND TO_DATE(p_edate)
    AND tax_unit_id = NVL(p_GRE, tax_unit_id)
    AND ssn = NVL(p_ssn, ssn)
    COMMIT;
    FOR V_REC IN MainCsr LOOP
    INSERT INTO cust.DFC_PAYROLL_DW(SSN, FULL_NAME, PAY_DATE, PERIOD_END, ELEMENT_NAME, ELEMENT_INFORMATION_CATEGORY, CLASSIFICATION_ID, ELEMENT_INFORMATION1, VALOR, TAX_UNIT_ID, ASSG_ID,ELEMENT_TYPE_ID,ORGANIZATION_ID)
    VALUES(V_REC.SSN,V_REC.FULL_NAME,v_rec.PAY_DATE,V_REC.PERIOD_END,V_REC.ELEMENT_NAME,V_REC.ELEMENT_INFORMATION_CATEGORY, V_REC.CLASSIFICATION_ID, V_REC.ELEMENT_INFORMATION1, V_REC.VALOR,V_REC.TAX_UNIT_ID,V_REC.ASSG_ID, v_rec.ELEMENT_TYPE_ID, v_rec.ORGANIZATION_ID);
    COMMIT;
    END LOOP;
    END ;
    So, how could I assist our developer with this, so that she can run it again without it generating a ton of logs ? ?
    Thanks
    Oracle 9.2.0.5
    AIX 5.2

    The amount of redo generated is a direct function of how much data is changing. If you insert 'x' number of rows, you are going to generate 'y' mbytes of redo. If your procedure is destined to insert 1000 rows, then it is destined to create a certain amount of redo. Period.
    I would question the <i>performance</i> of the procedure shown ... using a cursor loop with a commit after every row is going to be a slug on performance but that doesn't change the fact 'x' inserts will always generate 'y' redo.

  • Issue idoc INVOIC generated too many times

    Hello everyone,
    i have an issue when generating idoc each time a logistic invoice (MIRO) is created.
    A message associated to the idoc INVOIC02 has been customized first in order to generate an idoc when an invoice is saved.
    The problem is that each time i saved an invoice, two or three idocs INVOIC02 are created instead of one ...
    Do you know what is the problem and how to solve it?
    Regards,
    Guillaume

    Well,
    i finally found a solution by myself for those who are interested:
    Go to transaction VOFM -> requirements -> output control
    Create a routine for the application MR
    Create a condition on the message key which ended by 000000 (IF NOT MSG_OBJKY is INITIAL AND MSG_OBJKY+18(6) EQ 000000) -> this mean you only want the header messages for the Invoice documents,
    For further information do not hesitate to ask me.
    Regards

  • OEM Grid generating too many core files

    Hi all,
    Database: Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bit Production
    OEM (OMS and Agent): 10.2.0.5
    OS: Solaris 10 (SPARC 64bit)
    I have a weird problem concerning the agent, each an every time I start the agent, the cdump directory will be filled with hundreds of core files (66 MB each), thus feeling up the whole filesystem where the cdump directory resides. I'm not sure why this is happening. Is this a bug? Has anyone experienced this before?
    Thanks in advance for your help.
    Regards,
    Durbanite - South Africa

    Hi again,
    This is the content of the alert log:
    bash-3.00$ tail alert_clpr1.log
    ORA-07445: exception encountered: core dump [00000001002258A4] [SIGBUS] [Invalid address alignment] [0x60708090A0B0002] [] []
    Fri Jul 17 10:01:11 2009
    Errors in file /udd001/app/oracle/admin/clpr/udump/clpr1_ora_27740.trc:
    ORA-07445: exception encountered: core dump [00000001002258A4] [SIGBUS] [Invalid address alignment] [0x60708090A0B0002] [] []
    bash-3.00$ tail /udd001/app/oracle/admin/clpr/udump/clpr1_ora_27839.trc
    FD6C6EF9:00005D6A 265 0 10280 1 0x0000000000000109
    F3FED575:00005992 266 0 10280 1 0x000000000000010A
    FD6E1007:00005D6B 266 0 10280 1 0x000000000000010A
    F40260C6:00005994 267 0 10280 1 0x000000000000010B
    F40735E8:00005995 268 0 10280 1 0x000000000000010C
    F40C0992:00005997 269 0 10280 1 0x000000000000010D
    F40F9C50:00005999 270 0 10280 1 0x000000000000010E
    KSTDUMP: End of in-memory trace dump
    ssexhd: crashing the process...
    Shadow_Core_Dump = PARTIAL
    I think I might need to contact Oracle Supprt for this one, I'll start by using the ORA-07445 tool on metalink.
    Thanks and regards,
    Durbanited

  • Email sub-account locked out due to too many log in attempts.

    Hi All, If someone has had this issue can you share how to get around this?  When I try to log into my sub-account it sends me an access code.  But the code brings me to my primary email account, not the sub-account.  Thanks in advance for any help on this! VAFrank

    Been on hold for over two hours on three different calls -- I guess Verizon tech support is off the holiday?   Must be nice!   Meanwhile, can't get to email on sub account!   This is a sad joke!!   You mean that I will be locked out of this email until they decide to take calls again?  There is NO reason why I should not be able to correct this from the web without having to speak to anybody!  Totally unaccepable.   I had better control over sub-accounts with Comcast. Oh, well.  I thought Verizon had their act together better than Comcast with customer service and web tools but evidentally I was wrong.   With Comcast it was simple -- I paid their bills but never lost service and could fix anything myself.   With Verizon, I pay pretty much the same amount for same service but at least I could fix issues suich as this -- I rarely had to call Comcast for tech support -- I've had to call Verizon THREE TIMES to fix this same issue in six months from hiccups with password programs -- I shouldn't see "NULL" for the secret question -- nor should I see the main account when I get locked out of the sub-account and go through the process to get the text code on the phone and whatnot, then get sent to the password settings for the main account -- that is sloppy!  Worse, while I see "NULL" for my secret question -- the voice agents can see the question because they ask me for the secret answer!  Sloppy, sloppy, sloppy! Worse, Verizon has no explanation for this unacceptable nonsense and has to know about it because I've brought it up with agents.  That tells me Verizon simply doesn't care or is satisfied with how things are.   I can get just as lousy customer service from Comcast but, as I said, at least I could fix issues such as this with clear instructions on the Comcast customer page -- no "hidden" or "special" links like what was mentioned earlier in this thread, which don't work anyway now if they did at one time!   I was with Comcast for 10 years, never, ever had a situation where I couldn't unlock an account.    So, counting the days until my contract is over!   A year and a half, sadly.

  • Will Analyze create too many redo logs ??

    DB : 10gR2
    Hello Folks,
    Is analyze process creates too many redo log files ?? Is their any other valid option other than no log ?

    I guess that's also going to create too many log switches as it's part of DDLHUH?
    REDO log switches result from DML.
    If you are obsessed with LOG switches, then you need to use LOGMINER to observe the the relative per centage of changed data is from DBMS_STATS
    when compared to normal DML activity.
    I seriously doubt that DBMS_STATS has any significant impact to redo log switches.

  • Too many lines for CO-PA assessment postings in KSB1

    Hi Experts,
    I created an assessment cycle in KEU1, with one segment, using an PA transfer structure (several cost elements to several value fields), and I´m using one single secondary cost element (category 42) to credit the cost centers.
    When I execute the assessment via KEU5, the credits in the cost centers for the cost element category 42 generates too many lines (for example, I had 3 postings to 3 primary cost elements and in KSB1 I have 9 lines of "credits" - operation KSPA.):
    Primary Cost Elements:
    4110201004  ==> 3.000,00
    4110209009  ==> 2.000,00
    4110209013  ==> 1.000,00
    Secondary cost element (after settlement through KEU5):
    6519999999 ==> 134,36-
                                198,92-
                                190,49-
                                291,54-
                                548,27-
                                311,88-
                                2.659,89-
                                1.268,02-
                                396,63-
    Do you know how can I summarize this postings to have only 3 (ore one) line for the secondary cost element? I cannot identify what was the criteria used by SAP to generate 9 lines.
    Kind Regards
    Mayumi

    the number of line item crediting the cost centre, shall be the same of the line item required in the COPA posting. So the more receiver you have in COPA , the more line item are created.
    Paolo

  • DMEE error (Error Log -  Too many payment mediums created for this payment group)

    Hi Experts,
    Please see the below error while generating the DMEE file.
    Error Log -  Too many payment mediums created for this payment group
    Error is - Too many payment mediums created for this payment group
    Please explain how to resolve this error.Send detail documentation how to rectify this error
    Regards
    Sreedhar

    Hi Nimish Agarwal,
    With reference to the error faced i.e. BFIBL02160 "too many payment
    mediums created for this payment group", please review the information
    provided in the long text of this error in detail.
    Please ensure that the orders are not carried out several times.
    Alternatively you can apply the optional usable message 166 (same
    class: BFIBL02), so that you can prevent creating duplicates in future.
    Please customize this message as an error so as to prevent the system
    from creating duplicate files. You can customize this message in OBA5.
    The message BFIBL02 160 always occurs, if you create more than one
    file for the same payment run, in order to warn you not to send the
    same file twice to the bank.
    The SAPFPAYM program does not create 2 files at once. But if you
    run this program more than once for the same payment run, more than
    one file is created. From the second run on you receive the error
    message BFIBL02 160. You can easily test it, by creating a new
    payment proposal and creating a new file with this proposal and
    SAPFPAYM. The first time you run this program you will not receive
    the message.
    Hope this clarifies.
    Kind Regards,
    Fernando Evangelista

  • Error Log -  Too many payment mediums created for this payment group

    Hi Experts,
    When I am doing payment to customers through T-code F110, I am able to clear the open item. But when we are executing the Payment medium - DME Administration, generate the Payment Advice and when we see the print preview of the Payment Advice in spool request, System is showing the following errors,
    "BFIBL02160               Too many payment mediums created for this payment group"
    "BFIBL02616               End of log for payment run 20120123 / NAA02 , NSD / 200"
    "This is line 1/column 45 on page 1"
    Message no. SP01R116
    Kindly help how to rectify the same
    Thanks in advance
    Regards,
    Nimish Agarwal

    Hi Nimish Agarwal,
    With reference to the error faced i.e. BFIBL02160 "too many payment
    mediums created for this payment group", please review the information
    provided in the long text of this error in detail.
    Please ensure that the orders are not carried out several times.
    Alternatively you can apply the optional usable message 166 (same
    class: BFIBL02), so that you can prevent creating duplicates in future.
    Please customize this message as an error so as to prevent the system
    from creating duplicate files. You can customize this message in OBA5.
    The message BFIBL02 160 always occurs, if you create more than one
    file for the same payment run, in order to warn you not to send the
    same file twice to the bank.
    The SAPFPAYM program does not create 2 files at once. But if you
    run this program more than once for the same payment run, more than
    one file is created. From the second run on you receive the error
    message BFIBL02 160. You can easily test it, by creating a new
    payment proposal and creating a new file with this proposal and
    SAPFPAYM. The first time you run this program you will not receive
    the message.
    Hope this clarifies.
    Kind Regards,
    Fernando Evangelista

  • System I/O and Too Many Archive Logs

    Hi all,
    This is frustrating me. Our production database began to produce too many archived redo logs instantly --again. This happened before; two months ago our database was producing too many archive logs; just then we began get async i/o errors, we consulted a DBA and he restarted the database server telling us that it was caused by the system(???).
    But after this restart the amount of archive logs decreased drastically. I was deleting the logs by hand(350 gb DB 300 gb arch area) and after this the archive logs never exceeded 10% of the 300gb archive area. Right now the logs are increasing 1%(3 GB) per 7-8 mins which is too many.
    I checked from Enterprise Manager, System I/O graph is continous and the details show processes like ARC0, ARC1, LGWR(log file sequential read, db file parallel write are the most active ones) . Also Phsycal Reads are very inconsistent and can exceed 30000 KB at times. Undo tablespace is full nearly all of the time causing ORA-01555.
    The above symptoms have all began today. The database is closed at 3:00 am to take offline backup and opened at 6:00 am everyday.
    Nothing has changed on the database(9.2.0.8), applications(11.5.10.2) or OS(AIX 5.3).
    What is the reason of this most senseless behaviour? Please help me.
    Thanks in advance.
    Regards.
    Burak

    Selam Burak,
    High number of archive logs are being created because you may have massive redo creation on your database. Do you have an application that updates, deletes or inserts into any kind of table?
    What is written in the alert.log file?
    Do you have the undo tablespace with the guarentee retention option btw?
    Have you ever checked the log file switch sequency map?
    Please use below SQL to detirme the switch frequency;
    SELECT * FROM (
    SELECT * FROM (
    SELECT   TO_CHAR(FIRST_TIME, 'DD/MM') AS "DAY"
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '00', 1, 0)), '999') "00:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '01', 1, 0)), '999') "01:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '02', 1, 0)), '999') "02:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '03', 1, 0)), '999') "03:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '04', 1, 0)), '999') "04:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '05', 1, 0)), '999') "05:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '06', 1, 0)), '999') "06:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '07', 1, 0)), '999') "07:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '08', 1, 0)), '999') "08:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '09', 1, 0)), '999') "09:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '10', 1, 0)), '999') "10:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '11', 1, 0)), '999') "11:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '12', 1, 0)), '999') "12:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '13', 1, 0)), '999') "13:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '14', 1, 0)), '999') "14:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '15', 1, 0)), '999') "15:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '16', 1, 0)), '999') "16:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '17', 1, 0)), '999') "17:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '18', 1, 0)), '999') "18:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '19', 1, 0)), '999') "19:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '20', 1, 0)), '999') "20:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '21', 1, 0)), '999') "21:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '22', 1, 0)), '999') "22:00"+
    +, TO_NUMBER(SUM(DECODE(TO_CHAR(FIRST_TIME, 'HH24'), '23', 1, 0)), '999') "23:00"+
    FROM V$LOG_HISTORY
    WHERE extract(year FROM FIRST_TIME) = extract(year FROM sysdate)
    GROUP BY TO_CHAR(FIRST_TIME, 'DD/MM')
    +) ORDER BY TO_DATE(extract(year FROM sysdate) || DAY, 'YYYY DD/MM') DESC+
    +) WHERE ROWNUM < 8+
    Ogan

  • My apple id is blocked, i cannot reset my password due to too many tries, wont allow me to put in correct  birth date, no access to icloud and i do not know how to get my email address i linked to icloud and i cannot log onto icloud

    i tried to update my phone, which didn't work this then tried to restore my phone now it wants me to put in my icloud log in which i couldnt change due to not knowing my password, this got blocked for security reasons, i then tried to go to the password reset which it blocked too for too many tries, i now cannot do a thing with the site and my phone, i want to reset my phone to factory setting and start over but i do not have access to my phone and itunes wants me to log in with details i do not have and cannot get, i cannot do anything with my phone until i get it unblocked, tried to contact support but it just says no answer is available.

    Call apple tech support. I had the same kind of issue with my daughters iPhone and they were very helpful

  • Logs *FILLED* with "too many HTTP redirects".

    as far as i can tell... this isn't causing an actual issue with any pages.
    but my Console log is literally filled with :
    *7/29/08 4:03:59 PM servermgrd[40] servermgr_web: Request for status failed: Error Domain=NSURLErrorDomain Code=-1007 UserInfo=0xae42540 "too many HTTP redirects". Admin Web graphs may be inaccurate.*
    literally non-stop all day long. doesn't seem to be related to server load / traffic at all really. timing works out to roughly every 1 minute (very slight drift)... i get 2 or 3 entries. sometimes with maybe a 10 second gap in the "groups".
    example of the "groups" :
    7/29/08 4:19:49 PM
    7/29/08 4:19:58 PM
    7/29/08 4:19:58 PM
    7/29/08 4:20:49 PM
    7/29/08 4:20:58 PM
    7/29/08 4:20:58 PM
    7/29/08 4:21:49 PM
    7/29/08 4:21:59 PM
    7/29/08 4:21:59 PM
    7/29/08 4:22:49 PM
    7/29/08 4:23:00 PM
    7/29/08 4:23:00 PM
    it is getting very annoying obviously.
    seeing the word "redirect" i did the obvious thing and disabled every single redirect i had on the entire site... including all subdomains. no change.
    checked the master httpd.conf and the "sites" .conf files as well for anything else odd or redirect-ish looking. nothing.
    since the timing is so regular... i can't really think what it might be.
    one symptom i DO KNOW OF... is that the Server Admin app will not display the logs while the server is actively running. turn the server OFF ... shows the logs in the Log tab... turn server ON... that tab goes empty.
    most likely related.
    the logs are being written though. since i tail them just fine and see real-time activity.
    i turned OFF all logging... error still shows up.
    so as far as i can tell... not related to actual "Redirects"... not related to my disappearing log tab symptom...
    any ideas?
    IIRC this did NOT happen until migrating to Apache 2.
    thanks.
    zeb./

    cat /etc/resolv.conf
    {quote}
    nameserver 209.165.164.3{quote}
    sudo changeip -checkhostname
    {quote}
    Primary address = 209.165.164.4
    Current HostName = www.arcus.org
    The DNS hostname is not available, please repair DNS and re-run this tool.
    {quote}
    and i get...
    {quote}
    host www.arcus.org
    www.arcus.org has address 209.165.164.4
    {quote}
    and subdomains show up right as well...
    {quote}
    host nps.arcus.org
    nps.arcus.org is an alias for www.arcus.org.
    www.arcus.org has address 209.165.164.4
    {quote}
    i guess i do get make double PTR records back from Network Utility... have www.arcus.org as an A and arcus.org as an A. should the latter maybe be a CNAME like the other (sub-)domains?
    {quote}
    4.164.165.209.in-addr.arpa. 86400 IN PTR www.arcus.org.
    4.164.165.209.in-addr.arpa. 86400 IN PTR arcus.org.
    164.165.209.in-addr.arpa. 86400 IN NS ns1.arcus.org.
    ns1.arcus.org. 7200 IN A 209.165.164.3
    {quote}
    could that be the problem?
    another server is set-up pretty much identical to this one (other than the content and it has a CMS) with the same DNS set-up more or less. (no subdomains. but the double A like this one) and it doesn't have the same error. at all.
    though... it also has functioning web graphs and logs in it's Server Admin.
    thanks.

  • IChat keeps telling me I've tried logging on too many times...

    Ok... so here's the story:
    I'm visiting my sister, and she has netgear... I tried logging on to iChat, and it went berserk, logging on and off several times in a row. And then a message popped up the next time I logged on saying: "You have attempted to login too often in a short period of time. Wait a few minutes before trying to login again." So... I searched on this website to see what to do about this, and I found that I need to change the port to 443... so I did it... but it won't even let me attempt to log in anymore, and the same error message keeps popping up.
    Is there a way I can reset this so it doesn't keep telling me I've tried to log on too many times? I've tried restarting, and that's just not working. Any help would be greatly appreciated... I'm gonna try turning the computer off and removing and replacing the battery to see if that words...
    thanks

    Long version
    Open the Hard Drive
    Open Users.
    Open your account
    Open Library
    Open Preferences
    Short Version
    Open your Little House icon followed by the Library and then Preferences.
    8:41 PM Friday; January 9, 2009

  • I have an iphone3 and tried to log in too many times.  Now I am locked out.  What do I do?

    I have an iphone3 and tried to log in too many times.  Now I am locked out.  When I press my home button, I get the emergency call screen and not my home screen.
    What do I do?

    Restore the phone using iTunes.

Maybe you are looking for

  • Problems booting my new computer

    Hello! I have a real newbie problem that I hope someone could help me with. I have just started up my new computer with P4M890M mothercard but all I get is the message "reboot and select proper boot device or insert boot media in selected boot device

  • Re-Start Issue:  Chime Echo after startup chime ??

    My 20 Intel Imac running OS 10.4.9 has developed a minor problem related to its startup sequence and I suspect firmware startup instructions: When using the control panel startup disk dialogue to reboot from Windows XP back into OS 10 I get a repeati

  • Applet tag accessing JAR file

    hi, I hope this is not a multi-post, I've searched high and low and I could not find an exact solution to my question... How can I load an applet in a browser using an applet tag? My main class is com.my.applet.MainClass.class and the its in a JAR. T

  • SAP GRC Access Control 5.3 intergration with orcale

    Good Day GRC Gurus, We want to integrate SAP GRC Access Control 5.3 with ORACLE. It would be great if someone could share some documents, presentation and experience on the same. Thanks in advance!!!!!!!!!!!!! Thanks and Regards, Jagat

  • Error when add/ drop new logfile

    When I drop or add new logfile in my 10g r2 on RHEL, I did not see any error. however when I check the alert log file, I noticed at the same time of dropping or adding the logfile, systen produced three error .trc files in the udumpa and display erro