Cas Log Errors - Failed To Delete Directory

In most of the CAS logs on clients I see the error repeated:
Error: DeleteDirectory: - Failed to delete Directory with Error 0x00000003
Error: DeleteDirectory: - Failed to delete Directory C:\Windows\ccmcache\**** with Error 0x0000002
What is the cause of this? Looks like it is trying to delete a folder from the local client package cache?

The error code means the file cannot be found. The file may be already deleted. You need to open the cache folder and check. Normally, it is not an issue.
Juke Chou
TechNet Community Support

Similar Messages

  • Unxpected error"FAILED TO START DIRECTORY SERVER INSTANCE

    hi
    i was trying to install sun DS 6.3 in my system,everything is going good but while creating directory instance i get errors saying Unxpected error
    "FAILED TO START DIRECTORY SERVER INSTANCE"
    C:/DSEE/VAR/DSCC6/DCC/ADS
    aftre that i get some errors showing
    at "com.sun.directory.dcc.cli.setup.cmd ads create.perform<cmdadscreate.java:129>
    com.sun.directory.dcc.cli.setup.cmd ads create.perform<cmdadscreate.java:59>
    com.sun.directory.dcc.cli.setup.cmd ads create.perform<cmdadscreate.java:35>
    com.sun.directory.dcc.cli.setup.cmd ads create.perform<cmdadsinitialize.java:55>
    ..... and few more errors displaying.
    before that i start up dsccsetup/initialize
    it asks for directory manager password:nnnn
    reenter directory manager password:nnnn
    after that i get the above errors
    at the end it says
    "Software installation is corrupted or incomplete"
    i appreciate if someone can help me in this issue.

    hi,
    thanks for the reply,
    actually i havent known whats the certificate database password,as i'm new to DS 6.3,its hard for me,
    and i installed tomcat 5.0.28,and jva,jre 1,6 ,and i get the when i setup installation it goes fine when i ask for dsccsetup initialize it asks for the token
    A PIN IS REQUIRED TO ACCESS, i tried the same in other system with tomcat 5.5 with same OS XP it goes fine with no errors,i'm not sure that it may be caused by tomcat version,but still will be happy for your suggestion,
    thanking you,
    sasi

  • Has anyone received this error, "Failed to create directory for PX images"

    I recently migrated to Windows7.  98% of the migration went well. All of my pictures and Elements Catalog came over fine.  I had to "reconnect" all of the pictures in the catalog due to new directory name, but it worked fairly well.  Of the 11,000 entries synch'd with photoshop.com, 10,500 re-synch'd fine. However almost 500 are stuck with an error of "Failed to create directory for PX images".  Can anyone help with how to resolve this issue?  Note, I did try to remove the picture from the album and then re-add, but that didn't work.
    Thank you in advance for any help you can provide.
    Thanks,
    Jeff

    function(){return A.apply(null,[this].concat($A(arguments)))}
    JeffAGoldberg wrote:
    Erased everything on photoshop.com (which I couldn't accomplish due to bugs on photoshop.com) and created a new catalog.
    Jeff
    What problems are you facing in deleting files from PS.com. Are you able to maintain a proper synced catalog now ? If possible please elaborate so that we can help.

  • Error : Failed to Delete JCO Client while Configuring BI JAVA

    Hi Everybody,
    While Configuring BI JAVA ( http:/host:5instance#00/nwa > Change and Deploy > BI JAVA Config )
    ...it went okay until Phase 51 / 54 and then it gives error msg :
    " Failed to Delete JCO Client Connection BI_METADATA on <SID>.SYSTEMHOME.<HOSTNAME> "
    STEP WD_JCO_DEST_BI_METADATA
    It seems that Probably the JCO Client is locked . Can Anyone, pl.
    - inform about where to see the logs for this error ?  I checked various files under work dir but, found
      nothing
    - Is there any way to check if the JCO Client connection exists or not / locked  ?
    Any / ALL Help is highly appreciated and would be rewarded with app points..
    Thanks in Advance,
    Regards,
    - Ishan

    http://<host>:5<nr>00/webdynpro/welcome/Welcome.jsp
    under Content Administrator, you can create/edit or test JCo connections.
    nikhil

  • LOG ERRORS failing to capture 2291 errors on UPDATE statement

    We are running Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options
    We have often successfully used the error logging clause when performing batch inserts to the database. However, we now have a situation where an UPDATE statement is failing and rolling back upon encountering a foreign-key referential constraint [ORA-02291]. It is successfully recording Check constraint errors [ORA-02290]. The foreign keys are not deferred, and they have nothing to do with any unique constraints or indices on the table that is the target of the UPDATE statement. The Error-logging table was created by using the DBMS_ERRLOG package. We recreated it to make sure that we had not introduced column format errors. The same problem occurs. The UPDATE statement is attempting to update approximately 12000 rows. Any help in understanding this problem would be appreciated.
    Here is the error statement
    ORA-02291: integrity constraint (OIFS.FRAME_FK07) violated - parent key not found
    Here is the problem statement and its surrounding PLSQL block:
    BEGIN <<update_records>>
    UPDATE frame f
    SET (company_name,
    address1_line,
    address2_line,
    address1_city,
    address1_state,
    address1_zip,
    contact1_name,
    contact1_phone_number,
    update_date,
    update_user,
    -- comments,
    facility_name,
    facility_type,
    doing_business_as,
    contact1_phone_ext,
    contact1_fax,
    contact1_email,
    contact2_name,
    contact2_phone_number,
    contact2_phone_ext,
    contact2_fax,
    contact2_email,
    source_survey,
    source_status,
    address2_city,
    address2_state,
    address2_zip,
    facility_location_number,
    attention_line,
    company_official,
    facility_irs_code
    ) =
    (SELECT company_name,
    address1_line,
    address2_line,
    address1_city,
    address1_state,
    address1_zip,
    contact1_name,
    contact1_phone_number,
    SYSDATE,
    user_in,
    facility_name,
    facility_type,
    doing_business_as,
    contact1_phone_ext,
    contact1_fax,
    contact1_email,
    contact2_name,
    contact2_phone_number,
    contact2_phone_ext,
    contact2_fax,
    contact2_email,
    source_survey,
    source_status,
    address2_city,
    address2_state,
    address2_zip,
    facility_location_number,
    attention_line,
    company_official,
    facility_irs_code
    FROM oifs.respondent r
    WHERE r.cin = f.cin
    WHERE f.cin IN
    (SELECT cin
    FROM
    (SELECT cin,
    company_name,
    address1_line,
    address2_line,
    address1_city,
    address1_state,
    address1_zip,
    contact1_name,
    contact1_phone_number,
    facility_name,
    facility_type,
    doing_business_as,
    contact1_phone_ext,
    contact1_fax,
    contact1_email,
    contact2_name,
    contact2_phone_number,
    contact2_phone_ext,
    contact2_fax,
    contact2_email,
    source_survey,
    source_status,
    address2_city,
    address2_state,
    address2_zip,
    facility_location_number,
    attention_line,
    company_official,
    facility_irs_code
    FROM oifs.respondent
    MINUS
    SELECT cin,
    company_name,
    address1_line,
    address2_line,
    address1_city,
    address1_state,
    address1_zip,
    contact1_name,
    contact1_phone_number,
    facility_name,
    facility_type,
    doing_business_as,
    contact1_phone_ext,
    contact1_fax,
    contact1_email,
    contact2_name,
    contact2_phone_number,
    contact2_phone_ext,
    contact2_fax,
    contact2_email,
    source_survey,
    source_status,
    address2_city,
    address2_state,
    address2_zip,
    facility_location_number,
    attention_line,
    company_official,
    facility_irs_code
    FROM oifs.frame
    LOG ERRORS INTO oifs.frame_load_errors
    (job_num || ' ' || TO_CHAR(SYSDATE, 'YYYYMMDD HH24:MI:SS') || ' update')
    REJECT LIMIT UNLIMITED;
    EXCEPTION
    WHEN OTHERS THEN
    ohub.err_pkg.record_and_continue(msg_in => 'problem in updating FRAME rows');
    RAISE;
    END update_records;

    Thank you for your help. It pointed me in the right direction, which was to temporarily disable the triggers. The ORA-02291 errors were then properly captured in the error-logging-table.
    The problem did not appear to be related to the trigger. The problem that was captured in my PLSQL error-handler but not the error-logging-table was an ORA-02291, which was specific to the original table. The trigger-driven processing did not seem to generate any errors (I have PLSQL error-handling logic in there as well).
    I was aware of Tom Kyte's statement, and I knew triggers were dicey when I decided to use them. It seemed the best way to try to ensure database integrity when regular Foreign-Key and Check constraints did not suffice. I am now paying the price for that decision.

  • ERROR: Failed to delete the script.

    I am trying to delete a Synopsis but I keep getting this error message. I have tried on both web and desktop app. I won't delete. If I move it back to project all copy is still there. 

    I am trying to delete a Synopsis but I keep getting this error message. I have tried on both web and desktop app. I won't delete. If I move it back to project all copy is still there. 

  • *ERROR: failed to open file " export directory path /ABAP/DATA/SAPSTR.LST

    Hello experts,
    I am doing system export.
    as per the system copy guide I follows all steps.
    when I tried for export preparation.
    I got following error in  "/tmp/sapinst_instdir/ERPEhP4/LM/COPY/DB6/EXP/CENTRAL/AS-ABAP/PREEXP/R3ldctlExport.log"
    ERROR: failed to open file "/db2/PRD/sapdata4/export_prd/ABAP/DATA/SAPSTR.LST"
    /db2/PRD/sapdata4/export_prd is my export directory.
    but I found that the "SAPSTR.LST" is not exist in the location.
    also I don't find any log regarding this error.
    how to resolve this? please guide.

    Hi Rupesh,
    In continuation of previous mail, there is keyboard problem hence spelling mistakes.
    Various possible solutions:
    Report SMIGR_CREATE_DDL has to be executed before starting export preparation.
    OR
    Download llatest kernel patch and apply them in /spmnt/<SID>/exe
    make sure download latest patch R3ldctl file and R3load from SAP Marketplace and apply them in to /sapmnt/<SID>/exe.
    Make sure export dump folder should be in local drives (in windows) or local filesystems i.e.do not  use network drives  (windows) or NFS (in case of unix).
    FInally check permission by using chmod 777 in exportdump folder in case of unix.
    Regards
    APR

  • B&C Error when deploying lots of updates "Failed to delete policies compiled by TaskSequence (0x80041032)"

    We are having an issue with a Win7 B&C that I can't seem to get around at the moment.
    The B&C TS goes something like this :
    Apply Image - Win7 vanilla install that has been captured with all deployed updates on it.
    Install Standard Apps - Various standard apps including Office and Lync etc.
    Apply Updates - There are a number of these because of the amount of apps installed.
    Prepare Config Manager Client & OS
    Capture Image
    The TS seems to fail at the Prepare Config Manager Client stage and gives the error :
    Failed to delete policies compiled by TaskSequence (0x80041032)
    I've read around about the problem and it seemed to suggest that this is a problem when there are too many updates being applied but it was solved with SP1.  We are running 2012 SP1 CU3 but we are still seeing the problem.  
    Some of the posts suggest dividing the B&C TS into multiple TS's to solve this but we have already divided it into 4 different sections and are seeing the issue still.  I am also tried offline servicing to reduce the number of updates but as this
    doesn't do Office updates etc it's only of limited use.
    Below is the smsts.log file (section with the errors).
    Is anyone else seeing this issue or have any thoughts on what it might be?
    Stopped the service 'ccmexec' successfully PrepareSMSClient 05/02/2014 21:24:13 3696 (0x0E70)
    Successfully stopped the client agent service. PrepareSMSClient 05/02/2014 21:24:13 3696 (0x0E70)
    UnAssigning the SMSClient succeeded PrepareSMSClient 05/02/2014 21:24:13 3696 (0x0E70)
    Removing SitePolicy succeeded. PrepareSMSClient 05/02/2014 21:24:13 3696 (0x0E70)
    Successfully opened client certificate store. PrepareSMSClient 05/02/2014 21:24:13 3696 (0x0E70)
    No certificates to delete PrepareSMSClient 05/02/2014 21:24:13 3696 (0x0E70)
    Deleting Client properties from file C:\WINDOWS\SMSCFG.INI succeeded. PrepareSMSClient 05/02/2014 21:24:13 3696 (0x0E70)
    Reseting the Trusted Root Key successful PrepareSMSClient 05/02/2014 21:24:13 3696 (0x0E70)
    Deleting instance of 'CCM_Client' successful PrepareSMSClient 05/02/2014 21:24:13 3696 (0x0E70)
    Successfully reset Registration status flag to "not registered" PrepareSMSClient 05/02/2014 21:24:13 3696 (0x0E70)
    Successfully disabled provisioning mode. PrepareSMSClient 05/02/2014 21:24:13 3696 (0x0E70)
    Start to cleanup TS policy PrepareSMSClient 05/02/2014 21:24:13 3696 (0x0E70)
    getPointer()->ExecQuery( BString(L"WQL"), BString(pszQuery), lFlags, pContext, ppEnum ), HRESULT=80041032 (e:\nts_sccm_release\sms\framework\core\ccmcore\wminamespace.cpp,450) PrepareSMSClient 05/02/2014 21:32:27 3696 (0x0E70)
    ns.Query(sQuery, &spEnum), HRESULT=80041032 (e:\nts_sccm_release\sms\framework\tscore\utils.cpp,3082) PrepareSMSClient 05/02/2014 21:32:27 3696 (0x0E70)
    Wmi query 'select * from CCM_Policy where PolicySource = 'CcmTaskSequence'' failed, hr=0x80041032 PrepareSMSClient 05/02/2014 21:32:27 3696 (0x0E70)
    End TS policy cleanup PrepareSMSClient 05/02/2014 21:32:27 3696 (0x0E70)
    TS::Utility::CleanupPolicyEx(false), HRESULT=80041032 (e:\nts_sccm_release\sms\client\osdeployment\preparesmsclient\preparesmsclient.cpp,457) PrepareSMSClient 05/02/2014 21:32:27 3696 (0x0E70)
    Failed to delete policies compiled by TaskSequence (0x80041032) PrepareSMSClient 05/02/2014 21:32:27 3696 (0x0E70)
    Failed to prepare SMS Client for capture, hr=80041032 PrepareSMSClient 05/02/2014 21:32:27 3696 (0x0E70)
    pCmd->Execute(), HRESULT=80041032 (e:\nts_sccm_release\sms\client\osdeployment\preparesmsclient\main.cpp,136) PrepareSMSClient 05/02/2014 21:32:27 3696 (0x0E70)
    Failed to prepare SMS Client for capture, hr=80041032 PrepareSMSClient 05/02/2014 21:32:27 3696 (0x0E70)
    Process completed with exit code 2147749938 TSManager 05/02/2014 21:32:27 2280 (0x08E8)
    !--------------------------------------------------------------------------------------------! TSManager 05/02/2014 21:32:27 2280 (0x08E8)
    Failed to run the action: Prepare Configuration Manager Client.
    Call cancelled (Error: 80041032; Source: WMI) TSManager 05/02/2014 21:32:27 2280 (0x08E8)
    MP server http://SCCM2012SERVER.DOMAIN.COM. Ports 80,443. CRL=false. TSManager 05/02/2014 21:32:27 2280 (0x08E8)
    Setting authenticator TSManager 05/02/2014 21:32:27 2280 (0x08E8)
    Set authenticator in transport TSManager 05/02/2014 21:32:27 2280 (0x08E8)
    Sending StatusMessage TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    Setting message signatures. TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    Setting the authenticator. TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    CLibSMSMessageWinHttpTransport::Send: URL: SCCM2012SERVER.DOMAIN.COM:80 CCM_POST /ccm_system/request TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    Request was succesful. TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    Set a global environment variable _SMSTSLastActionRetCode=-2147217358 TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    Set a global environment variable _SMSTSLastActionSucceeded=false TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    Clear local default environment TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    Let the parent group (Capture the Reference Machine) decides whether to continue execution TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    The execution of the group (Capture the Reference Machine) has failed and the execution has been aborted. An action failed.
    Operation aborted (Error: 80004004; Source: Windows) TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    Failed to run the last action: Prepare Configuration Manager Client. Execution of task sequence failed.
    Call cancelled (Error: 80041032; Source: WMI) TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    MP server http://SCCM2012SERVER.DOMAIN.COM. Ports 80,443. CRL=false. TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    Setting authenticator TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    Set authenticator in transport TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    Sending StatusMessage TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    Setting message signatures. TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    Setting the authenticator. TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    CLibSMSMessageWinHttpTransport::Send: URL: SCCM2012SERVER.DOMAIN.COM:80 CCM_POST /ccm_system/request TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    Request was succesful. TSManager 05/02/2014 21:32:28 2280 (0x08E8)
    Execution::enExecutionFail != m_eExecutionResult, HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmanager\tsmanager.cpp,866) TSManager 05/02/2014 21:47:28 2280 (0x08E8)
    Task Sequence Engine failed! Code: enExecutionFail TSManager 05/02/2014 21:47:28 2280 (0x08E8)
    **************************************************************************** TSManager 05/02/2014 21:47:28 2280 (0x08E8)
    Task sequence execution failed with error code 80004005 TSManager 05/02/2014 21:47:28 2280 (0x08E8)
    Cleaning Up. TSManager 05/02/2014 21:47:28 2280 (0x08E8)
    Removing Authenticator TSManager 05/02/2014 21:47:28 2280 (0x08E8)
    Cleaning up task sequence folder TSManager 05/02/2014 21:47:28 2280 (0x08E8)

    Hi,
    I found a similar thread for your reference.
    OSD Capture: Prepare Configuration Manager Client step fails
    http://social.technet.microsoft.com/Forums/en-US/28e6ba92-db10-4f76-bd3b-9535ef1f93a0/osd-capture-prepare-configuration-manager-client-step-fails?forum=configmanagerosd
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Errors while installation "Failed to start Directory server instance"

    hi
    i was trying to install sun DS 6.3 in my system,everything is going good but while creating directory instance i get errors saying Unxpected error
    "FAILED TO START DIRECTORY SERVER INSTANCE"
    C:/DSEE/VAR/DSCC6/DCC/ADS
    before that i start up dsccsetup/initialize
    it asks for directory manager password:nnnn
    reenter directory manager password:nnnn
    after that i get the above errors
    at the end it says
    "Software installation is corrupted or incomplete"
    i appreciate if someone can help me in this issue.

    Enterprise Linux is designed for industry standard server hardware. It supports a limited and well known range of peripherals in order to provide commercial support and high reliability.
    If you need Linux for any Laptop or Desktop PC, choose a Desktop Linux distribution, like Ubuntu, Fedora, Debian, etc.
    Your best option to run Enterprise Linux on non supported hardware is to use hardware virtualization like free Oracle Virtualbox. More information see http://www.oracle.com/technetwork/community/developer-vm/index.html. IMO, there is no compelling reason to try to install Enterprise Linux using dual boot or relying on 3rd party driver software.

  • FTP Server "Failed to retrieve directory listing"

    I am setting up a new FTP site on Server 2012. I can access the site locally but when accessing using filezilla externally I get the error:
    Status:    Connecting to 203.109.232.97:21...
    Status:    Connection established, waiting for welcome message...
    Response:    220 Microsoft FTP Service
    Command:    USER ftptest
    Response:    331 Password required
    Command:    PASS **********
    Response:    230-Directory has 857,133,400,064 bytes of disk space available.
    Response:    230 User logged in.
    Command:    OPTS UTF8 ON
    Response:    200 OPTS UTF8 command successful - UTF8 encoding now ON.
    Status:    Connected
    Status:    Retrieving directory listing...
    Command:    PWD
    Response:    257 "/" is current directory.
    Command:    TYPE I
    Response:    200 Type set to I.
    Command:    PASV
    Response:    227 Entering Passive Mode (203,109,232,97,233,180).
    Command:    LIST
    Response:    150 Opening BINARY mode data connection.
    Error:    Connection timed out
    Error:    Failed to retrieve directory listing
    Have opened ports on firewall but still not working. Not sure what to try next

    Check : http://social.technet.microsoft.com/Forums/windowsserver/en-US/706e5104-325c-4c43-8c06-a20704569bf4/ftp-server-failed-to-retrieve-directory-listing?forum=winservergen
    Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

  • RH7 Error: Failed to read from log... Failed to generate WebHelp Pro

    Installed RH9 trial on Windows XP PC. Then, generated an existing project using RH7 to a new C: drive directory location on the PC using the same name. Renamed the project files in that C:drive directory to a test name and opened the project's .xpj file in RH9.  It converted cleanly. 
    Now, when I go to generate the RH7 original project from the original server directory, I receive:  
    Error: Failed to read from log (file name) .log.... Internal error encountered,  Failed to generate WebHelp Pro.
    Does the log file keep track of the previous generation (time stamp,etc), since this RH7 generation has a skip in it for the one generated to the C:drive?  I've compared the log files from each run (.txt files) and don't see a difference. I even copied the log file from the C:drive run to the Server directory. No luck.  Any ideas?

    Hi John,
    Thanks for the prompt response.  I am trying to evaluate RH9 / RH Server 9.
    When I generate RH7 projects, I’ve always put the server (RH7 Server) directory reference in the ‘Output Folder and Start Page’ field.  This directory reference is where the compiled output ends up right? In my case, it’s in that field as:
    PBSrobohelp\D$\RoboHelp <file:///
    PBSrobohelp\D$\RoboHelp>  Web Files\PBS Unit Processes Manual.  I’m not aware of a C:Drive local copy of the files. Doesn’t it go out to the server output for the .log file in question?
    For the test, I took an existing project in RH7 and replaced this server reference with a C:Drive local hard drive directory reference and ran the output to it.  Then I went to the C:Drive directory and changed the project name, because there doesn’t appear to be a way to do a ‘save as’ on a project – RH7 wants to keep that name badly.  I then, shutdown RH7 and started RH9.  I opened the .xpj file from the new test project copy. It recognized that it was from an older release and it converted the test copy to RH9.  It converted cleanly with about 2 inconsequential document warnings but did not create a TOC.  I looked it over and saved it in RH9 – it was already my test name.  
    The original RH7 project opens fine in RH7 and the Test RH9 project opens fine in RH9. So I think I have a good test copy.  It’s just that when I point the RH7 original to the Server Output folder (which has its files) it gets the error on generation.  
    We are evaluating RH Server 9 but I haven’t attempted to publish anything to it yet. I’ve stayed  purely on my desktop.  
    Hope this clears it up.
    Jim
    Jim Dages
    Business Professional Technician III
    University of Colorado, Payroll & Benefit Services
    1800 Grant St, Suite 400
    Denver, CO  80203
    t. 303-860-4230
    f. 303-860-4299
       Please consider the environment before printing this e-mail.
    CONFIDENTIALITY NOTICE - This e-mail transmission, and any documents, files or previous e-mail messages attached to it may contain information that is confidential or legally privileged. If you are not the intended recipient, or a person responsible for delivering it to the intended recipient, you are hereby notified that you must not read this transmission and that any disclosure, copying, printing, distribution or use of any of the information contained in or attached to this transmission is STRICTLY PROHIBITED. If you have received this transmission in error, please immediately notify the sender by telephone or return e-mail and delete the original transmission and its attachments without reading or saving in any manner. Thank you.

  • VDBench : "Unable to delete directory" Error isnt clear.

    Hey,
    is it possible to add some detailing to the error ?
    e.g If there ares till files left , then list them in the log.
    And also add the errno if possible
    04:52:02.159 Unable to delete directory: /mnt/machine/test-114/vdbench001/vdb1_1.dir/vdb2_2.dir/vdb3_2.dir/vdb4_1.dir/vdb5_1.dir/vdb6_2.dir/vdb7_2.dir/vdb8_2.dir
    04:52:02.159 04:52:02.159 Are there any files left that were not created by Vdbench?
    Thank you !

    Yes, I could list the files that are left, if any, but the 'ls' command should do that nicely for you.
    As far as 'errno', since the directory delete is done using java code, 'errno' is not available.
    You may have to use tools like 'predictive tracing' available on Solaris Dtrace to find out why/where/what about the failed delete.

  • Log on Failed error

    I've a report developed with DB2 9.7.5. It works fine in Crystal Report designer on my machine with local DB2 server with one of the database. It works fine from my ASP.NET application as long as I connect to same database. But if I chnage the database, I keep getting log on failed error. Then, if I change the report in crystal reports designer and connect to the other database and perform check dependencies, it starts working again.
    The report is developed using couple of stored procedures and it has multiple subreports. I verified that the stored procedures are exactly same on other database and the userID to connect to both databases has exact same privileges.
    Also, I get the same error when I try to connect another server with another copy of DB2 database. In this case, even if I use crystal reports designer to connect and save, it doesn't work.
    Following is my code when I try to connect. The interesting thing is call to subreport.VerifyDatabase() works fine. But call to m_rpt.VerifyDatabase() throws exception.
    ReportDocument m_rpt;
                    if (m_rpt.Subreports != null && m_rpt.Subreports.Count > 0)
                        foreach (ReportDocument subrpt in m_rpt.Subreports)
                            foreach (CrystalDecisions.CrystalReports.Engine.Table tbl in subrpt.Database.Tables)
                                CrystalDecisions.Shared.TableLogOnInfo logInfo = tbl.LogOnInfo;
                                logInfo.ConnectionInfo.DatabaseName = m_strDBName;
                                logInfo.ConnectionInfo.ServerName = m_strDSN;
                                logInfo.ConnectionInfo.UserID = m_strDBUserID;
                                logInfo.ConnectionInfo.Password = m_strDBPassword;
                                tbl.ApplyLogOnInfo(logInfo);
                            subrpt.VerifyDatabase();
                    foreach(CrystalDecisions.CrystalReports.Engine.Table tbl in m_rpt.Database.Tables)
                        CrystalDecisions.Shared.TableLogOnInfo logInfo = tbl.LogOnInfo;
                        logInfo.ConnectionInfo.DatabaseName = m_strDBName;
                  logInfo.ConnectionInfo.ServerName = m_strDSN;
                        logInfo.ConnectionInfo.UserID = m_strDBUserID;
                        logInfo.ConnectionInfo.Password = m_strDBPassword;
                  tbl.ApplyLogOnInfo(logInfo);
                    m_rpt.VerifyDatabase();
    Edited by: kushalkaleshwari on Mar 5, 2012 5:54 PM

    Following is the exception:
    -          excep     {"Log on failed."}     System.Exception {CrystalDecisions.CrystalReports.Engine.LogOnException}
    +          [CrystalDecisions.CrystalReports.Engine.LogOnException]     {"Log on failed."}     CrystalDecisions.CrystalReports.Engine.LogOnException
    +          Data     {System.Collections.ListDictionaryInternal}     System.Collections.IDictionary {System.Collections.ListDictionaryInternal}
              HelpLink     null     string
    -          InnerException     {"\rNo error."}     System.Exception {System.Runtime.InteropServices.COMException}
    +          [System.Runtime.InteropServices.COMException]     {"\rNo error."}     System.Runtime.InteropServices.COMException
    +          Data     {System.Collections.ListDictionaryInternal}     System.Collections.IDictionary {System.Collections.ListDictionaryInternal}
              HelpLink     null     string
    +          InnerException     null     System.Exception
              Message     "\rNo error."     string
              Source     "Analysis Server"     string
              StackTrace     "   at CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.VerifyDatabase()\r\n   at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.VerifyDatabase()\r\n   at CrystalDecisions.CrystalReports.Engine.ReportDocument.VerifyDatabase()"     string
    -          TargetSite     {Void VerifyDatabase()}     System.Reflection.MethodBase {System.Reflection.RuntimeMethodInfo}
    +          [System.Reflection.RuntimeMethodInfo]     {Void VerifyDatabase()}     System.Reflection.RuntimeMethodInfo
    +          base     {Void VerifyDatabase()}     System.Reflection.MemberInfo {System.Reflection.RuntimeMethodInfo}
              Attributes     FamANDAssem | Family | Virtual | HideBySig | VtableLayoutMask     System.Reflection.MethodAttributes
              CallingConvention     Standard | HasThis     System.Reflection.CallingConventions
              ContainsGenericParameters     false     bool
              IsAbstract     false     bool
              IsAssembly     false     bool
              IsConstructor     false     bool
              IsFamily     false     bool
              IsFamilyAndAssembly     false     bool
              IsFamilyOrAssembly     false     bool
              IsFinal     false     bool
              IsGenericMethod     false     bool
              IsGenericMethodDefinition     false     bool
              IsHideBySig     true     bool
              IsPrivate     false     bool
              IsPublic     true     bool
              IsSecurityCritical     true     bool
              IsSecuritySafeCritical     true     bool
              IsSecurityTransparent     false     bool
              IsSpecialName     false     bool
              IsStatic     false     bool
              IsVirtual     true     bool
    +          MethodHandle     {System.RuntimeMethodHandle}     System.RuntimeMethodHandle
    +          Non-Public members          
    +          Static members          
    +          Non-Public members          
              Message     "Log on failed."     string
              Source     "CrystalDecisions.CrystalReports.Engine"     string
              StackTrace     "   at CrystalDecisions.CrystalReports.Engine.ReportDocument.VerifyDatabase()\r\n   at WebUtilLib.ReportCacher2.ApplyLogonInfo(String strDSN, String strDBName, String strDBUserID, String strDBPassword, String strDBType)"     string
    +          TargetSite     {Void VerifyDatabase()}     System.Reflection.MethodBase {System.Reflection.RuntimeMethodInfo}
    +          Static members          
    +          Non-Public members

  • Bonjour, j'ai les logiciels du produits en rubrique. J'ai aussi les codes d'activation. Après le nettoyage de l'ordinateur , les programmes ont disparus. En les reinstallant, le système montrer:  ERROR: DF037: Unable to delete directory "/Applications/Ado

    Bonjour,
    j'ai les logiciels du produits en rubrique. J'ai aussi les codes d'activation. Après le nettoyage de l'ordinateur , les programmes ont disparus. En les reinstallant, le système montrer:
    ERROR: DF037: Unable to delete directory "/Applications/Adobe"(Seq 2161)ERROR: DW063: Command ARKDeleteDirectoryCommand failed.(Seq 2161)
    Pouvez vous m'aider avec la récupération des mes logiciels pour continuer mon travail?
    Sincèrement,
    Gala Sibiliova ([email protected])

    Well, by default SQL*Loader new line as end of record. Since your logical record in question consists of multiple lines each line is treated as a seaparate record. As a result, SQL*Loader finds a record with starting double quote without matching ending double quote. You must to use stream record format option in SQL*Loader by using
    INFILE whatever-your-infile-is "str X'xxxx'"where xxxx are charactercombination SQL*Loader should use as record separator in hexidecimal format.
    SY.

  • The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError) Log on failed. Ensure the user name and password are correct. (rsLogonFailed) Logon failure: unknown user name or bad

    The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError)
    Log on failed. Ensure the user name and password are correct. (rsLogonFailed)
    Logon failure: unknown user name or bad password 
    am using Windows integrated security,version of my sql server 2008R2
    I have go throgh the different articuls, they have given different answers,
    So any one give me the  exact soluction for this problem,
    Using service account then i will get the soluction or what?
    pls help me out it is urgent based.
    Regards
    Thanks!

    Hi Ychinnari,
    I have tested on my local environment and can reproduce the issue, as
    Vaishu00547 mentioned that the issue can be caused by the Execution Account you have configured in the Reporting Services Configuration Manager is not correct, Please update the Username and Password and restart the reporting services.
    Please also find more details information about when to use the execution account, if possible,please also not specify this account:
    This account is used under special circumstances when other sources of credentials are not available:
    When the report server connects to a data source that does not require credentials. Examples of data sources that might not require credentials include XML documents and some client-side database applications.
    When the report server connects to another server to retrieve external image files or other resources that are referenced in a report.
    Execution Account (SSRS Native Mode)
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    Vicky Liu
    TechNet Community Support

Maybe you are looking for

  • Lightroom won't open an image in Photoshop CS2

    I have Photoshop 1.1 on a PC running Windows XP. I can't open a Lightroom image in Photoshop CS2 through the "photo" menu because the menu selection to open an image in Photoshop is dimmed. Also in "Preferences" in the "external editors" tab it says

  • Saving strings in user prefs file

    Hi all, I'm experimenting with user preferences. The IB interface works okay, and the panel appears when selected from the 'Preferences...' menu item. I do have one slight issue with it, but I'll deal with that as a separate question later. In the me

  • Error Message whilst trying to install Quicktime

    Can anybody help me with the following message which I keep getting whilst trying to install Quicktime via ITUNES : Could not open key HKEY_LOCALMACHIN\Software\Classes\QuicktimePlayerLib.QuicktimePlayerApp\CLSID I know this has something to do with

  • Layer Opacity percentage from Photoshop is different in After Effects

    When importing a layered PS CS3 document into AE CS3 with layers set to different opacity, AE interprets the % differently. AE displays the % as a whole number but when you click on the field you can see the number goes to at least the thousandths. T

  • Changing the colour of part of an image

    This is hopefully an easy one! I have an image in a menu here (the red 'Supagard' one) that I need to change the background of from black to the blue to match the rest of the image : link here I've had a rummage, and seen how to change colours by sel