Access Migration Failure: Error 3021 Method 'Run' of object

I am doing a proof-of-concept to migrate and convert some Access applications.
I downloaded the migration tool and then tried the Northwind mdb to verify it worked and all went as planned with a SQL output file.
When I run it against a working copy of the production mdb it gives this error and produces no output.
Error #3021 – XMLExporter – Method ‘Run’ of object ‘_Application failed *access.mdb” Database Schema Export did not complete successfully.
I conjecture it is trying to 'Run' the object and not finding it. How can I work around this or fix the error. I am not an Access expert so any ideas are appreciated.
slavanaway
Message was edited by:
slavanaway

Hi Ian,
Thanks for the detailed posting, it's very helpful.
If you are receiving error #2501, it would appear that there's an issue in opening a report in your MS Access database.
When you open the MS Access database to be exported, can you successfully view your report(s) or do you receive the #2501 error even then? If you receive this error when accessing the reports, I believe it's relating to the printer setup on the machine. The default printer on the machine you are using may be "imcompatible" with the format of your MS Access report. Try to select another printer on your network as the default, or even try re-installing the default printer. If this does not resolve your issue, please let me know.
I hope this helps.
Regards,
Hilary

Similar Messages

  • Error #3343 - XMLExporter Method 'Run' of object '_Application' failed ...

    Hi all,
    I am new to the Migration Workbench tool - so excuse me if I ask some silly questions.
    I have a MSAccess 2002 application with some tables and forms (plus macros) - When run the omwb2002.mde program (version 10.1.0.4.0) - select my mdb file, set the directories and press the "Export Database Schema" button I get an "Error #3343 - XMLExporter Method 'Run' of object '_Application' failed ..." error !
    No Files are created !
    Any help would be greatly appreciated

    Hi,
    You may be receiving the MS Access Error #3343 - Unrecognized database format for one of the following reasons:
    1. You are attempting to open an MS Access database in an older version of MS Access e.g opening a 2002 MDB file on a machine where MS Access 97 is installed.
    Ensure that the Exporter Tool version and the MS Access MDB file version all match the version of MS Access installed on your machine e.g. If attempting to export a 2002 MDB file, you should use the omwb2002.mde and have MS Access 2002 installed on the machine.
    2. You have a linked table to an Excel spreadsheet.
    The Exporter tool supports the extraction of linked tables where the link is to another MS Access database. Links to Excel spreadsheets should be removed prior to export. Make a copy of your MDB file, and remove any such links from the new copy. Then carry out the export.
    3. Your database is corrupt & needs to be repaired.
    From the MS Access menu bar, go to Tools | Database Utilities | Compact and Repair Database... to repair the MDB file.
    I hope this helps. If none of the above steps resolve your issue, please let me know.
    Regards,
    Hilary

  • Run-time error '1004' -- Method 'Container' of object '_Workbook' failed

    Dear All,
    One of our users is getting the following Microsoft Visual Basic error while running the report S_ALR_87013614.
    Run-time error '1004'
    Method 'Container' of object '_Workbook' failed.
    I have searched the forum posts for help. But I only found some details related to Run-time error 1004 related to some excel file security but not related to "Method 'Container' of object '_Workbook' failed".
    Could anyone please tell me how this error can be eliminated for the user?
    Regards,
    Lakshmi.

    Dear Arpan,
    We too observed a few PIDs along with the one that you have mentioned but they make no difference. Some users who has the PID G_RW_DOCUMENT_TYPE set with some value are getting the report.
    Upon further searching we are assuming that it could be an issue with the Microsoft applications or macro settings of the user. But not sure about it.
    Regards,
    Lakshmi Venigala.

  • How do I create a GL responsibility to access multiple ledgers (error trying to run Financial report submission)

    I created a new GL responsibility and used the same menu as an existing one but created a new data access set that has all the ledgers in it that we want to access.
    I left the following profile options with no value.  The reason being is this responsibility should not be tied to any org/ledger.
    MO: Operating Unit
    GL Ledger ID
    GL Ledger Name
    This all seems to be working fine except when the users try to access Financial Report Submission.  The error that appears when trying to choose a ledger when running the report.
    Error: Stale Data
    The requested page contains stale data. This error could have been caused through the use of the browser's navigation buttons (the browser Back button, for example).
    I have cleared the browser cache and cache was cleared by functional administrator.  In this case it really doesn't seem to be anything to do with the browser's back button being used (I didn't use it) since I can make this error go away by setting the value for GL Ledger Name.  But that is not what the users want since that will restrict them to a specific ledger but they should be able to run the report for any ledger.
    Any help would be much appreciated.
    Thanks

    Please see (RM: Financial Report Submission: Errors With Stale Data, View Object FSGSubmissionAM.FSGSubmissionPVO1 Contained No Record [ID 1099837.1]).
    Thanks,
    Hussein     

  • Runtime Error '1004':, Method 'Intersect' of object '_Global' failed

    Hello
    I am getting a runtime error 1004, can someone tell me why?  I am getting the runtime error on the first Application.Intercept statement.
    Thank you for your help!
    smsemail
    Private Sub Worksheet_Change(ByVal Target As Range)
    Application.ScreenUpdating = False
    Application.DisplayAlerts = False
    If Not Application.Intersect(Target, Me.Range("A:A")) Is Nothing Then
    lastRow = ActiveSheet.Range("A" & Rows.Count).End(xlUp).Row
    If lastRow < 17 Then
    Exit Sub
    End If
    If lastRow > 67 Then
    lastRow = 67
    End If
    Else
    Exit Sub
    End If
    If Not Application.Intersect(Target, Me.Range("A17:A" & lastRow)) Is Nothing Then
    Application.EnableEvents = False
    If Application.WorksheetFunction.CountA(Worksheets("RIPS").Range("A17:A67")) = 0 Then
    Exit Sub
    End If
    If Application.WorksheetFunction.CountA(Worksheets("RIPS").Range("B17:B67")) = 0 And _
    Application.WorksheetFunction.CountA(Worksheets("RIPS").Range("C17:C67")) = 0 And _
    Application.WorksheetFunction.CountA(Worksheets("RIPS").Range("D17:D67")) = 0 Then
    Exit Sub
    End If
    If CmdExecute = True Then
    Exit Sub
    End If
    If CmdClear = True Then
    Exit Sub
    End If
    Worksheets("RIPSSummary").Activate
    lastRow = ActiveSheet.Range("A" & Rows.Count).End(xlUp).Row
    Set SourceRange = Application.Intersect(Range("A2:A" & lastRow), ActiveSheet.UsedRange)
    MsgBox "Source Range: " & SourceRange
    Worksheets("RIPS").Activate
    lastRow = ActiveSheet.Range("A" & Rows.Count).End(xlUp).Row
    Set TargetRange = Application.Intersect(Range("A17:A" & lastRow), ActiveSheet.UsedRange)
    MsgBox "Target Range: " & TargetRange
    Exit Sub
    wsDeleted = False
    For Each acell In SourceRange.Cells
    RecordFound = True
    If Not IsEmpty(acell.Value) Then
    Set C = TargetRange.Find(acell.Value, LookIn:=x1values)
    If C Is Nothing Then
    RecordFound = False
    End If
    If RecordFound = False Then
    wsDeleted = True
    For Each Worksheet In Worksheets
    If Worksheet.Name = acell.Value Then
    Worksheet.Delete
    End If
    Next Worksheet
    End If
    End If
    Next acell
    If vbKeyDelete Or _
    vbKeyClear Then
    r = lastRow
    Do Until r < 17
    If Worksheets("RIPS").Range("A" & r).Value = "" Then
    Rows(r).Delete
    End If
    r = r - 1
    Loop
    End If
    Application.EnableEvents = True
    End If
    Application.ScreenUpdating = True
    Application.DisplayAlerts = True
    End Sub

    It should work but maybe there's something about your workbook we can't see.
    In passing generally best not to disable screenupdating, alerts or events unless need to do so. More importantly though you should ensure they always get reset. As written you have several Exit Sub's before any code that resets them. Also in case of an error
    consider resetting them in an error handler.

  • Trying to use MS Access Migration

    First, what I have done successfully:
    1. Created a repository on target oracle database.
    2. Created a connection to MS Access database.
    3. Open MS Access connection and browsed through the tables and data.
    4. Ran the document tool on the MS Access database (it only has two tables and two queries) with no problems.
    5. Examined the references to the database: None were missing
    Windows XP SP2 with latest patches
    Access Version: 2002
    SQL Developer Version: 1.1.2.25.79 (I chose the version with the JDK) with downloaded updates of the early adopter migration workbench.
    Exporter Version: 10.2.0.2.0
    MDac Version: 2.8
    This part was the same for two different machines.
    On one machine, I'm running Oracle Database XE and the other 10g Standard Edition One.
    I then closed all the connections and tried the following from SQL Developer:
    Click on Migration -> Microsoft Access Exporter -> Run Microsoft Access 2002 Exporter
    The MS Access database opens and I choose "Export For Oracle Migration Workbench".
    I choose my database and output directory. I click to export the data as well and note that the status says "ready".
    I click export, note the message that says I've chosen to export the data and it might take awhile and click okay.
    Within a couple of seconds I receive the following error:
    Error #5 - XMLExporter - Invalid procedure call or argument <database path and database name.mdb> Database Schema Export did not complete successfully.
    Note that the error has my actual path and database name regardless of where I put it.
    I've made sure I have read and read design access (as the admin user) to all MSys tables of the access database.
    Thinking there might be a problem with this particular Access database, I tried another...and another...and another. :) You get the hint. I'm having the same problem on two different machines regardless of what database I try to export.
    I keep thinking (of course I don't know what it's trying to call since it doesn't tell me) that it might be some kind of java conflict, but I haven't found anything as of yet that would prove that.
    Thanks,
    Chad

    OK more Information..
    In fact it was a problem with ms office. I had office installed without access and installed access seperately in an older version and different office folder.
    Using a complete office 2002 environment made the Migration Workbench Export work.
    What is still not working is the export for Application Express.
    Its running on and on, then it opens many little VB Editor Windows and closes them again and finally:
    Error #2501 - XMLExporter - Method 'Run' for Object '_Application' failed
    ...mdb Database Schema Export did not complete successfully.

  • How do I view Migrate Data errors - Access 2003 - Oracle 10g

    I'm trying to use the SQL Developer to migrate data from an Access 2003 database to an Oracle 10g database. I followed the instructions found here:
    http://www.oracle.com/technology/tech/migration/workbench/files/omwb_getstarted.html
    I was able to complete every step except the actual data move. I exported the xml for the Access database, I captured the export and then ran the generation scripts on my target Oracle database (I'm using the same schema for the migration repository and the actual data). It created the tables with only one or two errors which I resolved.
    Now, when I select Migration->Migrate Data, I get the dialog that appears to start 4 or 5 threads and attempts to migrate each table. They all error and do not transfer any rows. I can see that there's one error per table, but I can't see the error text. I just know that an error occurred. Is there a log somewhere or is the error displayed somewhere else? How do I know what's gone wrong?
    Thanks.

    I too receive unexplained error counts using the Migrate Data menu selection and unexplained failures using the Generate Data Move Scripts menu selection. Permissions granted by role or direct grants should not be a problem, but a Migrate Data error appears in the Migration Log panel at the bottom of the SQL Developer window, "Failed to disable constraints: ORA-00942 ... ". No further details available on what constraints or why the error. No other errors were detected while following the instructions found in the Oracle SQL Developer Migration Workbench Getting Started guide. SQL Developer never migrates the data from the existing Access 2000 mdb file to the newly created schema objects in Oracle 10g using either method. The following roles and privileges have been granted to both the repository owner and the target schema owner:
    GRANT RESOURCE TO MIGRATE_USER WITH ADMIN OPTION;
    GRANT CONNECT TO MIGRATE_USER WITH ADMIN OPTION;
    ALTER USER MIGRATE_USER DEFAULT ROLE ALL;
    -- 25 System Privileges for MIGRATE_USER
    GRANT CREATE ROLE TO MIGRATE_USER;
    GRANT ALTER TABLESPACE TO MIGRATE_USER;
    GRANT ALTER ANY SEQUENCE TO MIGRATE_USER;
    GRANT INSERT ANY TABLE TO MIGRATE_USER;
    GRANT SELECT ANY TABLE TO MIGRATE_USER;
    GRANT CREATE ANY TABLE TO MIGRATE_USER;
    GRANT UNLIMITED TABLESPACE TO MIGRATE_USER WITH ADMIN OPTION;
    GRANT DROP TABLESPACE TO MIGRATE_USER;
    GRANT CREATE ANY TRIGGER TO MIGRATE_USER;
    GRANT ALTER ANY ROLE TO MIGRATE_USER;
    GRANT CREATE VIEW TO MIGRATE_USER WITH ADMIN OPTION;
    GRANT DROP USER TO MIGRATE_USER;
    GRANT CREATE TABLESPACE TO MIGRATE_USER;
    GRANT GRANT ANY ROLE TO MIGRATE_USER;
    GRANT CREATE ANY SEQUENCE TO MIGRATE_USER;
    GRANT ALTER ANY TABLE TO MIGRATE_USER;
    GRANT DROP ANY TRIGGER TO MIGRATE_USER;
    GRANT DROP ANY ROLE TO MIGRATE_USER;
    GRANT DROP ANY SEQUENCE TO MIGRATE_USER;
    GRANT UPDATE ANY TABLE TO MIGRATE_USER;
    GRANT ALTER ANY TRIGGER TO MIGRATE_USER;
    GRANT COMMENT ANY TABLE TO MIGRATE_USER;
    GRANT DROP ANY TABLE TO MIGRATE_USER;
    GRANT CREATE PUBLIC SYNONYM TO MIGRATE_USER WITH ADMIN OPTION;
    GRANT CREATE USER TO MIGRATE_USER WITH ADMIN OPTION;
    -- 1 Tablespace Quota for MIGRATE_USER
    ALTER USER MIGRATE_USER QUOTA UNLIMITED ON USERS;
    Operating system for both Access 2000 and Oracle 10g is Windows XP PRO SP2.
    Oracle SQL Developer is version 1.1.2.25 build MAIN-25.79 on Windows XP PRO SP2. All three are on the same PC.
    Since only the last step failed, I created a User DSN with the ODBC administrator. Then, linked the newly created Oracle table to Access via ODBC using the DSN created. Next, I created an append query with the source being the Access table and the target being the Oracle table. I moved the data by pressing the red exclamation mark.

  • MS Access attach table error after migration

    I ran the MS Access Migration Wizard 1.5.4 to convert an Access
    97 Database to Oracle 7.3.3 (soon to be 7.3.4).
    Everthing seemed to go ok, the mdb file shows the local and
    remote attached tables, the queries are present etc. Also the
    ODBC link is fine within the mdb file, in that I can browse the
    data on the Oracle database.
    However when I start the MS Access application which is in an
    mde file, I get the following error :
    modRefresh AttachTables Error: The Microsoft Jet database engine
    cannot find the input table or query 'tablename'. Make sure it
    exists
    and that its name is spelled correctly. (3078)
    The application continues to work fine if I put the original mdb
    file back.
    Is anybody able to help identify what the problem is or how to
    turn on some debugging that might help. Any help appreciated as
    I don't have a lot of experience with Access.
    Thanks,
    Mike.
    null

    Mike,
    The Migration Wizard only supports one level of linked
    tables.
    Regards,
    Marie
    Robert R. Wagner (guest) wrote:
    : Mike:
    : I'm pretty new to the business of migrating data from Access 97
    : to Oracle, but I'm pretty sure that we need to give up using
    : linked tables when we do this. This was a (wonderful) benefit
    of
    : the Jet Engine.
    : I'm now looking at using ADO and OLE-DB with the (eventually to
    : be) migrated data. It's a whole new learning curve to climb!
    : Cheers >>>>>> Robert
    : Mike Connell (guest) wrote:
    : : I have now realised the error is because Access doesn't seem
    : to
    : : support linking to already linked tables.
    : : That is the mde file is running via linked tables to the mdb
    : : file. If the tables in the mdb are renamed and replaced by
    : : queries to new tables linked to an Oracle database, the mde
    : : fails to find the tables it expects to use.
    : : If anybody knows a workaround for running Access to allow
    more
    : : than one level of table linking, then please let me know.
    : : Thanks,
    : : Mike Connell
    Oracle Technology Network
    http://technet.oracle.com
    null

  • Error # 3021 - Invalid Relation. --- MS Access to Oracle APEX

    Hello everybody.
    I have 3 years working with Oracle APEX and now I have the need to migrate an Access database to Oracle and APEX.
    I have:
    - MS Access 2003 database
    - Oracle SQL Developer 3.0.04.34
    - Oracle 10g Database
    I will try to provide all the relevant information.
    I used the Access Exporter for Access 2003 tool from Oracle SQL Developer to creat both .xml (for SQL Dev) file and .sql file (for APEX) but the process show me an error mesassge that said: "Error # 3021 - Invalid Relation. No current record".
    I read in OTN forum that it was because the migration tool can not access the system tables and that I need to modify permisions to allow "Read Data". I did this process and I was able to create .xml file, however if I chose Application Express to create .sql file or the option to create both files the same error shows.
    I have been reading in this forum but didn't find a way to solve it.
    Does any body knows how to solve this issue?
    Any help is appreciated.
    Thanks in advance for your help.

    Hello,
    I can't reproduce your issue.
    Have you double-checked that the tables MSysAccessObjects, MSysACEs, MSysObjects, MSysQueries and MSysRelationships are visible and that the Admin user has at least Read Design and Read Data permission on those tables?
    If that is the case, and the problem still happens, and you are able to give a copy of your .mdb file to Oracle, then I suggest to open a Service Request with Oracle Support so that the issue can be investigated.
    Regards
    Wolfgang

  • RMMR1MRS-When run in background cause update failure errors looking

    hi,
          RMMR1MRS report when run in background cause update failure errors .
    There are few  below reason for the error log.
    1.  for the PO invoice already generated -  (its right if already invoice generated. should not happen again)
    2.  In  MIGO,  entire  quantity has been reversed  and also invoice generated with zero value - ( its right , should not happen invoice again )
    3. Particular PO line item deleted -  (its right if the PO line item deleted. ERS settlement not require)
    For the all above reason, the update error occurs.  But the mean time  the program  "RMMR1MRS"  should not through the update error log. 
    Note: The job was not terminated due to this update error and also no harm because of the error log
    can you please help on this update failure why it occurs.

    Have you found a solution already? If so, please, share it with the community and close this thread.

  • Access Migration Error Creating Migration Project - string literal too long

    I get this error when attempting to create an MS Access Migration Project:
    ORA-20001: GET_BLOCK Error. ORA-20001: GET_STMT error. ORA-20001: Execution of the statement was unsuccessful. ORA-06550: line 8, column 8: PLS-00172: string literal too long &amp;lt;pre&amp;gt;begin &amp;amp;lt;br&amp;amp;gt;declare &amp;amp;lt;br&amp;amp;gt; p varchar(32767) := null; &amp;amp;lt;br&amp;amp;gt; l_clob clob; &amp;amp;lt;br&amp;amp;gt;begin &amp;amp;lt;br&amp;amp;gt; dbms_lob.createtemporary(l_clob,FALSE, dbms_lob.session); &amp;amp;lt;br&amp;amp;gt; dbms_lob.open(l_clob,dbms_lob.lob_
    I suspected the 'string literal too long' was due to a very long code section in the Exporter .sql file -
    So I edited out that code except - essentially by cutting the macro code within the quotes, cutting down that code module.
    Same error.
    Any suggestions on what else may be causing this?
    Thanks - Karen

    I found it - two other big long ugly macros that I had to cut out as well. Then the migration project created just fine. Thanks for the moral support :)

  • Error Message--ITunes runs in 64-bit mode. Uncheck the Open in 32-bit mode in Get info for ITunes. However it is UNCHECKED. I cannot access itunes at all.What now?

    Error Message--ITunes runs in 64-bit mode. Uncheck the Open in 32-bit mode in Get info for ITunes. However it is UNCHECKED. I cannot access itunes at all. What now?

    Fallout75, good catch on the eXo plugin.  To remove it, in the Finder click "Go" on the menu bar and pull down to "Go to Folder" and then type ~/Library/iTunes/iTunes Plug-ins
    When that Finder window opens, you should see an "eXo" subdirectory.  Just delete that "eXo" folder and iTunes should start without the error.

  • MDT 2012 - Failed to Run Action: Install Operating System Access is Denied (Error: 0000005; Source: Windows)

    Unable to deploy any image with WIM file. Vanilla or Custom Image gives the following error:
    ZTI Error – Unhandled error returned by LTIApply: invalid procedure call or argument (5)
    Litetouch deployment failed, Return code = -2147467259 0x80004005
    Failed to run action: Install Operating System.
    Access is denied (Error: 00000005; Source: Windows)
    Tried Giving Everyone Full rights to the deployment share
    Rebooted Server
    Updated Deployment Share
    Any ideas would be great!
    Thanks
    Rick
    Richard Ray

    https://skydrive.live.com/redir?resid=57E5397C8C507949!129&authkey=!AJDCfz7nGblrdQE&ithint=folder%2c.log
    Please try this link.
    Kris Da San Martino
    The SMSTS.log shows
    Expand a string: WinPEandFullOS TSManager 2/18/2014 1:35:48 PM 1508 (0x05E4)
    Executing command line: cscript.exe "%SCRIPTROOT%\LTIApply.wsf" TSManager 2/18/2014 1:35:48 PM 1508 (0x05E4)
    Process completed with exit code 5 TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)
    !--------------------------------------------------------------------------------------------! TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)
    Failed to run the action: Install Operating System.
    Access is denied. (Error: 00000005; Source: Windows) TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)
    Sending status message . . . TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)
    Executing in non SMS standalone mode. Ignoring send a task execution status message request TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)
    Set a global environment variable _SMSTSLastActionRetCode=5 TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)
    Set a global environment variable _SMSTSLastActionSucceeded=false TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)
    Clear local default environment TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)
    Let the parent group (Install) decides whether to continue execution TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)
    The execution of the group (Install) has failed and the execution has been aborted. An action failed.
    Operation aborted (Error: 80004004; Source: Windows) TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)
    Failed to run the last action: Install Operating System. Execution of task sequence failed.
    Access is denied. (Error: 00000005; Source: Windows) TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)
    Sending status message . . . TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)
    Executing in non SMS standalone mode. Ignoring send a task execution status message request TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)
    Execution::enExecutionFail != m_eExecutionResult, HRESULT=80004005 (e:\nts_sms_fre\sms\client\tasksequence\tsmanager\tsmanager.cpp,767) TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)
    Task Sequence Engine failed! Code: enExecutionFail TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)
    **************************************************************************** TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)
    Task sequence execution failed with error code 80004005 TSManager 2/18/2014 1:51:00 PM 1508 (0x05E4)

  • I get an error message when running a back-up from my Macbook Pro: The backup disk image Macbook.sparsebundle could not be accessed (error-1) and the backup did not complete? What is the issue?

    I get an error message when running a back-up from my Macbook Pro: The backup disk image Macbook.sparsebundle could not be accessed (error-1) and the backup did not complete? What is the issue?

    Try Here  >  http://pondini.org/TM/C12.html
    More Info here  >  http://pondini.org/TM/Time_Capsule.html

  • Internal error at method Method 521 after CC static checker is run.

    After running the static checker on my solution, does all the usual hoo hah, and then throws internal error at method Method 521 at me.
    any idea what causes this? It seems intermittent at times. But occurs quite often nonetheless.
    here's the output from VS2013:
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Validated:  96.1%
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Checked 1592 assertions: 1511 correct 63 unknown (19 masked)
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Contract density: 2.46
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Total methods analyzed 251
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Methods analyzed with a faster abstract domain 0
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Method analyses read from the cache 250
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Methods with 0 warnings 206
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Time spent in internal, potentially costly, operations
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Overall time spent performing action #KarrPutIntoRowEchelonForm: 00:00:00.2040141 (invoked 17139 times)
    Overall time spent performing action #KarrIsBottom: 00:00:00.0670060 (invoked 11034 times)
    Overall time spent performing action #ArraysAssignInParallel: 00:00:00.1240101 (invoked 22 times)
    Overall time spent performing action #ArraysJoin: 00:00:00.0870076 (invoked 11 times)
    Overall time spent performing action #Simplex: 00:00:00.6190450 (invoked 930 times)
    Overall time spent performing action #SubPolyJoin: 00:00:00.5090412 (invoked 25 times)
    Overall time spent performing action #WP: 00:00:01.2251006 (invoked 7 times)
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Total time 13.458sec. 53ms/method
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Retained 0 preconditions after filtering
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Inferred 0 object invariants
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Retained 0 object invariants after filtering
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Detected 0 code fixes
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Proof obligations with a code fix: 0
    CodeContracts: RenameMeOrIWillForeverHauntYourDreamsRenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Internal error at method Method 521 :  System.Diagnostics.Contracts.ContractDeclarativeAssemblyAttribute.#ctor()
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Failed with uncaught exception: Input string was not in a correct format.
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: Stack trace:    at System.Text.StringBuilder.AppendFormat(IFormatProvider provider, String format, Object[] args)
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: \n   at System.String.Format(IFormatProvider provider\, String format\, Object[] args)
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: \n   at Microsoft.Research.CodeAnalysis.RemoteWriterOutput`2.RemoteEmitOutcome(Boolean additional\, ProofOutcome outcome\, APC pc\, String format\, Object[] args)
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: \n   at Microsoft.Research.CodeAnalysis.RemoteWriterOutput`2.EmitOutcomeAndRelated(Witness witness\, String format\, Object[] args)
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: \n   at Microsoft.Research.CodeAnalysis.QuantitativeOutput`2.Flush()
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: \n   at Microsoft.Research.CodeAnalysis.QuantitativeOutput`2.Close()
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: \n   at Microsoft.Research.CodeAnalysis.Clousot.TypeBinder`9.InternalAnalyze()
    CodeContracts: RenameMeOrIWillForeverHauntYourDreams.Interop.Win32: \n   at Microsoft.Research.CodeAnalysis.Clousot.TypeBinder`9.Analyze()

    Further digging reveals that this has something to do with the caching of static checker results. If I do not cache or delete the cache in sql, it takes significantly longer to run (ala 20 minutes as opposed to 1), but runs as expected.

