Logminer Unsupported error

Hi
i am working in oracle10g Database..
my problem is ,i find out logfile transaction..why means? some time archivelog created more file within one minute..
so,i used Logminer ...
Logminer done correctly.but i can't get the correct username,operation
sql>select * from V$LOGMNR_CONTENTS;
it will come like operation=Unsupported, user name=unknown
how to find the username and operation ??
in oracle document i found out this
UNSUPPORTED = change was caused by operations not currently supported by LogMiner (for example, changes made to tables with ADT columns)
note: The database imported from oracle8 to oracle10g
please help...
SCN DATA_OBJ# DATA_OBJD# SEG_OWNER ROLLBACK OPERATION
1593411835 16677 16677 0 INTERNAL                                                                                 
1593411835 16676 16676 0 INTERNAL                                                                                 
1593411835 16676 16676 0 INTERNAL                                                                                 
1593411835 16674 16674 0 INTERNAL                                                                                 
1593411835 16674 16674 0 INTERNAL                                                                                 
1593411835 16673 16673 0 INTERNAL                                                                                 
1593411836 16673 16673 0 INTERNAL
1593411836 0 0 0 COMMIT commit;
1593411836 0 0 0 UNSUPPORTED
1593411836 0 0 0 UNSUPPORTED
1593411836 0 0 0 UNSUPPORTED
1593411836 0 0 0 UNSUPPORTED
1593411836 0 0 0 UNSUPPORTED
1593411837 0 0 0 UNSUPPORTED
1593411837 0 0 0 UNSUPPORTED
1593411837 0 0 0 UNSUPPORTED
1593411837 0 0 0 UNSUPPORTED
1593411837 0 0 0 UNSUPPORTED
1593411837 0 0 0 UNSUPPORTED
1593411838 0 0 0 UNSUPPORTED
1593411838 0 0 0 UNSUPPORTED
Message was edited by:
Dhana

But we are not use LOB and I don’t think we have that
much of ADT and encrypted values in our database
I get 23996 unsupported values from 65536 number
of row in log table
I think my database is generating unnecessary archive
logs number of archive log generation is very high
that’s why i want to know which operation is going on
the database
So please help me soonIf you have Enterprise Manager running, then you cannot easily confirm what you have in tables and what you do not have unless you know all the object structures in SYSMAN schema.
You may also have problems easily knowing what datatypes and attributes SYS and Background processes are using in the database at a particular time.
There is more unsupported datatype and attrubute types: bfile, nested tables and varrays , xmltype, table compression, object refs etc.
Instead of selecting *, you can try using elimination process at least to help you identify the owner/user of the objects.
set lines 200
set pages 9999
col USERNAME format a10
col XID format a10
col SQL_REDO format a40
col SQL_UNDO format a40
SELECT username,session#,
to_char(timestamp,'DD/MM/YYYY HH24:MI:SS') timestamp,
(XIDUSN || '.' || XIDSLT || '.' ||  XIDSQN) AS XID,
SQL_REDO, SQL_UNDO
FROM V$LOGMNR_CONTENTS
WHERE username = 'XXX'
/Where 'XXX' is the user you want to check.

