Move lob segment fails with invalid identifier

Why does this fail:
SQL> desc APPLSYS.WF_INBOUND_TABLE
Name Null? Type
Q_NAME VARCHAR2(30)
MSGID NOT NULL RAW(16)
CORRID VARCHAR2(128)
PRIORITY NUMBER
STATE NUMBER
DELAY TIMESTAMP(6)
EXPIRATION NUMBER
TIME_MANAGER_INFO TIMESTAMP(6)
LOCAL_ORDER_NO NUMBER
CHAIN_NO NUMBER
CSCN NUMBER
DSCN NUMBER
ENQ_TIME TIMESTAMP(6)
ENQ_UID NUMBER
ENQ_TID VARCHAR2(30)
DEQ_TIME TIMESTAMP(6)
DEQ_UID NUMBER
DEQ_TID VARCHAR2(30)
RETRY_COUNT NUMBER
EXCEPTION_QSCHEMA VARCHAR2(30)
EXCEPTION_QUEUE VARCHAR2(30)
STEP_NO NUMBER
RECIPIENT_KEY NUMBER
DEQUEUE_MSGID RAW(16)
USER_DATA SYSTEM.WF_PAYLOAD_T
SENDER_NAME VARCHAR2(30)
SENDER_ADDRESS VARCHAR2(1024)
SENDER_PROTOCOL NUMBER
USER_PROP ANYDATA
SQL> alter table APPLSYS.WF_INBOUND_TABLE move TABLESPACE APPS_TS_TX_DATA;
Table altered.
SQL> ALTER TABLE APPLSYS.WF_INBOUND_TABLE MOVE LOB(USER_PROP) STORE AS (TABLESPACE APPS_TS_TX_DATA);
ERROR at line 1:
ORA-00904: "USER_PROP": invalid identifier