Maybe you are looking for

  • How do I restrict access to USB Disk connected to Airport Extreme

    I have attached a USB HDD to my Airport Extreme Base Station. The drive is divided into 4 partitions, which I did with the HDD connected directly to a MBP before plugging into the AEBS. All the Macs on the network seem to be able to read and write in

  • What's the best way to move library in Windows to a new computer?

    I have iTunes running fine on my Vista machine at home. I've gotten Win7 in, and I'm going to be moving to a new computer I have which I'm upgrading from XP to 7 with (it's got more horsepower than my Vista machine). Anyway, to that, I want to move a

  • Bug in 10.1.2: Encodings

    Hi ! Our company uses JDeveloper for developing our sollution. We wanted to migrate from 9.0.5.2 to 10.1.2, but we encountered a problem. Encoding can be only set to cp1250. I imagine that this is bug, since in 9.0.5.2 this works ok. Is it possible t

  • Toplink locking oracle tables?

    Does toplink ever issues a "Lock Table" or "Select xxx From xxx FOR UPDATE"? I'm getting a oracle error: ORA-00060: deadlock detected while waiting for resource When I query the v$locks table I can see SID Type LMODE 252 TM 3 From what I've read this

  • Asset history sheet (S_ALR_87011990) is not working ok

    Hello,      I have problems with the asset history sheet (S_ALR_87011990) because it doesen't shows the right amount for the totals. I chose the "Lisst assets or group totals only" check mark and the totals amounts for one asset class are not equal w