Not getting SCN details in Log Miner

Oracle 11g
Windows 7
Hi DBA's,
I am not getting the SCN details in log miner. Below are steps for the same:-
SQL> show parameter utl_file_dir
NAME                                 TYPE        VALUE                         
utl_file_dir                         string                                    
SQL> select name,issys_modifiable from v$parameter where name ='utl_file_dir';
NAME               ISSYS_MOD                                                                      
utl_file_dir    FALSE                                                          
SQL>  alter system set utl_file_dir='G:\oracle11g' scope=spfile;
System altered.
SQL> shut immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORACLE instance started.
Total System Global Area 1071333376 bytes                                                          
Fixed Size                  1334380 bytes                                                          
Variable Size             436208532 bytes                                                          
Database Buffers          629145600 bytes                                                          
Redo Buffers                4644864 bytes                                                          
Database mounted.
Database opened.
SQL> show parameter utl_file_dir
NAME                                 TYPE        VALUE                                             
utl_file_dir                         string      G:\oracle11g\logminer_dir 
SQL> SELECT SUPPLEMENTAL_LOG_DATA_MIN FROM V$DATABASE;
SUPPLEME                                                                                           
NO                                                                                                 
SQL>  ALTER DATABASE ADD SUPPLEMENTAL LOG DATA;
Database altered.
SQL> SELECT SUPPLEMENTAL_LOG_DATA_MIN FROM V$DATABASE;
SUPPLEME                                                                                           
YES                                                                                                
SQL> /* Minimum supplemental logging is now enabled. */
SQL>
SQL> alter system switch logfile;
System altered.
SQL> select g.group# , g.status , m.member
  2       from v$log g, v$logfile m
  3       where g.group# = m.group#
  4       and g.status = 'CURRENT';
    GROUP# STATUS                                                                                 
MEMBER                                                                                             
         1 CURRENT                                                                                 
G:\ORACLE11G\ORADATA\MY11G\REDO01.LOG                                                              
SQL> /* start fresh with a new log file which is the group 1.*/
SQL> create table scott.test_logmnr
  2  (id  number,
  3  name varchar2(10)
  4  );
Table created.
SQL> BEGIN
  2    DBMS_LOGMNR_D.build (
  3      dictionary_filename => 'logminer_dic.ora',
  4      dictionary_location => 'G:\oracle11g');
  5  END;
  6  /
PL/SQL procedure successfully completed.
SQL> /*
SQL>   This has recorded the dictionary information into the file
SQL>   "G:\oracle11g\logminer_dic.ora".
SQL> */
SQL> conn scott/
Connected.
SQL> insert into test_logmnr values (1,'TEST1');
1 row created.
SQL> insert into test_logmnr values (2,'TEST2');
1 row created.
SQL> commit;
Commit complete.
SQL> select * from test_logmnr;
        ID NAME                                                                                    
         1 TEST1                                                                                   
         2 TEST2                                                                                   
SQL> update test_logmnr set name = 'TEST';
2 rows updated.
SQL> select * from test_logmnr;
        ID NAME                                                                                    
         1 TEST                                                                                    
         2 TEST                                                                                    
SQL> commit;
Commit complete.
SQL> delete from test_logmnr;
2 rows deleted.
SQL> commit;
Commit complete.
SQL> select * from test_logmnr;
no rows selected
SQL> conn / as sysdba
Connected.
SQL> select g.group# , g.status , m.member
  2       from v$log g, v$logfile m
  3       where g.group# = m.group#
  4       and g.status = 'CURRENT';
    GROUP#         STATUS                                         MEMBER                                                                                             
         1             CURRENT                           G:\ORACLE11G\ORADATA\MY11G\REDO01.LOG                                                              
SQL> begin
  2        dbms_logmnr.add_logfile
  3        (
  4         logfilename => 'G:\oracle11g\oradata\my11g\REDO01.LOG',
  5         options     => dbms_logmnr.new
  6        );
  7      
  8       /