user600570 wrote:
Well, whatever the type happens to be, how to I move this segment?Doesn't the segment move when the corresponding table is moved to new tablespace?
At least that is what I see.
SQL> select * from v$version ;
BANNER
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
PL/SQL Release 10.2.0.4.0 - Production
CORE     10.2.0.4.0     Production
TNS for Solaris: Version 10.2.0.4.0 - Production
NLSRTL Version 10.2.0.4.0 - Production
SQL> create table t nologging as select * from applsys.wf_inbound_table where 1 = 2 ;
Table created.
SQL> select dbms_metadata.get_ddl('TABLE','T') from dual ;
DBMS_METADATA.GET_DDL('TABLE','T')
  CREATE TABLE "APPS"."T"
   (     "Q_NAME" VARCHAR2(30),
     "MSGID" RAW(16),
     "CORRID" VARCHAR2(128),
     "PRIORITY" NUMBER,
     "STATE" NUMBER,
     "DELAY" TIMESTAMP (6),
     "EXPIRATION" NUMBER,
     "TIME_MANAGER_INFO" TIMESTAMP (6),
     "LOCAL_ORDER_NO" NUMBER,
     "CHAIN_NO" NUMBER,
     "CSCN" NUMBER,
     "DSCN" NUMBER,
     "ENQ_TIME" TIMESTAMP (6),
     "ENQ_UID" NUMBER,
     "ENQ_TID" VARCHAR2(30),
     "DEQ_TIME" TIMESTAMP (6),
     "DEQ_UID" NUMBER,
     "DEQ_TID" VARCHAR2(30),
     "RETRY_COUNT" NUMBER,
     "EXCEPTION_QSCHEMA" VARCHAR2(30),
     "EXCEPTION_QUEUE" VARCHAR2(30),
     "STEP_NO" NUMBER,
     "RECIPIENT_KEY" NUMBER,
     "DEQUEUE_MSGID" RAW(16),
     "USER_DATA" "SYSTEM"."WF_PAYLOAD_T" ,
     "SENDER_NAME" VARCHAR2(30),
     "SENDER_ADDRESS" VARCHAR2(1024),
     "SENDER_PROTOCOL" NUMBER,
     "USER_PROP" "SYS"."ANYDATA"
   ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS NOLOGGING
  STORAGE(INITIAL 40960 NEXT 40960 MINEXTENTS 1 MAXEXTENTS 505
  PCTINCREASE 50 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
  TABLESPACE "APPLSYSD"
OPAQUE TYPE "USER_PROP" STORE AS LOB (
  ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10
  CACHE
  STORAGE(INITIAL 40960 NEXT 40960 MINEXTENTS 1 MAXEXTENTS 505
  PCTINCREASE 50 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT))
SQL> select owner, table_name, column_name, segment_name, tablespace_name from dba_lobs
  2  where table_name = 'T' ;
OWNER                          TABLE_NAME
COLUMN_NAME
SEGMENT_NAME                   TABLESPACE_NAME
APPS                           T
USER_PROP
SYS_LOB0000365381C00035$$      APPLSYSD
SQL> alter table t move tablespace APPLSYSX ;
Table altered.
SQL> select dbms_metadata.get_ddl('TABLE','T') from dual ;
DBMS_METADATA.GET_DDL('TABLE','T')
  CREATE TABLE "APPS"."T"
   (     "Q_NAME" VARCHAR2(30),
     "MSGID" RAW(16),
     "CORRID" VARCHAR2(128),
     "PRIORITY" NUMBER,
     "STATE" NUMBER,
     "DELAY" TIMESTAMP (6),
     "EXPIRATION" NUMBER,
     "TIME_MANAGER_INFO" TIMESTAMP (6),
     "LOCAL_ORDER_NO" NUMBER,
     "CHAIN_NO" NUMBER,
     "CSCN" NUMBER,
     "DSCN" NUMBER,
     "ENQ_TIME" TIMESTAMP (6),
     "ENQ_UID" NUMBER,
     "ENQ_TID" VARCHAR2(30),
     "DEQ_TIME" TIMESTAMP (6),
     "DEQ_UID" NUMBER,
     "DEQ_TID" VARCHAR2(30),
     "RETRY_COUNT" NUMBER,
     "EXCEPTION_QSCHEMA" VARCHAR2(30),
     "EXCEPTION_QUEUE" VARCHAR2(30),
     "STEP_NO" NUMBER,
     "RECIPIENT_KEY" NUMBER,
     "DEQUEUE_MSGID" RAW(16),
     "USER_DATA" "SYSTEM"."WF_PAYLOAD_T" ,
     "SENDER_NAME" VARCHAR2(30),
     "SENDER_ADDRESS" VARCHAR2(1024),
     "SENDER_PROTOCOL" NUMBER,
     "USER_PROP" "SYS"."ANYDATA"
   ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS NOLOGGING
  STORAGE(INITIAL 40960 NEXT 40960 MINEXTENTS 1 MAXEXTENTS 505
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
  TABLESPACE "APPLSYSX"
OPAQUE TYPE "USER_PROP" STORE AS LOB (
  ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10
  CACHE
  STORAGE(INITIAL 40960 NEXT 40960 MINEXTENTS 1 MAXEXTENTS 505
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT))
SQL> select owner, table_name, column_name, segment_name, tablespace_name from dba_lobs
  2  where table_name = 'T' ;
OWNER                          TABLE_NAME
COLUMN_NAME
SEGMENT_NAME                   TABLESPACE_NAME
APPS                           T
USER_PROP
SYS_LOB0000365381C00035$$      APPLSYSX
SQL> drop table t purge ;
Table dropped.If you want to be able to move the segment to a different tablespace than the table, I guess that is not possible. Oracle only allows LOBs to be stored in separate tablespace than the corresponding table provided they are defined as LOBs explcitly during table creation, unlike the LOB created by oracle internally as a result of column datatype being ANYDATA as in this case.

Similar Messages

  • New Repository variable failing with 'Unresolved Identifier' error

    Hi,
    I created a new repository variable and when used in the Segments/Reports it is failing with 'Unresolved Identifier' error. This is happening intermittently and sometimes it is getting the results as expected, Can you please let me know where I am wrong?
    Thanks,
    Viswanath K M

    Couple things to check here are :
    1) Make sure you have spelled the variable name correct.
    2) Make sure you are using the repository variables with appropriate data type columns.
    Regards,
    -Amith.

  • Discoverer Desktop Connections Fails With Invalid Username/Pass in r12

    Hi all;
    I have problem. I can login Discoverer Administrator from my localmachine and i can see what ppl did it there.. But when i try to login Discoverer Desktop from my localmachine its gives me Invalid Username/Pass. error.
    I even cant login my system from browser :
    http://xx.com:7778/discoverer/plus << pages comes and i fill in the blanks area like:
    Connect to : Oracle Application
    Username: sysadmin
    pass: ***
    Database: VIS
    I found some document from forums. Whihc is :
    Discoverer Is Unable to Connect to Oracle Applications database: invalid username/password      Doc ID: Note:467919.1
    Discoverer 10g (10.1.2) Connectons To Oracle E-Business Suite 12 Fails With 'Invalid Username/Password'      Doc ID: Note:443661.1
    But before i apply those patch i want to take advice from you. Coz i can login Discoverer Administrator and can use it but cant login Discoverer Desktop...its kind of wierd... i already checked what i have done in installtion and its all seems correct.
    Any idea;
    Regards
    Helios

    Discoverer supports two kinds of connections - database schema connections and apps connections. For Disco Admin, you login using a database schema, which, as you stated, works. For Disco User you login using an Apps user account (for which there is a no equivalent database scherma). To enable such a connection, you need to check the "oracle applications user" check box on the 10g Disco login screen. Also, under Tools --> Options, in the Connection tab, make sure that "connect to both standard and applications EULs" radio button is selected.
    HTH
    Srini

  • Backup Fails with Invalid RECID Error

    Hi All,
    Please help me to understand Caution -section
    below text is from
    [http://download.oracle.com/docs/cd/B10501_01/server.920/a96566/rcmtroub.htm#447765]
    Backup Fails with Invalid RECID Error: Solution 2
    This solution is more difficult than solution 1:
    To create the control file with SQL*Plus:
       1. Connect to the target database with SQL*Plus. For example, enter:
          % sqlplus 'SYS/oracle@trgt AS SYSDBA'
       2. Mount the database if it is not already mounted:
          SQL> ALTER DATABASE MOUNT;
       3. Back up the control file to a trace file:
          SQL> ALTER DATABASE BACKUP CONTROLFILE TO TRACE;
       4. Edit the trace file as necessary. The relevant section of the trace file looks something like the following:
          # The following commands will create a new control file and use it
          # to open the database.
          # Data used by the recovery manager will be lost. Additional logs may
          # be required for media recovery of offline data files. Use this
          # only if the current version of all online logs are available.
          STARTUP NOMOUNT
          CREATE CONTROLFILE REUSE DATABASE "TRGT" NORESETLOGS  ARCHIVELOG
          --  STANDBY DATABASE CLUSTER CONSISTENT AND UNPROTECTED
              MAXLOGFILES 32
              MAXLOGMEMBERS 2
              MAXDATAFILES 32
              MAXINSTANCES 1
              MAXLOGHISTORY 226
          LOGFILE
            GROUP 1 '/oracle/oradata/trgt/redo01.log'  SIZE 25M,
            GROUP 2 '/oracle/oradata/trgt/redo02.log'  SIZE 25M,
            GROUP 3 '/oracle/oradata/trgt/redo03.log'  SIZE 500K
          -- STANDBY LOGFILE
          DATAFILE
            '/oracle/oradata/trgt/system01.dbf',
            '/oracle/oradata/trgt/undotbs01.dbf',
            '/oracle/oradata/trgt/cwmlite01.dbf',
            '/oracle/oradata/trgt/drsys01.dbf',
            '/oracle/oradata/trgt/example01.dbf',
            '/oracle/oradata/trgt/indx01.dbf',
            '/oracle/oradata/trgt/tools01.dbf',
            '/oracle/oradata/trgt/users01.dbf'
          CHARACTER SET WE8DEC
          # Take files offline to match current control file.
          ALTER DATABASE DATAFILE '/oracle/oradata/trgt/tools01.dbf' OFFLINE;
          ALTER DATABASE DATAFILE '/oracle/oradata/trgt/users01.dbf' OFFLINE;
          # Configure RMAN configuration record 1
          VARIABLE RECNO NUMBER;
          EXECUTE :RECNO := SYS.DBMS_BACKUP_RESTORE.SETCONFIG('CHANNEL','DEVICE TYPE DISK
          DEBUG 255');
          # Recovery is required if any of the datafiles are restored backups,
          # or if the last shutdown was not normal or immediate.
          RECOVER DATABASE
          # All logs need archiving and a log switch is needed.
          ALTER SYSTEM ARCHIVE LOG ALL;
          # Database can now be opened normally.
          ALTER DATABASE OPEN;
          # Commands to add tempfiles to temporary tablespaces.
          # Online tempfiles have complete space information.
          # Other tempfiles may require adjustment.
          ALTER TABLESPACE TEMP ADD TEMPFILE '/oracle/oradata/trgt/temp01.dbf' REUSE;
          # End of tempfile additions.
       5. Shut down the database:
          SHUTDOWN IMMEDIATE
       6. Execute the script to create the control file, recover (if necessary), archive the logs, and open the database:
          STARTUP NOMOUNT
          CREATE CONTROLFILE ...;
          EXECUTE ...;
          RECOVER DATABASE
          ALTER SYSTEM ARCHIVE LOG CURRENT;
          ALTER DATABASE OPEN ...;
    Caution:
          If you do not open with the RESETLOGS option,
    then two copies of an archived redo log for a given log sequence number may
    exist--even though these two copies have completely different contents.
    For example, one log may have been created on the original host and the other on the new host.
    If you accidentally confuse the logs during a media recovery,
    then the database will be corrupted but Oracle and RMAN cannot detect the problem.

    Please help me to understand Caution -section
    Caution:
    If you do not open with the RESETLOGS option,
    then two copies of an archived redo log for a given log sequence number may
    exist--even though these two copies have completely different contents.
    For example, one log may have been created on the original host and the other on the new host.
    If you accidentally confuse the logs during a media recovery,
    then the database will be corrupted but Oracle and RMAN cannot detect the problem.As per my understanding it says. If you don't open database with RESETLOGS option then there may be archived logs with log sequence number which is already archived on the source host. This may happen due to difference in RECIDs. Now when the database needs media recovery for this particular log sequence, you may provide any of them. So in this case, RMAN and Oracle will not be able to differentiate the two files and can accept any of the archived log files during recovery. Since the contents of two archived logs are different, because they are generated at different times and they contains different transactions. So, internally it corrupts your database.
    Rgds.

  • Cube failed with invalid character stics

    Hi,
    My cube failed with invalid charactersticts....data flow is source sytem to ODS and then cube.
    loading in to ODS and activation is also successful . I would like to know the reason why ODS loading & activation is not failed with above said message and why cube is failed...
    Thanks in advance.....CK

    Hi,
    BW accepts just capital letters and certain characters. The permitted characters list can be seen via transaction RSKC.
    There are several ways to solve this problem:
    1)     Removing erroneous character from R/3 (for example required vendor number that need to be changed can be found from PSA from line shown in error message)
    2)     Changing or removing character in update rules (need to done by ABAP)
    3)     Putting character to BW permitted characters, if character is really needed in BW
    4)     If the bad character only happens once then it can be directly change/removed by editing the PSA
    5)     Put ALL_CAPITAL in permitted characters. Needs to be tested first!
    Editing and updating from PSA, first ensure that the load has been loaded in PSA, then delete the request from the data target, edit PSA by double clicking the field you wish to change and save. Do not mark the line and press change this will result in incorrect data. After you have corrected the PSA, right click on the not yet loaded PSA and choose u201Cstart immediately.u201D
    Hope it will help you.
    Regards,

  • 10g : WriteToFile always fails with 'invalid directory path'

    Oracle 10.1.0.3.0
    Microsoft Windows XP Service Pack 2
    I can't use XMLDOM.writeToFile. Always fails with 'invalid directory path' :
    SQL> create directory c_root as 'C:\';
    Directory created.
    SQL>
    SQL> declare
    2 doc xmldom.DOMDocument;
    3 root_elmt xmldom.DOMElement;
    4 begin
    5 doc := xmldom.newDOMDocument;
    6
    7 root_elmt := xmldom.createElement(doc, 'MessageBatch');
    8
    9 xmldom.writeToFile(doc, 'C:\docSample.xml');
    10 xmldom.freeDocument(doc);
    11
    12 end;
    13 /
    declare
    ERROR at line 1:
    ORA-29280: invalid directory path
    ORA-06512: at "SYS.UTL_FILE", line 33
    ORA-06512: at "SYS.UTL_FILE", line 436
    ORA-06512: at "XDB.DBMS_XSLPROCESSOR", line 86
    ORA-06512: at "XDB.DBMS_XMLDOM", line 4451
    ORA-06512: at line 9
    This happens with any OS directory with write permission for Everyone.
    Also tried with UTL_FILE_DIR = *, same outcome...
    Thanks in advance,
    Hugo Leote

    Look like bug 4477774. A possible workaround, somewhat unsafe, is to set UTL_FILE_PATH to '*', which will require a server restart. You then specifiy the path with unix style '/' rather than dos style '\'. You may also be able to use a path with unix style '/' rather than '*', although the bug description does not make this clear.

  • How to move lob segment in partitioned table

    On my Oracle 11.2, I have a partitioned table wich I would like to move to another tablespace
    After invoking script, there's still unmoved lob segment withing table
    CREATE TABLE BONGO.AAA_3
      ID       NUMBER,
      DATUM    DATE,
      OBJEKAT  BLOB
    TABLESPACE BONGODATA_HUGE
    PCTUSED    40
    PCTFREE    10
    INITRANS   1
    MAXTRANS   255
    LOGGING
    PARTITION BY RANGE (DATUM)
      PARTITION P_MAXVALUE VALUES LESS THAN (MAXVALUE)
        LOGGING
        NOCOMPRESS
        TABLESPACE BONGODATA_HUGE
    LOB (OBJEKAT) STORE AS
            (   TABLESPACE  BONGODATA
              ENABLE        STORAGE IN ROW
              CHUNK       8192
              RETENTION
              NOCACHE
              STORAGE    (
                          INITIAL          64K
                          NEXT             1M
                          MINEXTENTS       1
                          MAXEXTENTS       UNLIMITED
                          PCTINCREASE      0
                          FREELISTS        1
                          FREELIST GROUPS  1
                          BUFFER_POOL      DEFAULT
        PCTUSED    40
        PCTFREE    10
        INITRANS   1
        MAXTRANS   255
        STORAGE    (
                    INITIAL          64K
                    NEXT             1M
                    MINEXTENTS       1
                    MAXEXTENTS       UNLIMITED
                    FREELISTS        1
                    FREELIST GROUPS  1
                    BUFFER_POOL      DEFAULT
    NOCOMPRESS
    NOCACHE
    NOPARALLEL
    MONITORING;how to move this lob segment in partitioned table?
    or, is there some package for data move within tablespaces?
    regards

    tnx...
    now, I have another problem..
    I have a nested table within partitioned table, and I'm trying to move it to another tablespace.
    I tried to move child table (of nested type colum), but I didn't succedeed...

  • Upgrade WebDB 2.2 to Portal Fails with Invalid Sys password

    I am upgrading from WebDB 2.2.0.0.5 all the way to the latest 3.0.9xx. My database is 8172. I am at the point where you run the 306 upgrade script. It makes it through renaming all the webdb objects to UPG_<OLD_NAME> but then fails with an invalid sys password error when starting winstall. The sys password is not invalid and the script even tests that it is valid before even starting. So, I am not sure what the problem is. I have tried this about a dozen times different ways and still the same error:
    Renaming the 2.2 tables to UPG_<OLD_NAME> and Dropping Objects
    Renamed 66 2.2 table(s).
    Dropped 15 2.2 sequence(s).
    Dropped 164 PACKAGE(S)
    Dropped 3 PROCEDURE(S)
    Dropped 0 FUNCTION(S)
    Dropped 55 VIEW(S)
    PL/SQL procedure successfully completed.
    /appl02/stage/upgrade22
    INSTALLING WINSTALL WITH NEWSSO AND NO CONNECTSTRING
    Error: Invalid SYS password
    Install terminated.
    Running setpass.sql
    /appl02/stage/upgrade22/upgrade/22-30 /appl02/stage/upgrade22
    old 1: alter user !schema_name identified by !schema_password
    new 1: alter user webdb identified by webdb
    User altered.
    /appl02/stage/upgrade22
    /appl02/stage/upgrade22/sso /appl02/stage/upgrade22
    ERROR:
    ORA-01017: invalid username/password; logon denied
    Does anyone have ANY ideas????

    We spend almost 6 months (on and off) to get a successful migration from webdb. After countless discussions with Oracle, because we though we where doing something wrong, Oracle advised us that forms do not migrate "well" and any migrated forms do not display as portals. We are not upgrading 300 components by hand. I do not know if this affects you like it did us but I thought you would like to know.
    Paul

  • Move LOB segment

    Oracle 11.0.1.7:
    How can I move the lob segment: I am trying this
    CREATE TABLE PART_TMP(
      PAYLOAD_ID Number(19,0) NOT NULL,
      created_date timestamp(6),
      pay blob
    LOB ("PAY") STORE AS (DISABLE STORAGE IN ROW TABLESPACE EFE_LOB)
    PARTITION BY RANGE (payload_id)
    interval (2)
    SUBPARTITION BY HASH (payload_id)
    SUBPARTITIONS 64(PARTITION PART_TMP_p00 VALUES LESS THAN (1));
    alter table part_tmp move subpartition SYS_SUBP28243 update indexes; --This works
    --But this doesn't work. Is this the right way of moving LOB segment? Looks like Lobs segment doesn't move with above command.
    alter table part_tmp move LOB(pay) subpartition SYS_SUBP28243 update indexesI need to move SUBPARTTION and associated LOB SUBPARTITION. Could someone please help?

    There is a table which has a LOB and there are lot of deletes and updates happening daily .
    I need to shrink the space. When I use:
    alter table lob_test modify lob (data) (shrink space);
    It throws an error cannot use shrink clause on this table. Table as no function based indexes and segment space management for this tablespace is auto.
    Can any one tell what is the best approach to reclaim the space.
    Can any one tell can I use the alter table move online or needs downtime.
    Thanks

  • Single Mailbox Move to 2013 Fails with Job Hasnt Made Progress Since Error

    I migrated from 2010 to 2013 and only one mailbox fails to move.  I can move it within the 2010 mailbox databases but I cannot get it to migrate to a 2013 database.  The migration takes a loong time to move the 500MB mailbox and eventually will
    fail with an error stating the following
    "This job hasn't made progress since {date / time}.  I have tried to move it several times and it fails with the same error each time.  All other mailboxes in the entire environment have been successful with no issues.  I moved it to
    another 2010 mailbox database with no issues but the 2013 move failed again afterwards.  
    Any ideas what the issue could be?

    thanks for the idea.  I ran it and got the info below.  That error seems interesting.  I looked it up and found this:  https://social.technet.microsoft.com/Forums/exchange/en-US/5da9b81d-8665-4476-954c-98d1a8418ab1/exchange-2013-mailbox-newmoverequest-from-exchange-2007-sp3-transient-error-invalid-parent-folder?forum=exchangesvradmin
    Deleted that and re-running the migration to see if it fixed it.  
    RunspaceId : 08044fd1-eb9e-4338-b994-fed7d49bbec9
    MailboxIdentity : domain.com/vertical/Sugarloaf/first last
    DistinguishedName : CN=first last,OU=Sugarloaf,OU=vertical,DC=domain,DC=com
    DisplayName : first last
    Alias : away
    ExchangeGuid : da92ca09-6fbc-45c1-8417-4868253a4a2b
    ArchiveGuid :
    Status : InProgress
    StatusDetail : TransientFailure
    SyncStage : CreatingFolderHierarchy
    Flags : IntraOrg, Pull, MoveOnlyPrimaryMailbox
    RequestStyle : IntraOrg
    Direction : Pull
    IsOffline : False
    Protect : False
    DoNotPreserveMailboxSignature : True
    Priority : Normal
    WorkloadType : Local
    Suspend : False
    SuspendWhenReadyToComplete : False
    IgnoreRuleLimitErrors : False
    RecipientTypeDetails : UserMailbox
    SourceVersion : Version 14.3 (Build 224.0)
    SourceDatabase : 2GB Limit
    SourceServer : domain-mbx02.domain.com
    TargetVersion : Version 15.0 (Build 1076.0)
    TargetDatabase : Brandvertical
    TargetServer : domain-exch02.domain.com
    SourceArchiveDatabase :
    SourceArchiveVersion :
    SourceArchiveServer :
    TargetArchiveDatabase :
    TargetArchiveVersion :
    TargetArchiveServer :
    RemoteHostName :
    RemoteGlobalCatalog :
    BatchName : MigrationService:away2
    StartAfter :
    CompleteAfter :
    RemoteCredentialUsername :
    RemoteDatabaseName :
    RemoteDatabaseGuid :
    RemoteArchiveDatabaseName :
    RemoteArchiveDatabaseGuid :
    TargetDeliveryDomain :
    ArchiveDomain :
    BadItemLimit : 38
    BadItemsEncountered : 0
    LargeItemLimit : 0
    LargeItemsEncountered : 0
    AllowLargeItems : True
    QueuedTimestamp : 4/3/2015 3:21:09 PM
    StartTimestamp : 4/3/2015 3:21:50 PM
    LastUpdateTimestamp : 4/3/2015 3:32:49 PM
    InitialSeedingCompletedTimestamp :
    FinalSyncTimestamp :
    CompletionTimestamp :
    SuspendedTimestamp :
    OverallDuration : 00:11:58.9006936
    TotalFinalizationDuration : 00:00:00
    TotalDataReplicationWaitDuration : 00:00:00
    TotalSuspendedDuration : 00:00:00
    TotalFailedDuration : 00:00:00
    TotalQueuedDuration : 00:00:01.7030234
    TotalInProgressDuration : 00:11:57.1976702
    TotalStalledDueToCIDuration : 00:00:00
    TotalStalledDueToHADuration : 00:00:00
    TotalStalledDueToMailboxLockedDuration : 00:00:00
    TotalStalledDueToReadThrottle : 00:00:00
    TotalStalledDueToWriteThrottle : 00:00:00
    TotalStalledDueToReadCpu : 00:00:00
    TotalStalledDueToWriteCpu : 00:00:00
    TotalStalledDueToReadUnknown : 00:00:00
    TotalStalledDueToWriteUnknown : 00:00:00
    TotalTransientFailureDuration : 00:09:55.2540301
    TotalProxyBackoffDuration : 00:00:00
    TotalIdleDuration : 00:00:00
    MRSServerName : domain-exch02.domain.com
    TotalMailboxSize : 509.1 MB (533,870,270 bytes)
    TotalMailboxItemCount : 6941
    TotalArchiveSize :
    TotalArchiveItemCount :
    BytesTransferred : 6.626 MB (6,948,288 bytes)
    BytesTransferredPerMinute : 0 B (0 bytes)
    ItemsTransferred : 0
    PercentComplete : 10
    CompletedRequestAgeLimit : 7.00:00:00
    PositionInQueue :
    InternalFlags : SkipFolderPromotedProperties, SkipKnownCorruptions
    FailureCode :
    FailureType :
    FailureSide :
    Message :
    FailureTimestamp :
    IsValid : True
    ValidationMessage :
    RequestGuid : d91f6b26-7178-4d38-946e-6778ae6215cf
    RequestQueue : Brandvertical
    Identity : domain.com/vertical/Sugarloaf/first last
    DiagnosticInfo :
    Report : 4/3/2015 3:21:09 PM [domain-exch02] '' created move request.
    4/3/2015 3:21:15 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:21:15 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:21:15 PM [domain-exch02] Sync state for request
    d91f6b26-7178-4d38-946e-6778ae6215cf is null.
    4/3/2015 3:21:15 PM [domain-exch02] Restarting the move because checkpoint data
    doesn't exist or is invalid in 'da92ca09-6fbc-45c1-8417-4868253a4a2b
    (Primary)'.
    4/3/2015 3:21:15 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:21:15 PM [domain-exch02] Request processing started.
    4/3/2015 3:21:15 PM [domain-exch02] Source mailbox information:
    Regular Items: 3393, 228.6 MB (239,724,362 bytes)
    Regular Deleted Items: 3420, 280.5 MB (294,145,908 bytes)
    FAI Items: 128, 0 B (0 bytes)
    FAI Deleted Items: 0, 0 B (0 bytes)
    4/3/2015 3:21:15 PM [domain-exch02] Cleared sync state for request
    da92ca09-6fbc-45c1-8417-4868253a4a2b due to 'CleanupOrphanedMailbox'.
    4/3/2015 3:21:15 PM [domain-exch02] An old copy of the mailbox was removed from
    the destination database. The operation will try again in 30 seconds.
    4/3/2015 3:21:50 PM [domain-exch02] Mailbox signature will not be preserved for
    mailbox 'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)'. Outlook clients
    will need to restart to access the moved mailbox.
    4/3/2015 3:21:50 PM [domain-exch02] Stage: CreatingFolderHierarchy. Percent
    complete: 10.
    4/3/2015 3:21:50 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:21:50 PM [domain-exch02] Folder creation progress: 0 folders created
    in mailbox 'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)'.
    4/3/2015 3:21:57 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (1/60).
    4/3/2015 3:22:30 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:22:30 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:22:30 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:22:30 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:22:30 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:22:34 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (2/60).
    4/3/2015 3:23:05 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:23:05 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:23:05 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:23:05 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:23:05 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:23:10 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (3/60).
    4/3/2015 3:23:40 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:23:40 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:23:40 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:23:41 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:23:41 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:23:45 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (4/60).
    4/3/2015 3:24:21 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:24:21 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:24:21 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:24:21 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:24:21 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:24:25 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (5/60).
    4/3/2015 3:24:56 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:24:56 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:24:56 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:24:56 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:24:56 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:25:00 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (6/60).
    4/3/2015 3:25:31 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:25:31 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:25:31 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:25:31 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:25:31 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:25:35 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (7/60).
    4/3/2015 3:26:06 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:26:06 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:26:06 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:26:06 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:26:06 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:26:10 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (8/60).
    4/3/2015 3:26:42 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:26:42 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:26:42 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:26:42 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:26:42 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:26:46 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (9/60).
    4/3/2015 3:27:17 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:27:17 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:27:17 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:27:17 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:27:17 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:27:17 PM [domain-exch02] Folder creation progress: 0 folders created
    in mailbox 'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)'.
    4/3/2015 3:27:21 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (1/60).
    4/3/2015 3:27:52 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:27:52 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:27:52 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:27:52 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:27:52 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:27:56 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (2/60).
    4/3/2015 3:28:27 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:28:27 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:28:27 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:28:27 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:28:27 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:28:32 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (3/60).
    4/3/2015 3:29:03 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:29:03 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:29:03 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:29:03 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:29:04 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:29:08 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (4/60).
    4/3/2015 3:29:38 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:29:38 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:29:38 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:29:39 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:29:39 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:29:43 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (5/60).
    4/3/2015 3:30:14 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:30:14 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:30:14 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:30:14 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:30:14 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:30:18 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (6/60).
    4/3/2015 3:30:54 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:30:54 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:30:54 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:30:54 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:30:54 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:30:58 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (7/60).
    4/3/2015 3:31:29 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:31:29 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:31:29 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:31:29 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:31:29 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:31:34 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (8/60).
    4/3/2015 3:32:09 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:32:09 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:32:09 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:32:09 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:32:09 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:32:14 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (9/60).
    4/3/2015 3:32:44 PM [domain-exch02] The Microsoft Exchange Mailbox Replication
    service 'domain-exch02.domain.com' (15.0.1076.6 caps:1FFF) is examining the request.
    4/3/2015 3:32:44 PM [domain-exch02] Connected to target mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database 'Brandvertical',
    Mailbox server 'domain-exch02.domain.com' Version 15.0 (Build 1076.0).
    4/3/2015 3:32:44 PM [domain-exch02] Connected to source mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)', database '2GB Limit',
    Mailbox server 'domain-mbx02.domain.com' Version 14.3 (Build 224.0).
    4/3/2015 3:32:44 PM [domain-exch02] Request processing continued, stage
    CreatingFolderHierarchy.
    4/3/2015 3:32:44 PM [domain-exch02] Initializing folder hierarchy from mailbox
    'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)': 177 folders total.
    4/3/2015 3:32:44 PM [domain-exch02] Folder creation progress: 0 folders created
    in mailbox 'da92ca09-6fbc-45c1-8417-4868253a4a2b (Primary)'.
    4/3/2015 3:32:49 PM [domain-exch02] Transient error InvalidParentFolderException
    has occurred. The system will retry (1/60).
    ObjectState : New

  • MBAM 2.5 Reports Fail with "Invalid object name 'v_GS_MBAM_POLICY'."

    Utilizing the SSRS Reports for MBAM 2.5 Integrated into Configuration Manager 2012 R2 Cu3, when I run the reports it states that the view
    'v_GS_MBAM_POLICY'  does not exist.
    The complexing thing though is that there are computers that are reporting the HINV Class called 'Win32Reg_MBAMPolicy'  So I would think this view would have been created.
    Does anyone know the process by which the view gets generated since my HINV is reporting back the information, yet the view has not been created in the DB yet... It makes no sense.
    The error is:
    Microsoft.Reporting.WinForms.ReportServerException
    An error has occurred during report processing. (rsProcessingAborted)
    Stack Trace:
       at Microsoft.Reporting.WinForms.ServerReport.ServerUrlRequest(Boolean isAbortable, String url, Stream outputStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.ServerReport.InternalRender(Boolean isAbortable, String format, String deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.AsyncMainStreamRenderingOperation.RenderServerReport(ServerReport report)
       at Microsoft.Reporting.WinForms.AsyncRenderingOperation.PerformOperation()
       at Microsoft.Reporting.WinForms.ReportViewer.AsyncReportOperationWrapper.PerformOperation()
       at Microsoft.Reporting.WinForms.ProcessingThread.ProcessThreadMain(Object arg)
    Microsoft.Reporting.WinForms.ReportServerException
    Query execution failed for dataset 'ComplianceDetails'. (rsErrorExecutingCommand)
    Stack Trace:
       at Microsoft.Reporting.WinForms.ServerReport.ServerUrlRequest(Boolean isAbortable, String url, Stream outputStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.ServerReport.InternalRender(Boolean isAbortable, String format, String deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.AsyncMainStreamRenderingOperation.RenderServerReport(ServerReport report)
       at Microsoft.Reporting.WinForms.AsyncRenderingOperation.PerformOperation()
       at Microsoft.Reporting.WinForms.ReportViewer.AsyncReportOperationWrapper.PerformOperation()
       at Microsoft.Reporting.WinForms.ProcessingThread.ProcessThreadMain(Object arg)
    Microsoft.Reporting.WinForms.ReportServerException
    Invalid object name 'v_GS_MBAM_POLICY'.
    Stack Trace:
       at Microsoft.Reporting.WinForms.ServerReport.ServerUrlRequest(Boolean isAbortable, String url, Stream outputStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.ServerReport.InternalRender(Boolean isAbortable, String format, String deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.AsyncMainStreamRenderingOperation.RenderServerReport(ServerReport report)
       at Microsoft.Reporting.WinForms.AsyncRenderingOperation.PerformOperation()
       at Microsoft.Reporting.WinForms.ReportViewer.AsyncReportOperationWrapper.PerformOperation()
       at Microsoft.Reporting.WinForms.ProcessingThread.ProcessThreadMain(Object arg)
    David Baur

    We ran into this error as well. Turns out that MBAM-provided reports to SCCM 2012 fail with an error unless the Win32Reg_MBAMPolicy class is added to SCCM, which also updates the SCCM SQL with required Views, including "v_GS_MBAM_POLICY".
    The solution that we finally came up with was to import an updated MOF file to include the BitLocker Policy (Win32Reg_MBAMPolicy) class into the "Hardware Inventory" section of the Default Client Policy. Once the import is complete SQL also gets
    the appropriate view created.
    The instructions on how to create and import the MOF file can be found in the link below.
    http://technet.microsoft.com/en-US/library/dn237295.aspx
    Chris Keene
    Product Specialist at Wave.

  • Updating table with invalid identifiers

    Hi!
    I use a third-party plug in and that comparisons of chemical structures. I would like to update one table with values from another when the plug-in matches two rows. However, I am getting an invalid identifier problem.
    Two tables:
    PLATES: has VARCHAR2 columns of PLATE_SMILES, IN_DB
    INVEST: has VARCHAR2 columns of SMILES
    The operator is a binary one: jc_compare(PLATE_SMILES, SMILES)=1 (or 0 if they don't match)
    I want my query to say: "If comparison of PLATE_SMILES, SMILES = 1, set IN_DB=1 for that row" - effectively asking if PLATE_SMILES exists in the INVEST table.
    I've tried a number of renditions, all giving invalid identifiers. Here's an example:
    update (select plate.PLATE_SMILES, plate.IN_DB, invest.SMILES
    from PLATES plate
    INVEST invest
    WHERE jc_compare(PLATE_SMILES, SMILES)=1)
    set plate.IN_DB = 1;
    ORA-00904: "PLATE"."IN_DB": invalid identifier
    I'm hoping this should be an easy fix, and any help is greatly appreciated!

    Hi,
    You have
    UPDATE (SELECT plate.plate_smiles,
                   plate.in_db,
                   invest.smiles
            FROM   plates plate, invest invest
            WHERE  jc_compare ( plate_smiles, smiles) = 1)
    SET    plate.in_db = 1;   -- Error herePLATE is not known outside the inline view. Just remove it.
    Regards
    Peter

  • OracleXMLQuery fails with invalid UTF-8 character

    All -
    While using OracleXMLQuery API to pull the data back as a DOM. The internal parser has a fatal error with invalid UTF-8 data stored in the XML data.
    Is it possible to use the setXSLT() method to transform the data before the DOM is attempted to be built. Or some other method within the OracleXMLQuery API to alter the invalid XML data before an attempt is made to parse it?
    Note: The database will have non-UTF-8 data; Presently beyond our control.

    Hi,
    Are the files from the Java-CD fully readable and fully copied, for instance the java-dumpfile ?
    Ensure JVM settings of note # 716604 area applied. Also, is connect possible to database by 'configtool' or does it throw an error ?
    Br,
    Javier

  • IAppHostElement::GetElementByName allways fails with invalid index

    Hello!
    In a c++ application I want to configure the IIS by using the Interfaces declared in ahadmin.h.
    When I call the function GetElementByName of the Interface IAppHostElemnt it allways Fails with ERROR_INVALID_INDEX (0x80070585). Here a short example without error handling:
    BSTR bstrSites = SysAllocString( L"system.applicationHost/sites" );
    BSTR bstrConfigCommitPath = SysAllocString( L"MACHINE/WEBROOT/APPHOST" );
    BSTR bstrDefSite = SysAllocString (L"Default Web Site");
    IAppHostWritableAdminManager *pMgr = NULL; 
    HRESULT hr = CoCreateInstance( __uuidof(AppHostWritableAdminManager), NULL,
      CLSCTX_INPROC_SERVER, __uuidof(IAppHostWritableAdminManager), (void**) &pMgr);
    IAppHostElement *pElem;
    hr = pMgr->GetAdminSection(bstrSites, bstrConfigCommitPath, &pElem);
    IAppHostElement *pDefSite;
    hr = pElem->GetElementByName (bstrDefSite, &pDefSite);
    -> hr == 0x80070858 !!!
    When I get the collection with pElem->get_Collection (), I can query it for "Default Web Site". And it is the same with apps under a web site.
    What's the problem with GetElementByName ()?
    Thanks Frank

    GetElementByName probably searches within the collection of child elements, which can be obtained by
    get_ChildElements, not by
    get_Collection.

  • Report fails with " Invalid argument for database." error.

    Hi All,
    Several of my reports deployed on Crystal Reports Server 2008 server fails everyday with the following error.
    Error in File ~tmp121c5dc747685036.rpt: Invalid argument for database.
    The error is not consistent, if report A fails today, it is Report B the next day. When I reschedule the reports, they run just fine. They fail only when the daily schedules run at 2:00 AM in the morning. 100 + reports are run at this time and some of the reports that fail run many times with different parameters. Is this error due to scheduling reports many times or is it something else? Appreciate any help with this.
    Thanks
    Bin

    Hi,
    can you please check under <BOBJ installation directory>\BusinessObjects Enterprise 12.0\logging in the log files created by the crystal reports job server for additionaly error messages?
    Regards,
    Stratos
    PS: Do you run CRS 2008 V0 or V1?

Maybe you are looking for