Similar Messages

  • IE8 unsupported error after updating to ZCM 11 Support Pack 1 (11.1)

    Does any experience this problem after updating to ZCM11sp1?
    I keep getting IE8 unsupported error after updating to ZCM 11 Support
    Pack 1 (11.1) although I am running on IE8 already. Now remote
    management is not working because of this incompatible browser errors. I
    tried this following
    link:http://www.novell.com/support/viewCo...9158&sliceId=1
    But it does not help.
    Any suggestion or idea would be greatly appreciated!!!

    On 8/29/2011 8:26 AM, craig wilson wrote:
    > Double Check all of your settings there, including the option to view
    > Intranet sites in compatibility mode.
    >
    > For some reason, your IE8 is reporting itself as IE7 and running in IE7
    > mode which is no longer supported.
    >
    > On 8/29/2011 9:17 AM, April wrote:
    >> Does any experience this problem after updating to ZCM11sp1?
    >>
    >> I keep getting IE8 unsupported error after updating to ZCM 11 Support
    >> Pack 1 (11.1) although I am running on IE8 already. Now remote
    >> management is not working because of this incompatible browser errors. I
    >> tried this following
    >> link:http://www.novell.com/support/viewCo...9158&sliceId=1
    >>
    >>
    >>
    >> But it does not help.
    >>
    >> Any suggestion or idea would be greatly appreciated!!!
    >
    >
    Thank you for your responding. I have already checked to view Internet
    sites in compatibility mode with no luck. I tried several different
    computers with IE8 but they all got the same problem.

  • ORA-01339: LogMiner BUILD: Error copying system catalog metadata to LogMiner

    Hi, has anyone ever got this error in 11.2.0.3 primary database while trying to convert a physical standby to a logical standby?
    Thanks

    Per the documentation:
    4.2 Step-by-Step Instructions for Creating a Logical Standby Database
    Creating a Logical Standby Database
    4.2.2 Stop Redo Apply on the Physical Standby Database
    SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;
    4.2.3.1 Prepare the Primary Database for Role Transitions
    Has you adjust primary database init.ora parameters to be prepared for switchovers.
    4.2.3.2 Build a Dictionary in the Redo Data
    SQL> EXECUTE DBMS_LOGSTDBY.BUILD;
    this puts a Multi-vertion Data Dictionary (MVDD) is the archive logs that are sent to the standby. 
    This is what fails with:
    SQL> exec dbms_logstdby.build ;
    BEGIN dbms_logstdby.build ; END;
    ERROR at line 1:
    ORA-01339: LogMiner BUILD: Error copying system catalog metadata to LogMiner dictionary
    ORA-06512: at "SYS.DBMS_LOGMNR_INTERNAL", line 5972
    ORA-06512: at "SYS.DBMS_LOGMNR_INTERNAL", line 6070
    ORA-06512: at line 1
    4.2.4.1 Convert to a Logical Standby Database
    SQL> SHUTDOWN ABORT;
    SQL> STARTUP MOUNT EXCLUSIVE;
    SQL> ALTER DATABASE RECOVER TO LOGICAL STANDBY db_name;
    this consumes the data dictionary into the standby for convertion. It is used by SQL apply to understandby object id's because the standby does not know the names of the objects that are in the primary database.
    then you add some logical standby parameters and open the database and start SQL apply.
    SQL> ALTER DATABASE OPEN RESETLOGS;
    SQL>  ALTER DATABASE START LOGICAL STANDBY APPLY IMMEDIATE;
    So running EXECUTE DBMS_LOGSTDBY.BUILD; is a standby alone process that can be tested any time. It does nothing to the primary except extract dictionary information and puts it in the archive logs.
    I find no information on DBMS_LOGSTDBY.BUILD; ever failing. It must be specific to this primary database.
    Thanks

  • Uploading Bug on unsupported & error Files

    so i matched over 4000 songs just fine and had to upload about 600 more songs that didnt match. it worked just fine also until i had only 61 songs left.
    i'm stuck on Step 3 and all i see is "uploading remaining songs and album cover art". nothing is moving, my mac book cpu is starting to go crazy and the fan makes a sound like my blow dryer. i thought maybe its still doing something so i left it over night but nothing changed. it still said 61 of 61 songs to upload. ive stopped and tried a few more times, but nothing helped. i also noticed that i can't close iTunes unless i force quit the process of iTunes.
    an hour ago i deleted the songs that said "error" and "unsupported" (because of lower than supported bitrates) and it finally uploaded the remaining songs that were stuck on "waiting".
    this isnt a solution however, i cant delete the error and unsupported files & drag them back on iTunes each time i want to match something ... very frustrating 
    apple really messed up the release of this service, first some of my album covers r not showing and now this ...

    If you have a need to work on multiple computers then it seems sensible to use an external drive. Just put the Library data file, .xml file and the album artwork folder on the external drive.
    Create a folder named iTunes on the ext HD and nest everything just as if it were on your internal.
    Of course you have selected your import settings in iTunes prefs>General>Import Settings to .mp3.
    In iTunes v8.0 they have moved some of the settings panels around.
    MJ

  • Unsupported error with checkboxes

    I have a bunch of checkboxes numberded from 13 to 24.  two more are supposed to control the previous
    var clueNot = this.getField("OPE038.CLUE.NOT");
    var clueAct = this.getField("OPE038.CLUE.ACT");
    //this works
    if ((clueNot.isBoxChecked(0) == true) || (clueAct.isBoxChecked(0) == true)){
    for (var box = 13; box <= 24; box ++){
      this.getField("OPE038.CLUE."+box).checkThisBox(0, false);
    //this gets an "unsupported in this version of Acrobat" error
    for (var clbox = 13; clbox <= 24; clbox ++){
    if (this.getField("OPE038.CLUE."+clbox).isBoxChecked(0) == true){
      clueNot.checkThisBox(0, false);
      clueAct.checkThisBox(0, false);
    I changed the second part to
    var chkArray = new Array();
    for (var clbox = 13; clbox <= 24; clbox ++){
    if (this.getField("OPE038.CLUE."+clbox).value != "Off"){
    chkArray[chkArray.length] = this.getField("OPE038.CLUE."+clbox).value;
    if (chkArray.length != 0){
    clueNot.checkThisBox(0, false);
    clueAct.checkThisBox(0, false);
    I still get the same error.  Can't see the problem?

    I found out what the error is.  By putting my code in a calculate script, I was, in some way, trying to force checkboxes to behave just like radio buttons, having one to exlude all the others and vice versa.
    I believe the problem is that:
    - both blocks of the code are triggered in the same event (calculate)
    - they are (in fact) both triggered by the same condition which is: both checkboxes are checked at the same time
    Since Acrobat doesn't "remember" which was checked first, I think it creates some kind paradox forcing it to do two opposite things. 
    The solution was to separate both blocks and placing one in the MOUSE DOWN event of the checkbox. Since MOUSE DOWN happens BEFORE calculate, I can place an IF condition checking that the box is OFF (and thus knowing it's gonna change to TRUE).  The other block of code can be left in the claculate script.
    //place this in the mouse down event of the "single" checkbox
    if (event.target.isBoxChecked(0) == false){
    for (var box = 13; box <= 24; box ++){
      this.getField("OPE038.CLUE."+box).checkThisBox(0, false);
    //keep this in the calculate event
    var clueNot = this.getField("OPE038.CLUE.NOT");
    for (var clbox = 13; clbox <= 24; clbox ++){
    if (this.getField("OPE038.CLUE."+clbox).isBoxChecked(0) == true){
      clueNot.checkThisBox(0, false);
    This solution might help those who need a radio button that must remain "uncheckable".  One of the problem with radio button being that once a choice is made, you cannot uncheck and have "no choice" as an option.

  • IPod Nano 7th Gen gets "unsupported" error message hen connecting to Bose player

    Hi, i have an iPod Nano touch 7th gen and use a 30 pin adapter when connecting to my Bose docking station.  I also have an aftermarket adapter that plays through my car radio that I use too.  It has worked fine until recently.  I get the "Unsupported" accessory is not supported message that really makes no sense at all.  Having the typical disappointing experience with Apple support...Any help would be appreciated.  Thanks

    Hello lena2290,
    Thanks for using Apple Support Communities.
    Please follow the troubleshooting article linked to below for this issue you're having with your iPod nano.
    iPod nano
    https://www.apple.com/support/ipodnano/assistant/itunes/#section_0
    Take care,
    Alex H.

  • 'unsupported' error on genuine charger cables

    Hey,
    Just wanted to know if anyone else was experiencing this problem! I haven't done the 7.1.2 update, but mine and my boyfriends phone stopped accepting non-genuine chargers last week. Now, my phone is trying to tell me that my two genuine charger cables are also unsupported. I'm swiftly running out of battery and I haven't found a way around this and I'm afraid ill be totally uncontactable come tomorrow.
    can anyone shed some light or give me a fix? I've tried the whole unlock, unplug, plug back in dismiss, unplug, plug back in thing.. it works for about 30 seconds. Apple were totally unhelpful when I tried to chat to them. I know my phone and cables aren't faulty, as my ipad, my boyfriends phone and a friends iphone are all suddenly having the same problem!
    Much thanks,
    Kasey.

    Inspect the charging port area for dirt/debris/fluff build-up that may be preventing a good connection and use a wooden toothpick, soft clean toothbrush, or a can of compressed air to clean it. Also look for bent or broken pins. Try another cable and/or charger block (be sure to always use a genuine Apple certified brand) in a known good outlet. If you're using a USB port, try another port. If you're using a hub, try a direct connection. If you're using a USB port in the front of a desktop computer, try one in the back. If all these fail, make an appointment at your nearest Genius Bar to have the device evaluated.

  • I used to be able to open .pdf documents on my MacBook Pro using FireFox with NO problems, all of a sudden NOW they won't open and i get "unsupported" error messages. What the ****? I need to fix this ASAP! Can anyone help in simple non geek language?

    THANKS.

    Depending on which version of Firefox you're using, it no longer currently supports the plug-in provided with Adobe Reader. You have to use PDF Plugin 2.4.4. Just disable the Adobe plugin and use the Schubert plugin.
    Clinton

  • After effects CS6 error file cannot be imported - this 'moov' file is damaged or unsupported

    Hi there,
    I'm working in After Effects CS6 (11.0.2.11)
    I imported an AAF that was exported from Avid MC 6.5.2. I colour corrected and graded the sequence using colorista 2 and magic bullet looks and some other native AE FX.
    Before exporting I decided to double check something to do with the audio. I imported the same AAF into FCP 7, took a quick look, but decided nothing needed to be done. I tabbed back to AE (which was left open), and upon returning, AE started giving me all these 'damaged or unsupported' errors.
    Subsequently, AE will now not import any quicktime movies - even ones I rendered out of after effects earlier in the day (these quicktimes use ProRes422 codecs, animation codecs and other lossless codecs)
    I've restarted, re-exported the AAF several times using diff settings, uninstalled perian... but to no success.
    Anyone got any good ideas? I've had this happen before, where AE will import an AAF and it works first time no problem. Then something happens when I re-open the project and boom... 'moov' errors. It's really odd and very annoying - esp since it now won't import other normal quicktime movies too - with the animation codec. I have quicktime 7 pro installed and quicktime X on Mountain Lion (OS 10.8.3).
    -Rich
    Editor,
    Caravan Media, New Zealand
    System Details: MacPro (OS10.8.3) 2 x 2.93GHz 6-Core Intel Xeon, 24GB RAM, Radeon HD 5870 1GB

    I have the exact same problem on a Mac with 10.8.3 and After Effects from the Adobe CS6 MasterCollection (AE 11.0.2.11 (german)): all of a sudden I cannot import any native QuickTime-Movies (ProRes, Animation) or even movies that use e.g. H264 in a QuickTime container. Even projects that worked 2 days ago that contain QuickTime-movies will not open anymore.
    This happened 2 days ago without any action from me that I can think of that could have caused this. I did not install any new codecs or plugins, nor was there anything in the apple software update.
    What I tried/checked so far (to no avail):
    disks are OK,
    file permissions are OK,
    no Firewall is blocking anything,
    deleted AE-prefs,
    removed all 3rd-party plugins,
    removed all 3rd-party codecs.
    Edit: I did some further poking around, and it turns out that after deleting or resetting file permissions of the folder "~/Library/Preferences/Adobe/After Effects" AE will briefly allow you to open an existing project that contains QT-movies. If you then try to import any QT-movie you get the error message -- and after that you cannot open the project again.
    This is really bad -- AE is basically unusable right now.
    P.S.: The (german) error-message is this: "After Effects Fehler: Die Datei "filname.mov" kann nicht importiert werden: Datei "MooV" ist entweder beschädigt oder wird nicht unterstützt."
    Message was edited by: Hanz Franz
    Message was edited by: Hanz Franz

  • What's with the occasional "Unsupported image format" errors?

    I get this error randomly -- suddenly Aperture can't show me anything but a brief flash of the image, and then I get the maroon screen "Unsupported image format" error. Restarting Aperture returns things to normal. I've seen this in both version 1.5.6 and 2.
    I can count on this occurring about every hour or so. This is quite frustrating. I use CR2 files almost exclusively, written from a Canon 5D.
    Any ideas or workarounds for this behavior?

    I was getting this all the time with 1.5, I have not seen it yet with 2. I think it's a memory thing, it happens more quickly if I am running Safari and other stuff. Sometimes quitting Aperture then starting again does the trick, more often shutting the machine down and rebooting clears it. I also have some very large tiff's in the library, Aperture can't (I've not tried it in 2 yet) cope with them, always the unsupported error message. These files are between 300mb to 1gig, sometimes it justs hangs on to the 300mb but mostly not. By the end of the day it was a real problem, I could only export images 2-3 at a time, if I tried to email 10 low res I would get either an out of memory warning or unsupported etc.
    Something holds onto the memory somewhere either in Ap or Safari or all things running.
    Kevin.

  • Error running Archived-Log Downstream Capture Process

    I have created a Archived-Log Downstream Capture Process with ref. to following link
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28321/strms_ccap.htm#i1011654
    After executing the capture process get following error in trace
    ============================================================================
    Trace file /home/oracle/app/oracle/diag/rdbms/orcl/orcl/trace/orcl_cp01_13572.trc
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORACLE_HOME = /home/oracle/app/oracle/product/11.2.0/dbhome_1
    System name: Linux
    Node name: localhost.localdomain
    Release: 2.6.18-194.el5
    Version: #1 SMP Fri Apr 2 14:58:14 EDT 2010
    Machine: x86_64
    Instance name: orcl
    Redo thread mounted by this instance: 1
    Oracle process number: 37
    Unix process pid: 13572, image: [email protected] (CP01)
    *** 2011-08-20 14:21:38.899
    *** SESSION ID:(146.2274) 2011-08-20 14:21:38.899
    *** CLIENT ID:() 2011-08-20 14:21:38.899
    *** SERVICE NAME:(SYS$USERS) 2011-08-20 14:21:38.899
    *** MODULE NAME:(STREAMS) 2011-08-20 14:21:38.899
    *** ACTION NAME:(STREAMS Capture) 2011-08-20 14:21:38.899
    knlcCopyPartialCapCtx(), setting default poll freq to 0
    knlcUpdateMetaData(), before copy IgnoreUnsuperrTable:
    source:
    Ignore Unsupported Error Table: 0 entries
    target:
    Ignore Unsupported Error Table: 0 entries
    knlcUpdateMetaData(), after copy IgnoreUnsuperrTable:
    source:
    Ignore Unsupported Error Table: 0 entries
    target:
    Ignore Unsupported Error Table: 0 entries
    knlcfrectx_Init: rs=STRMADMIN.RULESET$_66, nrs=., cuid=0, cuid_prv=0, flags=0x0
    knlcObtainRuleSetNullLock: rule set name "STRMADMIN"."RULESET$_66"
    knlcObtainRuleSetNullLock: rule set name
    knlcmaInitCapPrc+
    knlcmaGetSubsInfo+
    knlqgetsubinfo
    subscriber name EMP_DEQ
    subscriber dblinke name
    subscriber name APPLY_EMP
    subscriber dblinke name
    knlcmaTerm+
    knlcmaTermSrvs+
    knlcmaTermSrvs-
    knlcmaTerm-
    knlcCCAInit()+, err = 26802
    knlcnShouldAbort: examining error stack
    ORA-26802: Queue "STRMADMIN"."STREAMS_QUEUE" has messages.
    knlcnShouldAbort: examing error 26802
    knlcnShouldAbort: returning FALSE
    knlcCCAInit: no combined capture and apply optimization err = 26802
    knlzglr_GetLogonRoles: usr = 91,
    knlqqicbk - AQ access privilege checks:
    userid=91, username=STRMADMIN
    agent=STRM05_CAPTURE
    knlqeqi()
    knlcRecInit:
    Combined Capture and Apply Optimization is OFF
    Apply-state checkpoint mode is OFF
    last_enqueued, last_acked
    0x0000.00000000 [0] 0x0000.00000000 [0]
    captured_scn, applied_scn, logminer_start, enqueue_filter
    0x0000.0004688c [288908] 0x0000.0004688c [288908] 0x0000.0004688c [288908] 0x0000.0004688c [288908]
    flags=0
    Starting persistent Logminer Session : 13
    krvxats retval : 0
    CKPT_FREE event=FALSE CCA=FALSE Checkptfreq=1000 AV/CDC flags=0
    krvxssp retval : 0
    krvxsda retval : 0
    krvxcfi retval : 0
    #1: krvxcfi retval : 0
    #2: krvxcfi retval : 0
    About to call krvxpsr : startscn: 0x0000.0004688c
    state before krvxpsr: 0
    dbms_logrep_util.get_checkpoint_scns(): logminer sid = 13 applied_scn = 288908
    dbms_logrep_util.get_checkpoint_scns(): prev_ckpt_scn = 0 curr_ckpt_scn = 0
    *** 2011-08-20 14:21:41.810
    Begin knlcDumpCapCtx:*******************************************
    Error 1304 : ORA-01304: subordinate process error. Check alert and trace logs
    Capture Name: STRM05_CAPTURE : Instantiation#: 65
    *** 2011-08-20 14:21:41.810
    ++++ Begin KNST dump for Sid: 146 Serial#: 2274
    Init Time: 08/20/2011 14:21:38
    ++++Begin KNSTCAP dump for : STRM05_CAPTURE
    Capture#: 1 Logminer_Id: 13 State: DICTIONARY INITIALIZATION [ 08/20/2011 14:21:38]
    Capture_Message_Number: 0x0000.00000000 [0]
    Capture_Message_Create_Time: 01/01/1988 00:00:00
    Enqueue_Message_Number: 0x0000.00000000 [0]
    Enqueue_Message_Create_Time: 01/01/1988 00:00:00
    Total_Messages_Captured: 0
    Total_Messages_Created: 0 [ 01/01/1988 00:00:00]
    Total_Messages_Enqueued: 0 [ 01/01/1988 00:00:00]
    Total_Full_Evaluations: 0
    Elapsed_Capture_Time: 0 Elapsed_Rule_Time: 0
    Elapsed_Enqueue_Time: 0 Elapsed_Lcr_Time: 0
    Elapsed_Redo_Wait_Time: 0 Elapsed_Pause_Time: 0
    Apply_Name :
    Apply_DBLink :
    Apply_Messages_Sent: 0
    ++++End KNSTCAP dump
    ++++ End KNST DUMP
    +++ Begin DBA_CAPTURE dump for: STRM05_CAPTURE
    Capture_Type: DOWNSTREAM
    Version:
    Source_Database: ORCL2.LOCALDOMAIN
    Use_Database_Link: NO
    Logminer_Id: 13 Logfile_Assignment: EXPLICIT
    Status: ENABLED
    First_Scn: 0x0000.0004688c [288908]
    Start_Scn: 0x0000.0004688c [288908]
    Captured_Scn: 0x0000.0004688c [288908]
    Applied_Scn: 0x0000.0004688c [288908]
    Last_Enqueued_Scn: 0x0000.00000000 [0]
    Capture_User: STRMADMIN
    Queue: STRMADMIN.STREAMS_QUEUE
    Rule_Set_Name[+]: "STRMADMIN"."RULESET$_66"
    Checkpoint_Retention_Time: 60
    +++ End DBA_CAPTURE dump
    +++ Begin DBA_CAPTURE_PARAMETERS dump for: STRM05_CAPTURE
    PARALLELISM = 1 Set_by_User: NO
    STARTUP_SECONDS = 0 Set_by_User: NO
    TRACE_LEVEL = 7 Set_by_User: YES
    TIME_LIMIT = -1 Set_by_User: NO
    MESSAGE_LIMIT = -1 Set_by_User: NO
    MAXIMUM_SCN = 0xffff.ffffffff [281474976710655] Set_by_User: NO
    WRITE_ALERT_LOG = TRUE Set_by_User: NO
    DISABLE_ON_LIMIT = FALSE Set_by_User: NO
    DOWNSTREAM_REAL_TIME_MINE = FALSE Set_by_User: NO
    MESSAGE_TRACKING_FREQUENCY = 2000000 Set_by_User: NO
    SKIP_AUTOFILTERED_TABLE_DDL = TRUE Set_by_User: NO
    SPLIT_THRESHOLD = 1800 Set_by_User: NO
    MERGE_THRESHOLD = 60 Set_by_User: NO
    +++ End DBA_CAPTURE_PARAMETERS dump
    +++ Begin DBA_CAPTURE_EXTRA_ATTRIBUTES dump for: STRM05_CAPTURE
    USERNAME Include:YES Row_Attribute: YES DDL_Attribute: YES
    +++ End DBA_CAPTURE_EXTRA_ATTRIBUTES dump
    ++ LogMiner Session Dump Begin::
    SessionId: 13 SessionName: STRM05_CAPTURE
    Start SCN: 0x0000.00000000 [0]
    End SCN: 0x0000.00046c2d [289837]
    Processed SCN: 0x0000.0004689e [288926]
    Prepared SCN: 0x0000.000468d4 [288980]
    Read SCN: 0x0000.000468e2 [288994]
    Spill SCN: 0x0000.00000000 [0]
    Resume SCN: 0x0000.00000000 [0]
    Branch SCN: 0x0000.00000000 [0]
    Branch Time: 01/01/1988 00:00:00
    ResetLog SCN: 0x0000.00000001 [1]
    ResetLog Time: 08/18/2011 16:46:59
    DB ID: 740348291 Global DB Name: ORCL2.LOCALDOMAIN
    krvxvtm: Enabled threads: 1
    Current Thread Id: 1, Thread State 0x01
    Current Log Seqn: 107, Current Thrd Scn: 0x0000.000468e2 [288994]
    Current Session State: 0x20005, Current LM Compat: 0xb200000
    Flags: 0x3f2802d8, Real Time Apply is Off
    +++ Additional Capture Information:
    Capture Flags: 4425
    Logminer Start SCN: 0x0000.0004688c [288908]
    Enqueue Filter SCN: 0x0000.0004688c [288908]
    Low SCN: 0x0000.00000000 [0]
    Capture From Date: 01/01/1988 00:00:00
    Capture To Date: 01/01/1988 00:00:00
    Restart Capture Flag: NO
    Ping Pending: NO
    Buffered Txn Count: 0
    -- Xid Hash entry --
    -- LOB Hash entry --
    -- No TRIM LCR --
    Unsupported Reason: Unknown
    --- LCR Dump not possible ---
    End knlcDumpCapCtx:*********************************************
    *** 2011-08-20 14:21:41.810
    knluSetStatus()+{
    *** 2011-08-20 14:21:44.917
    knlcapUpdate()+{
    Updated streams$_capture_process
    finished knlcapUpdate()+ }
    finished knluSetStatus()+ }
    knluGetObjNum()+
    knlsmRaiseAlert: keltpost retval is 0
    kadso = 0 0
    KSV 1304 error in slave process
    *** 2011-08-20 14:21:44.923
    ORA-01304: subordinate process error. Check alert and trace logs
    knlz_UsrrolDes()
    knstdso: state object 0xb644b568, action 2
    knstdso: releasing so 0xb644b568 for session 146, type 0
    knldso: state object 0xa6d0dea0, action 2 memory 0x0
    kadso = 0 0
    knldso: releasing so 0xa6d0dea0
    OPIRIP: Uncaught error 447. Error stack:
    ORA-00447: fatal error in background process
    ORA-01304: subordinate process error. Check alert and trace logs
    Any suggestions???

    Output of above query
    ==============================
    CAPTURE_NAME STATUS ERROR_MESSAGE
    STRM05_CAPTURE ABORTED ORA-01304: subordinate process error. Check alert and trace logs
    Alert log.xml
    =======================
    <msg time='2011-08-25T16:58:01.865+05:30' org_id='oracle' comp_id='rdbms'
    client_id='' type='UNKNOWN' level='16'
    host_id='localhost.localdomain' host_addr='127.0.0.1' module='STREAMS'
    pid='30921'>
    <txt>Errors in file /home/oracle/app/oracle/diag/rdbms/orcl/orcl/trace/orcl_cp01_30921.trc:
    ORA-01304: subordinate process error. Check alert and trace logs
    </txt>
    </msg>
    The orcl_cp01_30921.trc has the same thing posted in the first message.

  • Problem with logminer in Data Guard configuration

    Hi all,
    I experience strange problem with applying of the logs in DataGuard configuration on the logical standby database side.
    I've set up the configuration step by step as it is described in documentation (Oracle Data Guard Concepts and Administration, chapter 4).
    Everything went fine until I issued
    ALTER DATABASE START LOGICAL STANDBY APPLY;
    I saw that log applying process was started by checking the output of
    SELECT NAME, VALUE FROM V$LOGSTDBY_STATS WHERE NAME = 'coordinator state';
    and
    SELECT TYPE, HIGH_SCN, STATUS FROM V$LOGSTDBY;
    but in few minutes it stoped and quering DBA_LOGSTDBY_EVENTS I saw the following records:
    ORA-16111: log mining and apply setting up
    ORA-01332: internal Logminer Dictionary error
    Alert log says the following:
    LOGSTDBY event: ORA-01332: internal Logminer Dictionary error
    Wed Jan 21 16:57:57 2004
    Errors in file /opt/oracle/admin/whouse/bdump/whouse_lsp0_5817.trc:
    ORA-01332: internal Logminer Dictionary error
    Here is the end of the whouse_lsp0_5817.trc
    error 1332 detected in background process
    OPIRIP: Uncaught error 447. Error stack:
    ORA-00447: fatal error in background process
    ORA-01332: internal Logminer Dictionary error
    But the most useful info I found in one more trace file (whouse_p001_5821.trc):
    krvxmrs: Leaving by exception: 604
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01031: insufficient privileges
    ORA-06512: at "SYS.LOGMNR_KRVRDREPDICT3", line 68
    ORA-06512: at line 1
    Seems that somewhere the correct privileges were not given or smth like this. By the way I was doing all the operations under SYS account (as SYSDBA).
    Could smb give me a clue where could be my mistake or what was done in the wrong way?
    Thank you in advance.

    Which is your SSIS version?
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Domain name showing instead of DisplayName (DN Error)

    Hi
    For a portion of our users, myself included the Domain\UserName shows in sharepoint but for the majority of users it shows the display name fine.
    I've done a full user profile synch today and also restarted the Forefront Identity Manager Service & Synch but it's still nto fixed.
    The weird thing is from seeing other people's problems they generally have everyone with domain name but it's a mixture here on my farm.
    Here's the error from the Application log;
    The extensible extension returned an unsupported error.
    The stack trace is:
    "System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.InvalidOperationException: More than one DN specified for the same profile.
       at Microsoft.Office.Server.UserProfiles.ProfileImportExportService.UpdateWithProfileChangeData(Int64 importExportId, ProfileChangeData[] profileChangeData)
       --- End of inner exception stack trace ---
       at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at Microsoft.Office.Server.WebServiceDirectProxy.WebMethodInfo.Invoke(Object webServiceInstance, Object[] args)
       at Microsoft.Office.Server.WebServiceDirectProxy.Invoke(String methodName, Object[] args)
       at Microsoft.Office.Server.UserProfiles.ManagementAgent.ProfileImportExportDirect.UpdateWithProfileChangeData(Int64 importExportId, ProfileChangeData[] profileChangeData)
       at Microsoft.Office.Server.UserProfiles.ManagementAgent.ProfileImportExportExtension.Microsoft.MetadirectoryServices.IMAExtensibleCallExport.ExportEntry(ModificationType modificationType, String[] changedAttributes, CSEntry csentry)
    Forefront Identity Manager 4.0.2450.47"

    Right now got the service running again, but the following powershell error - can anyone explain please?  Can i just paste a powershell command in and it work??  Firstly go the UP GUID from Get-SPServiceInstance and then tried to run
    $upsa = Get-SPServiceApplication –Id 0e2c7f6c-d9f8-43a3-9f56-427f681d5866  $upsa.NetBIOSDomainNamesEnabled=1
    $upsa.Update()
    But I get....
    PS C:\Users\sharepoint> $upsa = Get-SPServiceApplication -Id 0e2c7f6c-d9f
    8-43a3-9f56-427f681d5866  $upsa.NetBIOSDomainNamesEnabled=1
    Get-SPServiceApplication : A positional parameter cannot be found that accepts
    argument '$null'.
    At line:1 char:33
    + $upsa = Get-SPServiceApplication <<<<  -Id 0e2c7f6c-d9f8-43a3-9f56-427f681d58
    66  $upsa.NetBIOSDomainNamesEnabled=1
        + CategoryInfo          : InvalidArgument: (:) [Get-SPServiceApplication],
        ParameterBindingException
        + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.SharePoint
       .PowerShell.SPCmdletGetServiceApplication
    PS C:\Users\sharepoint> $upsa.Update()
    You cannot call a method on a null-valued expression.
    At line:1 char:13
    + $upsa.Update <<<< ()
        + CategoryInfo          : InvalidOperation: (Update:String) [], RuntimeExc
       eption
        + FullyQualifiedErrorId : InvokeMethodOnNull

  • Fim Synchronization Error - Event ID : 6801 - How to resolve in existing farm ?

    Hello,
    My farm was working well since last 1 year for synchronizing user profile ,however for last 1 month it has been stopped as users are not being added/updated.
    UPS Account is having replicate directory changing permission
    UPS,sync and Firm service are in Running State
    FIM and Server has logged following error for multiple users:
    Level: Error
    Source:
    FIMSynchronizationService
    Event ID: 6801
    Task Category:
    Server   
    Message: 
    "The extensible extension returned an unsupported error.
    The stack trace is:
    ""System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.ArgumentNullException: Value cannot be null.
    Parameter name: strAccountName
    at Microsoft.Office.Server.UserProfiles.UserProfileManager.UserExists(String strAccountName)
    at Microsoft.Office.Server.UserProfiles.UserProfile..ctor(UserProfileManager objManager, String strAccountName, Hashtable properties)
    at Microsoft.Office.Server.UserProfiles.UserProfileManager.CreateProfileWithBulkProperties(Int64 importExportId, String strAccountName, Hashtable properties)
    at Microsoft.Office.Server.UserProfiles.ProfileImportExportService.UpdateWithProfileChangeData(Int64 importExportId, ProfileChangeData[] profileChangeData)
    --- End of inner exception stack trace ---
    at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
    at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
    at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
    at Microsoft.Office.Server.WebServiceDirectProxy.WebMethodInfo.Invoke(Object webServiceInstance, Object[] args)
    at Microsoft.Office.Server.WebServiceDirectProxy.Invoke(String methodName, Object[] args)
    at Microsoft.Office.Server.UserProfiles.ManagementAgent.ProfileImportExportDirect.UpdateWithProfileChangeData(Int64 importExportId, ProfileChangeData[] profileChangeData)
    at Microsoft.Office.Server.UserProfiles.ManagementAgent.ProfileImportExportExtension.Microsoft.MetadirectoryServices.IMAExtensibleCallExport.ExportEntry(ModificationType modificationType, String[] changedAttributes, CSEntry csentry)
    Forefront Identity Manager 4.0.2450.49"""
    Would you please let me know the resolution in order to remove above error ?
    Thanks and Kind Regards,
    Dipti Chhatrapati

    Hello Dipti,
    Re-creating UPA would be the final solution as per my understanding as most of the troubleshooting has already been performed by you.
    Personally, i would suggest you take backup of your UPA databases first (Profile, Social and Sync) and then delete the existing sync connection and re create a new one (also take screenshot of every managed property so that we would know which property is connected
    to which attribute in AD).
    If this doesn't resolve your issue then re-create UPA with the existing database you backed up earlier.
    If above mentioned steps doesn't resolve the issue then delete UPA and create a new UPA with OLD profile & Social DB and create a fresh new Sync DB.
    If issue still persist then re-create a new UPA with new database and configure everything from scratch.
    Note: for all these steps we would require downtime as we might need to clear timer cache or perform IISreset in case we face trouble. Otherwise, this solution doesn't actually require downtime. Also, when we will be troubleshooting on the request users wouldn't
    be able to see their profile and tags which they would have already made.
    Thank You.

  • Unsupported Browser on iPhone / iPad with ISE 1.3

    I'm playing around with ISE 1.3 and the self provisioning flow.  I'm able to provision a Windows client, but an iPhone or iPad with IOS 7.1.2 gives me an "unsupported browser" error when I try to sign on.  I have an IOS client provisioning profile set up.  Is IOS 7 no longer supported with ISE 1.3?
    Thanks!

    After issuing the command:
    config network web-auth captive-bypass enable
    The iOS devices can on board. The registration page does not pop up now. It requires you to open a web browser and it appears that chrome for IOS will not work as it still gives an unsupported error but if you open in safari, which I never use, it does work. 

Maybe you are looking for