PL/SQL procedure successfully completed.
SQL> select filename from v$logmnr_logs;
FILENAME                                                                                           
G:\oracle11g\oradata\my11g\REDO01.LOG                                                              
PL/SQL procedure successfully completed.
SQL> BEGIN
  2    -- Start using all logs
  3    DBMS_LOGMNR.start_logmnr (
  4      dictfilename => 'G:\oracle11g\logminer_dic.ora');
  5 
  6   END;
  7  /
PL/SQL procedure successfully completed.
SQL> DROP TABLE myLogAnalysis;
Table dropped.
SQL> create table myLogAnalysis
  2       as
  3       select * from v$logmnr_contents;
Table created.
SQL> begin
  2         DBMS_LOGMNR.END_LOGMNR();
  3       end;
  4       /
PL/SQL procedure successfully completed.
SQL> set lines 1000
SQL> set pages 500
SQL> column scn format a6
SQL> column username format a8
SQL> column seg_name format a11
SQL> column sql_redo format a33
SQL> column sql_undo format a33
SQL> select scn , seg_name , sql_redo , sql_undo
  2  from   myLogAnalysis
  3  where username = 'SCOTT'
  4  AND (seg_owner is null OR seg_owner = 'SCOTT');
SCN SEG_NAME
SQL_REDO                     
SQL_UNDO                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
set transaction read write;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
commit;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
set transaction read write;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
########## TEST_LOGMNR insert into "SCOTT"."TEST_LOGMNR" delete from "SCOTT"."TEST_LOGMNR"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
("ID","NAME") values ('1','TEST1'  where "ID" = '1' and "NAME" = 'T                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
EST1' and ROWID = 'AAARjeAAEAAAAD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
PAAA';                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
########## TEST_LOGMNR insert into "SCOTT"."TEST_LOGMNR" delete from "SCOTT"."TEST_LOGMNR"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
("ID","NAME") values ('2','TEST2'  where "ID" = '2' and "NAME" = 'T                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
EST2' and ROWID = 'AAARjeAAEAAAAD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
PAAB';                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
commit;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
set transaction read write;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
########## TEST_LOGMNR update "SCOTT"."TEST_LOGMNR" set  update "SCOTT"."TEST_LOGMNR" set                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
"NAME" = 'TEST' where "NAME" = 'T "NAME" = 'TEST1' where "NAME" = '                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
EST1' and ROWID = 'AAARjeAAEAAAAD TEST' and ROWID = 'AAARjeAAEAAAAD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
PAAA';                       
PAAA';                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
########## TEST_LOGMNR update "SCOTT"."TEST_LOGMNR" set  update "SCOTT"."TEST_LOGMNR" set                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
"NAME" = 'TEST' where "NAME" = 'T "NAME" = 'TEST2' where "NAME" = '                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
EST2' and ROWID = 'AAARjeAAEAAAAD TEST' and ROWID = 'AAARjeAAEAAAAD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

Kindly type
Desc v$logmnr_contents
Please notice the scn is a *number* column,not varchar2
By using format a6 you are forcing Oracle to display a too big number as a char. Hence the ##.
Sybrand Bakker
Senior Oracle DBA

Similar Messages

  • Not getting planning Applications when Log on Work space

    Hi Dear Experts,
    when log on Workspace to access Planning:
    its show showing
    Navigate ->Administration->User management
    instead if Select Navigate > Applications > Planning
    and iam not getting planning Applications when Log on Work space
    I have Just Installed Essbase and Planning into my machine .. and i have opened work space area and
    and i tried to create first application by using the following URL
    http://localhost:8300/HyperionPlanning/AppWizard.jsp
    iam getting not able create first application..
    can you please guide me how can i work with planing applications..
    thanks in advance
    Kishore

    Hi Kishore.
    From config utility, did you create an instance before trying to access.
    I mean "product instance registration" and "data source configuration"
    You can find it in the installation doc
    Sandeep Reddy Enti
    HCC
    http://analytiks.blogspot.com

  • FM RV_INVOICE_DOCUMENT_READ not getting KONV details when ran multiple times

    Hi, I'm calling the Function Module 'RV_INVOICE_DOCUMENT_READ' with the parameter KONV_READ as 'X' thru one of the Output type via Smartform driver program from VF02. I found that this FM was not returning KONV(XKOMV) details. When I debugged, I came to know that when this FM is run multiple times, only for the initial time it fetches KONV details. This FM was triggered by standard program first and later was called in my Smartform Driver program. Inside this FM, it was checking against an internal table 'TABGL' and was fetching KONV details if it is initial. For the first time this internal table(TABGL) will be initial and after fetching KONV details, it is filled with Condition record(KONV-KNUMV). So for the second time call of this FM, KONV details are not fetched. To confirm this I ran this FM from SE37. For the first time it fetched KONV details. In the same session I executed again. This time it didn't populate KONV details, whereas VBRK, VBRP, VBPA details were fetched even in the second run. Could you please let me know if we can use this FM for getting KONV details irrespective of number of times it has been called before. Thanks, Adithya M.

    Try to call RV_INVOICE_REFRESH before calling RV_INVOICE_DOCUMENT_READ again.
    Regards,
    Raymond

  • Not getting email for alert log error

    Hi ,
    Any one please answer , I am not getting e-mail alert for error in alert log file .
    Please some one guide me with the steps to configure the same.
    I need to configure this option in production very urgent.
    Thanks in advance.
    Anand Manuel

    Hello Eric,
    Thanks for using Apple Support Communities.
    To troubleshoot this issue where multiple people have not received the Apple ID reset password email, please see the information in the article below.  
    If you didn't receive your Apple ID verification or reset email - Apple Support
    If after following these steps and the email still hasn't arrived, please contact Apple account security by using the link below.
    Contact Apple for help with Apple ID account security - Apple Support
    Cheers,
    Alex H.

  • Not getting entry in error logs for SP2

    Hi All,
    I am using SP2 on Solaris 5.9. I got the below entry in the access logs.
    75.187.38.17 - - [05/Dec/2007:00:25:07 -0500] "POST /test/testmac.htmlPOST " 400 147
    74.197.120.159 - - [05/Dec/2007:00:26:02 -0500] "" 400 147
    76.118.146.74 - - [05/Dec/2007:00:29:27 -0500] "" 400 147
    66.159.193.19 - - [05/Dec/2007:00:31:17 -0500] "" 400 147
    As it is visible that request resulted 400 response code, but I don't see any entry in the error logs.
    Do I need to enable something for this in magnus.conf ?
    At present for errors I have the following settings in the magnus.conf as
    ErrorLog /data/servers/dir/logs/errors.
    Any help would be highly appreciated.
    Thanks and regards
    -A

    400 bad requests are not logged in error logs. That usually means the request sent is malformed.
    According to RFC http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
    "10.4.1 400 Bad Request
    The request could not be understood by the server due to malformed syntax. The client SHOULD NOT repeat the request without modifications. "
    Try attaching ssltap in between web server and browser and see what request was sent to the server.
    $/usr/sfw/bin/ssltap -h
    SSLTAP (C) 1997, 1998 Netscape Communications Corporation.
    Usage: ssltap [-vhfsxl] [-p port] hostname:port
    -v [prints version string]
    -h [outputs hex instead of ASCII]
    -f [turn on Fancy HTML coloring]
    -s [turn on SSL decoding]
    -x [turn on extra SSL hex dumps]
    -p port [specify rendezvous port (default 1924)]
    -l [loop - continue to wait for more connections]
    $ssltap -l -p 1924 wshostname:wsport
    send browser's request to 1924.
    "[05/Dec/2007:08:54:37] failure (16852): Connection queue full, closing socket"
    This error message means that server is under heavy load and connection queue is full. Try tweaking
    MaxKeepAliveConnections and ConnQueueSize parameters in magnus.conf.
    For more info refer :
    Sun ONE Web Server 6.1 Performance Tuning, Sizing, and Scaling Guide
    http://docs.sun.com/source/817-1836-10/index.html
    P/S WS 6.1 SP2 is quite old try switching to Web Server 6.1 sp8 or Web Server 7.0 update 1.
    Edited by: mv on Dec 5, 2007 2:16 PM

  • I do not get notification on my iPad mini, I use to until the last update

    I do not receive my notifications any more since the last up day on my iPad mini!!

    Hi Paulajohnny,
    If you are no longer receiving notifications you may want to go through the steps for troubleshooting in this article -
    iOS: Understanding notifications
    http://support.apple.com/kb/HT3576
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • The Login Keyring did not get unlocked when you logged out.

    This is getting to be very annoying, no matter which desktop environment or window manager I use, I am always asked for the Login keyring password.
    It used to be that this didn't occur, and quite frankly I cant quite figure out what caused it.
    It happens in
    KDE4
    OpenBox
    Fluxbox
    Please help me on this.
    EDIT: I just remembered something, I switched to KDM recently, could this be the culprit?
    Last edited by Nimbus (2011-04-22 00:17:54)

    Follow the instructions for setting up the gnome-keyring with slim but edit the kdm pam config (in /etc/pam.d) instead.
    https://wiki.archlinux.org/index.php/Sl … me_Keyring

  • SRM 7.0, PO details are not getting populated in Contract History Tab

    Hello Folks,
    I am stuck with an issue and would need your help regarding that.
    Scenario: (Extended Classic Scenario) SRM version 7
    A catagory Contract is created.
    Shopping cart created with Contract as the source of supply.
    Once the SC is approved PO is generated.
    Now if we open the contract and view the History tab, under Tracking PO details should appear.
    However we are not getting any details of the PO in the Contract. Could you please suggest where to look, to resolve this issue.
    Your inputs will be highly appreciated.
    Regards
    Nishant Rajvanshi

    RZ20 errors:
    Local Errors:   Business to Business Procurement(600)
    Error reading export data for EXEC transfer of purchase order
    Error in local purchase order; no update of references in EXEC system
    Backend Errors:
    PO 3000000051: No instance of object type PurchaseOrder has been created. External reference:
    Purchase order 3000000051: Document contains no items
    Purchase order 3000000051: Transfer Failed; Resubmit
    Since we are in SRM 7.0 ECC 6.04 Ehp 4,  with PI 7.11 + ROS and no SUS.
    doent the system uses ESOA Service for PO replication.
    We did CCTR / CPPR scenarios too. Both are sucessful.
    Do we need to impl BADI PUR_SE_PO_INTERFACE_OUT_SELECT
    But thats for Service hierarchy and Service POs -  We dont have Service hierarchy or SUS in our SLD.
    IF PO replication also uses PI, what configuration do i need to do?

  • Getting ORA-01031 in Log file

    Hi All,
    I registered my custom procedure as Concurrent Program in Oracle Apps. While I am running Oracle Concurrent Program, I am getting below in Log file an immediately Concurrent Managers are shut down, and is in "Running State" always. Enabled Trace file also, but didn't get any information about ORA-01031 error. I hope there is no problem with the procedure. I am getting same error even though ,I comment my entire procedure .
    Can you guys please help me.
    Log File:
    =====
    Current system time is 07-JUL-2009 03:32:40
    **Starts**07-JUL-2009 03:32:40
    **Ends**07-JUL-2009 03:44:19
    Start of log messages from FND_FILE
    Start of program 07-JUL-2009 03:32:40
    After Deletes 07-JUL-2009 03:32:42
    After insert 07-JUL-2009 03:34:38
    After receiving section 07-JUL-2009 03:34:38
    After A/P section 07-JUL-2009 03:34:38
    After A/P holds section 07-JUL-2009 03:44:00
    After unmatched Accruals section 07-JUL-2009 03:44:19
    Successfully completed.
    v_transactions_no_accrual = 0
    v_transactions_one_accrual = 0
    v_transactions_multi_accrual = 0
    End of program 07-JUL-2009 03:44:19
    End of log messages from FND_FILE
    **lock table FND_CONCURRENT_REQUESTS in share update mode**
    **Routine AFPPRD has encountered a fatal error. ORA-01031: insufficient privileges**
    Contact your system administrator or support representative.
    Shutting down Concurrent Manager : 07-JUL-2009 03:44:19
    List of errors encountered:
    _ 1 _
    Routine AFPPRD has encountered a fatal error. ORA-01031: insufficient
    privileges
    Contact your system administrator or support representative.
    _ 2 _
    Routine AFPPRD has encountered a fatal error. ORA-01031: insufficient
    privileges
    Contact your system administrator or support representative.
    ==========
    Waiting for your reply.
    Thanks,
    Bhujendra

    Hi Hsawwan,
    Thanks for your reply.
    It is my Custom Procedure. I executed the same procedure from backend(ofcource I used DBMS_OUTPUT instead of FND_FILE) and it's displaying all messages. I am not getting below messages in Log file . I am somewhat doubtful in this, but I am not sure
    End of log messages from FND_FILE
    Executing request completion options...
    Output is not being printed because:
    The print option has been disabled for this report.
    Finished executing request completion options.
    Instead
    I am getting
    End of log messages from FND_FILE
    lock table FND_CONCURRENT_REQUESTS in share update mode
    Routine AFPPRD has encountered a fatal error. ORA-01031: insufficient privileges
    Thanks,
    Bhujendra
    Edited by: KBK on Jul 7, 2009 6:23 PM

  • Site not getting created in SharePoint 2013.

    Hi,
    I am trying to create site in 2013. while creating site, it is taking long time and after some time tried refresh the page, it shows site created. But when i click on created site, it shows empty page. i am not getting errors or event logs. what will be
    the error. Could some one please help me in creating site with working fine.
    Thanks,
    Badri.
    Badri

    Hi,
    According to your post, my understanding is that you get a blank page when you create a new site.
    To narrow down the issue scope, I recommend that you can try to test the following things.
      1.  What’s the type of this site you created in this site collectionCreate a new different types site in this site collections to check if this issue is occurred on the only site collection in this web application.
        Create a new site collection in another web application to check if this issue is occurred on the only web application.
        Create a new web application, create a new site collection in this new web application to test if it works.
        If you are then the odds are that something went wrong during the provisioning of the original web application.
        And, you can add your URL for this site to “trusted sites” in IE.
    http://sharepoint.stackexchange.com/questions/60957/external-access-gives-a-blank-home-page
      2.  Do you use the administrator account to login the site?
        You can use the administrator account to login the site, then check the permission of your account.
        Maybe your account has no permission to access the site, you can assign it Full Control permission, then check whether it works.
    http://stackoverflow.com/questions/4742175/new-site-collection-is-empty-sharepoint-2010
      3.  Go to the IIS and select the respective web application. Here, I have selected the web application to which the site collection belongs to.
        Double click the Authentication icon.
        Set the status of ‘Basic Authentication’ from “Disabled” to “Enabled”.
    http://adicodes.com/fix-error-empty-pages-when-new-site-collection-is-created/
    http://sensoft2000-sharepoint.blogspot.com/2010/06/getting-blank-page-instead-of-central.html
      4.  Control Panel > Programs and Features > Turn Windows features on or off >Internet Information Services > World Wide Web Services > Security >tick ‘Windows Authentication’, do an IISReset for good measure.
        To be more specific, check the authentication settings for SharePoint Central Administration website in IIS. Make sure that you have Windows Authentication enabled and Anonymous Authentication disabled.
    http://blog.vinewave.com/2012/01/04/solved-sharepoint-returning-a-blank-page/
    http://blogs.objectsharp.com/post/2010/01/04/Blank-page-instead-of-the-SharePoint-Central-Administration-site.aspx
      5.  Run the following power shell command to disable the LoopbackCheck.
    New-ItemProperty HKLM:\System\CurrentControlSet\Control\Lsa -Name "DisableLoopbackCheck" -value "1" -PropertyType dword
        You may have to restart the servers and will have run this from all of your SharePoint servers.
        You can also navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa in registry and create the dword32 for DisableLoopbackCheck, modify the value to 1.
    https://social.technet.microsoft.com/Forums/en-US/7d311288-e14d-4fa8-be02-da524cb4c0ea/sharepoint-site-returns-a-blank-page?forum=sharepointadmin
    If the issue persists, please check the ULS log file to find more information about this issue.
    For SharePoint 2013, by default, ULS log is at C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS.
    Best Regards,
    Yumi Fu

  • HT204088 Inspite of submitting all requiredFields I am not getting purchase History and Security code for redeeming.I have clicked for purhase of Sri Sri Shankar's Rudra Album but unable to get it loaded on my I pod  What do I do ? Reply to me by Laila no

    Dear Customer Care I Tune,
      I have been trying to down load "Rudra"Album of Sri Sri Ravi Shankar, A religious & Spiritual Hymn. from I tune store. The price was shown as Rs 120/= I clicked on buy and filled the details of my debit card (ICICI Bank India)which created account but I could not fill up code for redeeming or security code being asked for ,with the result the my purchse is not getting authorised (I presume.)I am unable to get the Music on my I pod. To my  Earlier complaint I got Reply under follw up #272091438 from your customer care miss Laila. I was asked to action as suggested in the link. But inspite of following the insructions as suggested in the link I could not get Purchse details and order number as envisaged in the instructions. Can  I expect some working suggestins and advice .
      Anant Pashilkar
    Presenlty I am at Austine Texas
    <Personal Information Edited By Host>

    Most of the people on these forums, including myself, are fellow users - you are not talking to iTunes Support here. I've asked the hosts to remove your email address and phone number from your post.
    If you are currently in Texas in the US then you won't be able to buy from the Indian iTunes store - you need to be within a country to use its store, so to use the Indian store you will need to be in India.
    In terms of the redeem code that you mentioned, entering an iTunes gift card is optional and they are country-specific and they are not available in all countries - I don't think that are available in India, so I don't think that you could fill it in anyway. For the bank card, i don't think that debit cards are now accepted as a valid payment in the store, there have been a number of posts recently about them being declined, and they are not listed on this page.

  • Message details not getting displayed in Message monitoring of RWB

    Hi,
    I am trying to see how many messages in Message Monitoring by selecting Integration Engine option, Message counts are getting displayed like how many has been processed successfully,processed with errors as well.
    When I click on message count a pop up screen opens and gives me no messages are not available even for the same day messages.
    Can any body give me an idea like where i can set any parameter to display in detail of messages in integration engine for one week back as well.
    Thanks...

    >When i click on count of messages which got processed with in one hour then it shows details of that messages, but when i select other messages which got processed on the same day but more than one hour then its not displaying any details of the messages.
    I guess in this case your retention period is set to zero in SXMB_ADM. And this is the reason you cannot see the message even if they are an hour old.
    >Is there any where where we can set parameters or any oss note to be implemented in order to see details of any messages with in a week or 10 days.
    In XI run tcode SXMB_ADM and then follow "Integration Engine Configuration ---> Specific Configuration". Now check the Archive & Deletion Current & Default Values and set the Retention period as per you need.
    For more information see page 11 of this document.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/402fae48-0601-0010-3088-85c46a236f50?quicklink=index&overridelayout=true

  • Nohup.log files are not getting generated correctly

    hai,
    im a weblogic administrator. Here is my problem in weblogic. My partner has complained that nohup.logs are not getting generated properly. Like for every 5 mins a new nohup .log file is getting generated. But almost 4 to 5 logs are of 0 size and after that the 6 log file is very hug ( around MB). And the status of the managed servers is in FAILED state. When i checked the nohup logs, i can see "E297: Write Error In Swap File" and also the below error. But when i checked the disk space it is only 30 % full. Please suggest me something that can help me in this. Why is this behavior in the nohup.logs? have anyone faced anythign like this? Please help me.
    But after the recycle everything is fine. But i want to know what went wrong and why it got recovered after the recycle.
    <Feb 11, 2010 7:43:59 AM CST> <Error> <HTTP> <BEA-101246> <Error occurred while flushing HTTP log file for the Web server: wl38_managed1
    java.io.IOException: Disk quota exceeded.
    java.io.IOException: Disk quota exceeded
    at java.io.FileOutputStream.writeBytes([BII)V(FileOutputStream.java:???)
    at java.io.FileOutputStream.write(FileOutputStream.java:260)
    at com.wily.introscope.agent.probe.io.ManagedFileOutputStream.write(ManagedFileOutputStream.java:423)
    at weblogic.utils.io.DoubleBufferedOutputStream.flushBuffer(DoubleBufferedOutputStream.java:58)
    at weblogic.utils.io.DoubleBufferedOutputStream.flush(DoubleBufferedOutputStream.java:157)
    at weblogic.servlet.logging.LogManagerHttp$FlushLogStreamTrigger.trigger(LogManagerHttp.java:522)
    at weblogic.time.common.internal.ScheduledTrigger.run(ScheduledTrigger.java:243)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at weblogic.time.common.internal.ScheduledTrigger.executeLocally(ScheduledTrigger.java:229)
    at weblogic.time.common.internal.ScheduledTrigger.execute(ScheduledTrigger.java:223)
    at weblogic.time.server.ScheduledTrigger.execute(ScheduledTrigger.java:50)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)

    according to error message, your partition size have not enough disk space from where you are running nohup command. check with df -kh.

  • A app on my apple acct that is not mine & I can not get rid of it

    a app on my apple acct that is not mine & I can not get rid of it

    As you didn't answer the question we have to assume that someone else loaded that app onto your machine.   If that is the case they will have to tell you what ID details they used to do that.   By using those same details you can update it if necessary.
    But it would appear you want to be rid of it and while you can remove the app itself from your machine by deleting it, you can't remove its trace from your purchase records.   I believe that would apply even if you edited your appleID and chose another one.   Future downloads could be made and updates accessed by the new account but the old records would remain.  

  • Details Data in SAP BI could not be updated completely: see log

    Hi ,
    I need some help, while creating the campaign i am getting below error
    Details Data in SAP BI could not be updated completely: see log
    Diagnosis
    A problem occurred as data was being saved in the BI system.
    System Response
    The data can not be completely saved in the BI system.
    Procedure
    For more information about the reasons for this, see Messages
    I did the setting setting in SPRO to activate BI update and Multipal BW hierarchy
    SPRO->CRM->Marketing->Marketing Planning and Campaign Management-> System landscape->"Activate BI update & BI multi Hier.
    But in BI i am not getting mltipal hierarchies it coming under "CRMMKTROOT" during extraction not on the save of promotion.
    Appreciate if you please help me on this issue.
    Regards,
    Raj Mittal

    Hi ,
    I need some help, while creating the campaign i am getting below error
    Details Data in SAP BI could not be updated completely: see log
    Diagnosis
    A problem occurred as data was being saved in the BI system.
    System Response
    The data can not be completely saved in the BI system.
    Procedure
    For more information about the reasons for this, see Messages
    I did the setting setting in SPRO to activate BI update and Multipal BW hierarchy
    SPRO->CRM->Marketing->Marketing Planning and Campaign Management-> System landscape->"Activate BI update & BI multi Hier.
    But in BI i am not getting mltipal hierarchies it coming under "CRMMKTROOT" during extraction not on the save of promotion.
    Appreciate if you please help me on this issue.
    Regards,
    Raj Mittal

Maybe you are looking for