Subversion password let go when you use data on the same svn forced maker.

Hello

We are running windows Xp sp3 with svn tortoire. Data Modeler 3.0.0 665

Modeler data allows us to modify our data model.

There is a svn repository for all data and source of our project.

Problem:
When you run the Modeler data and open a template that is located on the svn, an update on the svn repository repository always ask the password for svn.
This problem also come if you do a simple deposit refresh the Data Modeler.

It seems this substitution of data Modeler always the directory D:\Documents and Data\Subversion\auth\svn.simple Settings\...\Application file that contains the authentication for svn subversion.
He forgets the password for svn and put the file read-only.

You know the problem?
close solution or work exist?

For example, we can make a script which always replace the file changed. I'm trying to read but without success.

Kind regards.

Hello

some of the features-svn Data Modeler is inherited from JDeveloper.
Unfortunately, working with svn external tools (such as the turtle) is a well known issue for JDeveloper, because it encrypts and stores the password in another file and try to protect the file you mentioned.
See more here: SVN and JDeveloper 11 g credentials

Concerning
Ivaylo

Tags: Database

Similar Questions

  • Satellite L300 - 29 X just crashes when you use some of the programs installed

    I bought a Toshiba L300 29 X for my daughter (30 years) help in its work of the University.
    Since we took this home and installed the OS it is questions. At first, I thought it was to do with Vista and so I bought the upgrade to Windows 7 and installed, but the same issues are there it just freezes when you use some of the programs installed.

    I tried restoring factory several times with Vista and still once I even made restoration to the first State to install W7 disk then updated from the web and then she still uses it for his United work and it freezes.

    There is nothing wrong with his work United as when using my laptop or even its partners a there aren't any issues or problems.
    Programs are in Office 2007 and it is the same copy I have in my laptop and they are both up-to-date.

    Its mobile partners is lower than its own specification and has less RAM so that to have only a single processor.
    I tried to install the W7 as a 32-bit and a 64 bit OS, and whenever there is any change in the problems with programs

    Can someone out there suggest a possible cause or same difficulty for am I at the end of my knowledge on this issue and my daughter is about to throw the thing out the window.

    Hello

    I think that the described issue could be related to a hardware problem, given that the laptop should not have problems running the Microsoft Office applications.

    In many cases, the s for laptop system could freeze due to a higher temperature.
    My girlfriend repeatedly asked for help because the laptop froze too.

    But the problem was linked to a higher temperature because cooling fans were clogged and cooling fans might not work correctly. She used the laptop sitting on the couch and there was not a lot of free space around the laptop to ensure good air circulation

    I want to say is that there are several reasons for such behavior annoying cell phone I think it would be wise to check the hardware first
    This should be done by the technician of the ASP.

  • When you use find on the page (ctrl + F on Windows) it is a message indicating the total number of matches. What does the first number?

    When you use find on the page (ctrl + F on Windows) it is a message indicating the total number of matches. What does the first number?
    I'm more interested in the case when this number is smaller than the total.

    Hello

    I think you mean the text stating "x of there matches", to the right of the box where you entered the search term.

    The first number ("x" in my example above) indicates the current entry highlighted on the page that matches the search phrase. If you use the upper and down arrows to navigate through the instances of this term on the page, you will see this number go up and down.

    I hope this helps, but if not please come back here and we can look at another solution for you.

  • Why always, I received management is not available when you use maps for the iPhone 6 and I live in the Qatar?

    Why I always get direction is not available when you use maps for the iPhone 6 more?

    Currently I live in the Qatar.

    Hi Alison, Sameh

    The reason why you see directions is not available, it's that for cards of Apple, turn-by-turn directions is not a feature that is available in the Qatar. You can search for places and satellite imagery
    Take a look at the link below for more details on what features are available in the Qatar.

    iOS 9 feature availability
    http://www.Apple.com/iOS/feature-availability/

    Nice day

  • Get "Not responding" when you use law ON the.

    Get "Not responding" after each keystroke when you use law on the.  I see the message and then after about 10-15 seconds, if you press the tab key.  Literally, it happens after every key stroke.  I've never had this happen before.  My laptop has Windows 8.  At this rate, it'll take a week to complete my tax return.

    Hello

    Thank you for your response.

    I'm sorry for the late reply.

    I appreciate your efforts to resolve the issue.

    I suggest you run the system file checker (SFC) and see if it helps.
    Reference:
    Use the System File Checker tool to repair missing or corrupted system files
    http://support.Microsoft.com/kb/929833

    System File Checker is a Windows utility that allows users to find corruptions in Windows system files and restore the damaged files.

    Note: It can ask the difficulty Windows installation DVD and allowing SFC to do more than minor repairs. Could some of the files saved on your computer are deleted when fixing corrupted files.

    Please keep us updated on the status of the issue.

    Thank you

  • ORA-00902 error invalid data type when you use CAST in the PL/SQL Package

    I'm getting ORA - 00902 Datatype not valid error when you use cast in getEmpValues (see code below) method in the package I created.
    I don't know what is the cause of the error. Any help would be appreciated



    CREATE OR REPLACE PACKAGE TEST. TEST_PKG AS

    ARRAY TYPE MyTableType IS NUMBER;
    TYPE REF_CURSOR IS REF CURSOR;

    FUNCTION str2tbl (p_str IN VARCHAR2)
    RETURN myTableType;

    PROCEDURE getContactValues (p_ParameterString IN VARCHAR2, p_Cursor1 to REF_CURSOR);

    END TEST_PKG;



    CREATE OR REPLACE PACKAGE BODY TEST. TEST_PKG AS

    FUNCTION str2tbl (p_str IN VARCHAR2)
    RETURN myTableType
    AS
    l_str LONG default p_str | ',';
    l_n NUMBER;
    myTableType l_data: = myTabletype();

    BEGIN
    LOOP

    l_n: = INSTR (l_str, ",");
    WHEN the OUTPUT (nvl(l_n,0) = 0);
    l_data.extend;
    l_data (l_data.count): = ltrim (rtrim (substr(l_str,1,l_n-1)));
    l_str: = substr (l_str, l_n + 1);
    END LOOP;
    L_data return;
    END;

    /*
    p_ParameterString is a string of the form 3, 6, 8, 9'
    */

    PROCEDURE getEmpValues (p_ParameterString IN VARCHAR2, p_Cursor1 to REF_CURSOR)
    AS


    BEGIN


    OPEN FOR P_Cursor1

    SELECT *.
    FROM EMP

    WHERE EMP_ID IN (SELECT *)
    OF THE (SELECT CAST (TEST.) (TEST_PKG.str2tbl (p_ParameterString) as myTableType) double)

    );
    END getEmpValues;

    END TEST_PKG;

    ARRAY TYPE MyTableType IS NUMBER;

    This type must be created outside of the package as a SQL type if it must be used in a select statement.

  • How can I close only 1 session, without closing all sessions, when you run several at the same time?

    I run normally 2 sessions of Firefox. Currently I have 3 sessions running. How can I close only 1 session without closing all? When I choose "File" and then "Exit", all sessions nearby.

    Firefox does not work more 'sessions', you see several windows running in the same process. IE runs each window in its ' own process and Chrome runs each tab in its' own process, but Firefox running in a single process.

    Do not use file > outputis to completely close Firefox, do not close the window you are looking at when you use this command. There was formerly a command to close this window on the file menu, but who took a few versions ago. You will need to use the X in the upper right of the window to close this window and leave the other open windows. Or you can use {Ctrl + Maj + W} close the window that is to the point (where you look).

  • You can use qualifiers when you use data binding and schema

    I am very new to the designer of the SLA and have worked only in a limited range to create fields and map these fields directly to an element in the schema.

    My xml instance looks like the below

    < person >

    < PersonAddress >

    < AddressType > home < / AddressType >

    < address > 123 Street, Sandiego, California < / address >

    < / PersonAddress >

    < PersonAddress >

    Dissemination of < AddressType > < / AddressType >

    < address > 123 Street, Sandiego, California < / address >

    < / PersonAddress >

    < PersonAddress >

    Employer of < AddressType > < / AddressType >

    < address > 123 Street, Sandiego, California < / address >

    < / PersonAddress >

    < person >

    The address information doesn't have to come in the same order as above and in some cases one of the address may not be there.

    I have an existing PDF that was imported as a work of art. It has 3 boxes to check, EmployerAddress Checkbox, checkbox mailing address, and home address box

    I wish that the boxes to be activated if the address type matching is present in the instance. In addition, there are a text box next to each check boxes for the related addresses.

    What is the best way to do this without doing an xslt transformation to transform the existing instance in another.

    Thanks is advance for your comments and answers.

    Hello

    So I think it's valid to have a PersonAddress element without an AddressType element.  The predicate is going to fine your group of data and to evaluate the expression for each PersonAddress.

    So if the AddressType is optional, you will need to protect yourself against this error, something like;

    $. PersonAddress. [if (Exists (AddressType)) then AddressType is 'Home' endif]. Address

    Is also worth AddressType Mail or postal? The error message does not match the original XML.

    Concerning

    Bruce

  • Using issue view file when you use mp3s on the internal memory and the memory microSD external

    (1) if I have folders of mp3 on the player's internal memory and on the external drive microSD memory, can I use the folder to view all folders on the 2 memorys simultaneously integrated on one list or do I have to go through the files on each memory separately.

    (1) if the answer to question 1 is Yes, then I would like to now if I can have on the internal memory and external memory records with the same name, but with different files and the player will display these folders with both files on the internal memory and the external.

    I want to know because I like to browse through the files, and if the internal memory is full, I wish I could add more files in the folders where the internal memory by making a folder with the same name on the micro sd, and I don't like to go through the files on 2 devices at the same time, just on 1 list.

    Help, please.

    Thanks in advance

    The Clip + Treaty internal and external cards in 2 separate sources, under the folder view (it is quite logical, when you think of him, and just as 2 separate cards on your computer).  And if you look at the 2 lists separately (again, just like on your computer).  When you view your files using ID3 tags, both internal and external map content is merged in 1.

    If you do not have to see 2 separate lists, you can simply keep most / all of your content on the map either internal or external (even by, if you were really dead set on it, for example get a 2 GB Clip + and then using 8 or 16 GB external with her new card).

  • Duplicate text boxes are created when you use edit in the browser

    I recently launched a site to a client which is hosted by a 3rd party host. We used in the edition browser to update his page "dishes of the day. For the most part, it went well, but twice after the changes have been made, it seems that there is a text box double sitting directly on top of the other. (see below) This happens on the mobile site as well as the desktop version.

    DuplicateText.png

    When I merge the changes into the file of Muse, it's not an extra box here. Usually, I'm able to fix it easily through Muse, but the idea was that the customer would be able to manage the daily updates on their own.

    Also, when I merge the files in Muse, he asked to merge the changes that nobody does (for example - deleting a space in the navigation bar). The customer insists on the fact that they don't touch these areas.

    Can anyone offer ideas why this is happening and what we can do to prevent it?

    Thank you!

    We found the problem and are working on the release of a patch in our next version of patch.

    The problem is after the first edition, the 2nd time that a user tries to modify the same block of text THAT BIE incorrectly analyzes the file due to some space elimination that's happened since the first publication. This problem does not seem to be widespread at this time, because it seems to depend on a having a block of text next sibling.

  • When you use google maps, the text is tiny. How can I fix?

    Google maps text is tiny (mouse type, illegible). This is a recent phenomenon, last 2 weeks and throughout the site. Tried to adjust the size of the text in Firefox preferences and None also set minimum font size. Nothing helps. Everything appears correctly when I use Safari. My OS x version 10.5.8 software is

    Reset the page zoom on pages that cause problems: view > Zoom > reset (Ctrl + 0 (zero); Cmd + 0 on Mac)

  • Submenu Spry not displayed when you use open from the computer (not published online Web site)

    Hey,.

    I am designing a website for my ICT levels A course and I am currently using CS6. The submenu will not be displayed in mode live view, or in the browser. Hover will not work on the 1st and 3rd buttons spry and when I open the webspage on a browser, and stationary currently functioning whitens and then to the assigned image, and I was also wondering how I can centralize the entire Web page including the background image.

    I'd appreciate strongly all the solutions to these problems.

    PS - It is just the base model, and that's why I have so many empty cells.

    WEBSITE HTML CODING: -.

    < ! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""

    " < html xmlns =" http://www.w3.org/1999/xhtml ">

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"

    < title > Untitled Document < /title >

    < script src = "SpryAssets/SpryMenuBar.js" type = "text/javascript" > < / script > "

    < link href = "SpryAssets/SpryMenuBarHorizontal.css" rel = "stylesheet" type = "text/css" / > "

    < style type = "text/css" >

    {body

    background-image: url(Assets/Images/Untitled-66.jpg);

    background-repeat: no-repeat;

    }

    < / style >

    < / head >

    < body >

    < table width = "1010" border = "0" align = "left" >

    < b >

    < td width = "1004" align = "center" > < table width = "1000" border = "0" align = "left" >

    < b >

    < td width = "208" height = "90" > < table >

    < td width = "763" > < table >

    < td width = "15" > < table >

    < /tr >

    < b >

    < td = '102' height > < table >

    < td align = "left" valign = "bottom" > < ul id = "MenuBar1" class = "MenuBarHorizontal" >

    < li > < a href = "#" class = "MenuBarItemSubmenu" > item 1 < /a >

    < ul >

    < li > < a href = "#" > Untitled point < /a > < /li >

    < li > < a href = "#" > Untitled point < /a > < /li >

    < /ul >

    < /li >

    < li > < a href = "#" > item 2 < /a > < /li >

    < li > < a href = "#" class = "MenuBarItemSubmenu" > point 3 < /a >

    < ul >

    < li > < a href = "#" > Untitled point < /a > < /li >

    < li > < a href = "#" > Untitled point < /a > < /li >

    < /ul >

    < /li >

    < li > < a href = "#" > point 4 < /a > < /li >

    < /ul > < table >

    < td > < table >

    < /tr >

    < b >

    < td > < table >

    < td > < table >

    < td > < table >

    < /tr >

    < b >

    < td > < table >

    < td > < table >

    < td > < table >

    < /tr >

    < b >

    < td > < table >

    < td > < table >

    < td > < table >

    < /tr >

    < b >

    < td > < table >

    < td > < table >

    < td > < table >

    < /tr >

    < b >

    < td > < table >

    < td > < table >

    < td > < table >

    < /tr >

    < b >

    < td > < table >

    < td > < table >

    < td > < table >

    < /tr >

    < b >

    < td > < table >

    < td > < table >

    < td > < table >

    < /tr >

    < b >

    < td > < table >

    < td > < table >

    < td > < table >

    < /tr >

    < b >

    < td > < table >

    < td > < table >

    < td > < table >

    < /tr >

    < b >

    < td > < table >

    < td > < table >

    < td > < table >

    < /tr >

    < / table > < table >

    < /tr >

    < /table >

    < script type = "text/javascript" >

    var MenuBar1 = new Spry.Widget.MenuBar ("MenuBar1", {imgDown: "SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});})

    < /script >

    < / body >

    < / html >

    Kind regards

    Asif Farid

    This works in all browsers (except pre - IE9).

    http://ALT-Web.com/test/resizable-BG.shtml

    Nancy O.

  • Photoshop CS4 crashes when you use shift and the move tool

    Help, please!

    Whenever I click on a layer with the tool move while holding the shift key (so I can limit the movement), photoshop crashes.  I get a message that says: "could not use the tool to travel because of a program error." And then photoshop just stop.

    Now I can use the move tool without holding SHIFT, but as soon as I hit the shift button and tried together... crash!

    What is going on?

    I was wondering if it has something to do with an updated video driver I installed yesterday.  He was not doing this before that.

    Suggestions anyone?  Please please please help!

    Have you tried to roll back the driver to see if the fault disappears?

    Alternatively, you can try to reset your preferences as described in the FAQ.

    http://forums.Adobe.com/thread/375776?TSTART=0

    You must physically delete (or rename) the preference files or, if you use the Alt, Ctrl, and shift, don't forget you get a confirmation dialog box.

    This resets all settings in Photoshop default.

    (A complete uninstall/reinstall will not affect preferences and a corrupted file may be the cause of the problem.)

  • When you use one of the themes Aero Windows 7 (x 32), PDF files appear semi-transparent.

    I can't read PDF files in my Firefox browser more. It seems that if they are semi-transparent: the fonts are blurry, and they have the same color as my theme Aero frame. I can see my photo office by police. When I save the PDF, and then open them offline, they are displayed as they should. The prints also appear normal. BTW, when I change to a classic theme, PDFs appear normal.

    Please read this section of the Add-ons site:
    Firefox 6 breaking some themes when viewing content plugin
    6 break-themes-plugin Firefox

  • Blue screen occurs when you try to install the same updates of Windows

    I tried to install the update of same windows 3 times and everytime I try a blue screen error occurs. I downloaded the files to skydrive .dmp please find the link below, would be very grateful if someone could clear this up for me:

    http://CID-8b34ffce079642d1.SkyDrive.live.com/redir.aspx?RESID=8B34FFCE079642D1! 215

    Seems to be a problem with McAfee Antivirus. I would like to start trying to update McAfee to the latest version and see if that allows you to install the updates. If this does not work, then try disabling McAfee and see if updates through. If this isn't the case, then you must remove McAfee and install another AV, such as MSE http://www.microsoft.com/Security_Essentials/ and see if updates through.

    Analysis of error checking * * use! analyze - v to obtain detailed debugging information. Error checking 24, {1904aa, fffffa601544fd58, fffffa601544f730, fffff800026a8efd} failed to load image \SystemRoot\system32\drivers\mfehidk.sys, 0n2 error Win32 * WARNING: unable to verify timestamp for mfehidk.sys * ERROR: Module load completed but symbols could not be loaded for mfehidk.sys probably caused by: Ntfs.sys (Ntfs! TxfLogPriorToWrite + bcf) follow-up: MachineOwner - 1: kd > ! analyze - v * * analysis Bugcheck * * NTFS_FILE_SYSTEM (24) If you see NtfsExceptionFilter on the stack, then the parameters 2 and 3 are the registration of exception and a context record. Do a .cxr on the 3rd parameter can KB in order to get a more informative stack trace. Arguments: Arg1: 00000000001904aa Arg2: fffffa601544fd58 Arg3: fffffa601544f730 Arg4: fffff800026a8efd debugging Details :---EXCEPTION_RECORD: fffffa601544fd58-(.exr 0xfffffa601544fd58) ExceptionAddress: fffff800026a8efd (nt! KiUnwaitThread + 0 x 0000000000000019) ExceptionCode: c0000005 (access violation) ExceptionFlags: 00000000 NumberParameters: parameter 2 [0]: 0000000000000000 parameter [1]: ffffffffffffffff attempt to read from address ffffffffffffffff CONTEXT: fffffa601544f730-rax (.cxr 0xfffffa601544f730) = fffffa601544ffb8 rbx = fffffa8005d84200 rcx = rdx eb00084630e8c933 = rsi 0000000000000100 = fffffa601544f210 rdi = 0000000000000000 rip = fffff800026a8efd rsp = fffffa601544ff90 rbp = fffffa8005d84278 r8 = 0000000000000000 r10 = 00000000000001 c 8 ffffffffffead530 = r9 r11 = 00000000000007ff r12 = 0000000000000000 r13 = 0000000000000001 r14 = 0000000000000000 r15 = c 000000000000000 iopl = 0 nv ei ng nz na po nc CS = 0010 ss = 0018 ds = 002 b're = 002 b fs = 0053 GS = 002 b efl = 00010286 nt! KiUnwaitThread + 0 x 19: fffff800'026a8efd 48099180000000 or qword ptr [rcx + 80 h], rdx ds:002 b: eb000846'30e8c9b3 =? Reset the scope by default CUSTOMER_CRASH_COUNT: 1 DEFAULT_BUCKET_ID: VISTA_DRIVER_FAULT nom_processus: TrustedInstalle CURRENT_IRQL: ch. ERROR_CODE: (NTSTATUS) 0xc0000005 - the instruction at 0 x % lx 08 referenced memory at 0 x % 08 lx. The memory could not be % s. EXCEPTION_CODE: (NTSTATUS) 0xc0000005 - the instruction at 0 x % lx 08 referenced memory at 0 x % 08 lx. The memory could not be % s. EXCEPTION_PARAMETER1: 0000000000000000 EXCEPTION_PARAMETER2: ffffffffffffffff READ_ADDRESS: GetPointerFromAddress: unable to read from fffff80002838080 ffffffffffffffff FOLLOWUP_IP: Ntfs! TxfLogPriorToWrite + bcf fffffa60'0103a1c1 483bdb cmp rbx, rbx FAULTING_IP: nt! "KiUnwaitThread + 19 fffff800'026a8efd 48099180000000 or qword ptr [rcx + 80 h], rdx BUGCHECK_STR: 0 x 24 LAST_CONTROL_TRANSFER: from fffff8000261b3cc to fffff800026a8efd STACK_TEXT: fffffa60 '1544ff90 fffff800' 0261b3cc: fffffa80 '05 d 84200 fffffa80' 05 d 84278 fffffa60 ' 1544f210 00000000' 00000000: nt! "KiUnwaitThread + 0 x 19 fffffa60 '1544ffc0 fffff800' 0268cbbe: 00000000 ' 00000000 fffffa80 ' 05dd0480 fffffa60'15450120 00020001'00000004: nt! : FNODOBFM: 'string' + 0x277f0 fffffa60 ' 15450080 fffff800' 02690613: fffffa60' 154501a 0 00000000'00000000 00000000'00000000 00000000'00000000: nt! "KiDeliverApc + 0x19e fffffa60 ' 15450120 fffff800 ' 0263ca 99: fffff880 00000000'00004000 00000000'00004000 ' 13e27760 00000001' 00000000: nt! KiApcInterrupt + 0 x 103 fffffa60 '154502b 0 fffffa60' 0103a1c1: fffffa80'05c070d0 fffffa80 '08844-70 fffff880' 13e27760 fffffa60'15450380: nt! ExReleaseFastMutex + 0 x 29 fffffa60 '154502e0 fffffa60' a 01012, 81: fffffa80 ' 08844a 70 fffffa60 '154507b 0 fffffa80' 05c070d0 fffffa80 ' 05c070d8: Ntfs! TxfLogPriorToWrite + 0xbcf fffffa60'154505 has 0 fffffa60'01015433: fffffa80 '05c070d0 fffffa80' 05ab8450 fffffa60 ' 15450700 fffffa60' 15450701: Ntfs! "NtfsCommonWrite + 0 x 2878 fffffa60 ' 15450780 fffffa60 ' 00b14e91: fffffa80 ' 05ab87a8 fffffa80 '05ab8450 fffffa80' 08844a 70 fffffa80 ' 05a4a200: Ntfs! "NtfsFsdWrite + 0x1c3 fffffa60 ' 15450840 fffffa60 ' 00b130dd: fffffa80'068d9de0 fffffa80 '08844-70 fffffa80' 068d9d00 00000000' 00000000: fltmgr! FltpLegacyProcessingAfterPreCallbacksCompleted + 0 x 211 fffffa60 '154508b 0 fffffa60' 00bb5034: fffffa80 '05ab8450 00000000' 03843f01 fffffa80 '05ab8450 fffffa80' 05ab8450: fltmgr! "" "" "FltpDispatch + 0xcd fffffa60 ' 15450910 fffffa80 ' 05ab8450: 00000000' 03843f01 fffffa80'05ab8450 fffffa80 '05ab8450 fffffa80' 05d256e0: mfehidk + 0 x 48034 fffffa60'15450918 00000000' 03843f01: fffffa80'05ab8450 fffffa80 '05ab8450 fffffa80' 05d256e0 00000000 00000000': 0xfffffa80'05ab8450 fffffa60 ' 15450920 fffffa80 ' 05ab8450: fffffa80'05ab8450 fffffa80 '05d256e0 00000000 00000000' fffffa80' 066aaa90: 0x3843f01 fffffa60 ' 15450928 fffffa80" 05ab8450: fffffa80'05d256e0 00000000 00000000' fffffa80 '066aaa90 fffffa80' 068d9de0: 0xfffffa80'05ab8450 fffffa60 ' 15450930 fffffa80 ' 05d256e0: 00000000 ' fffffa80 00000000 '066aaa90 fffffa80' 068d9de0 fffffa80 "05ab8450 : 0xfffffa80'05ab8450 fffffa60'15450938 00000000 00000000': fffffa80 ' 066aaa90 fffffa80 '068d9de0 fffffa80' 05ab8450 fffffa80 ' 05ab87a8: 0xfffffa80'05d256e0 SYMBOL_STACK_INDEX: SYMBOL_NAME 5: Ntfs! TxfLogPriorToWrite + bcf FOLLOWUP_NAME: MachineOwner MODULE_NAME: Ntfs IMAGE_NAME: Ntfs.sys DEBUG_FLR_IMAGE_TIMESTAMP: 49e022ca, STACK_COMMAND: .cxr 0xfffffa601544f730; KB FAILURE_BUCKET_ID: X64_0x24_Ntfs! TxfLogPriorToWrite + bcf BUCKET_ID: X64_0x24_Ntfs! TxfLogPriorToWrite + bcf followed: MachineOwner - 1: kd > .exr 0xfffffa601544fd58 ExceptionAddress: fffff800026a8efd (nt! KiUnwaitThread + 0 x 0000000000000019) ExceptionCode: c0000005 (access violation) ExceptionFlags: 00000000 NumberParameters: parameter 2 [0]: 0000000000000000 parameter [1]: ffffffffffffffff attempt to read from address ffffffffffffffff 1: kd > rax .cxr 0xfffffa601544f730 = fffffa601544ffb8 rbx = fffffa8005d84200 rcx = rdx eb00084630e8c933 = rsi 0000000000000100 = fffffa601544f210 rdi = 0000000000000000 rip fffff800026a8efd rsp = fffffa601544ff90 rbp = fffffa8005d84278 r8 =. = 0000000000000000 r10 = 00000000000001 c 8 ffffffffffead530 = r9 r11 = 00000000000007ff r12 = 0000000000000000 r13 = 0000000000000001 r14 = 0000000000000000 r15 = c 000000000000000 iopl = 0 nv ei ng nz na po nc CS = 0010 ss = 0018 ds = 002 b're =. 002 b fs = 0053 GS = 002 b efl = 00010286 nt! KiUnwaitThread + 0 x 19: fffff800'026a8efd 48099180000000 or qword ptr [rcx + 80 h], rdx ds:002 b: eb000846'30e8c9b3 =? "1: kd > kv * for the last value context-.thread/.cxr stack trace it resets child-SP RetAddr: Args to child: call fffffa60 '1544ff90 fffff800' sites 0261b3cc: fffffa80 '05 d 84200 fffffa80' 05 d 84278 fffffa60 ' 1544f210 00000000' 00000000: nt! "KiUnwaitThread + 0 x 19 fffffa60 '1544ffc0 fffff800' 0268cbbe: 00000000 ' 00000000 fffffa80 ' 05dd0480 fffffa60'15450120 00020001'00000004: nt! : FNODOBFM: 'string' + 0x277f0 fffffa60 ' 15450080 fffff800' 02690613: fffffa60' 154501a 0 00000000'00000000 00000000'00000000 00000000'00000000: nt! "KiDeliverApc + 0x19e fffffa60 ' 15450120 fffff800 ' 0263ca 99: fffff880 00000000'00004000 00000000'00004000 ' 13e27760 00000001' 00000000: nt! KiApcInterrupt + 0 x 103 (TrapFrame @ fffffa60'15450120) fffffa60 '154502b 0 fffffa60' 0103a1c1: fffffa80'05c070d0 fffffa80 '08844-70 fffff880' 13e27760 fffffa60'15450380: nt! ExReleaseFastMutex + 0 x 29 fffffa60 '154502e0 fffffa60' a 01012, 81: fffffa80 ' 08844a 70 fffffa60 '154507b 0 fffffa80' 05c070d0 fffffa80 ' 05c070d8: Ntfs! TxfLogPriorToWrite + 0xbcf fffffa60'154505 has 0 fffffa60'01015433: fffffa80 '05c070d0 fffffa80' 05ab8450 fffffa60 ' 15450700 fffffa60' 15450701: Ntfs! "NtfsCommonWrite + 0 x 2878 fffffa60 ' 15450780 fffffa60 ' 00b14e91: fffffa80 ' 05ab87a8 fffffa80 '05ab8450 fffffa80' 08844a 70 fffffa80 ' 05a4a200: Ntfs! "NtfsFsdWrite + 0x1c3 fffffa60 ' 15450840 fffffa60 ' 00b130dd: fffffa80'068d9de0 fffffa80 '08844-70 fffffa80' 068d9d00 00000000' 00000000: fltmgr! FltpLegacyProcessingAfterPreCallbacksCompleted + 0 x 211 fffffa60 '154508b 0 fffffa60' 00bb5034: fffffa80 '05ab8450 00000000' 03843f01 fffffa80 '05ab8450 fffffa80' 05ab8450: fltmgr! "" "" "FltpDispatch + 0xcd fffffa60 ' 15450910 fffffa80 ' 05ab8450: 00000000' 03843f01 fffffa80'05ab8450 fffffa80 '05ab8450 fffffa80' 05d256e0: mfehidk + 0 x 48034 fffffa60'15450918 00000000' 03843f01: fffffa80'05ab8450 fffffa80 '05ab8450 fffffa80' 05d256e0 00000000 00000000': 0xfffffa80'05ab8450 fffffa60 ' 15450920 fffffa80 ' 05ab8450: fffffa80'05ab8450 fffffa80 '05d256e0 00000000 00000000' fffffa80' 066aaa90: 0x3843f01 fffffa60 ' 15450928 fffffa80" 05ab8450: fffffa80'05d256e0 00000000 00000000' fffffa80 '066aaa90 fffffa80' 068d9de0: 0xfffffa80'05ab8450 fffffa60 ' 15450930 fffffa80 ' 05d256e0: 00000000 ' fffffa80 00000000 '066aaa90 fffffa80' 068d9de0 fffffa80 "05ab8450 : 0xfffffa80'05ab8450 fffffa60'15450938 00000000 00000000': fffffa80 ' 066aaa90 fffffa80 '068d9de0 fffffa80' 05ab8450 fffffa80 ' 05ab87a8: 0xfffffa80'05d256e0 1: kd > .trap fffffa60'15450120 NOTE: the trap frame does contain not all registers. Some registry values can be set to zero or incorrect. Rax = 0000000000000000 rbx = 0000000000000000 rcx = rdx fffffa800548cb90 = fffffa800548cb90 rsi = 0000000000000000 rdi = 0000000000000000 rip fffff8000263ca99 rsp = fffffa60154502b0 rbp = fffffa60154507b0 r8 =. = 0000000000000000 r9 = fffff88000841000 r10 = fffff88000186001 r11 = 0000000000000000 r12 = 0000000000000000 r13 = 0000000000000000 r14 = 0000000000000000 r15 = 0000000000000000 iopl = 0 nv up ei pl zr po na nc nt! ExReleaseFastMutex + 0 x 29: fffff800'0263 ca 99 4883c 428 Add rsp, 28 h 1: kd > kv * for the last value context-.thread/.cxr stack trace it resets child-SP RetAddr: Args to child: call fffffa60 '154502 b 0 fffffa60' sites 0103a1c1: fffffa80'05c070d0 fffffa80 '08844-70 fffff880' 13e27760 fffffa60'15450380: nt! ExReleaseFastMutex + 0 x 29 fffffa60 '154502e0 fffffa60' a 01012, 81: fffffa80 ' 08844a 70 fffffa60 '154507b 0 fffffa80' 05c070d0 fffffa80 ' 05c070d8: Ntfs! TxfLogPriorToWrite + 0xbcf fffffa60'154505 has 0 fffffa60'01015433: fffffa80 '05c070d0 fffffa80' 05ab8450 fffffa60 ' 15450700 fffffa60' 15450701: Ntfs! "NtfsCommonWrite + 0 x 2878 fffffa60 ' 15450780 fffffa60 ' 00b14e91: fffffa80 ' 05ab87a8 fffffa80 '05ab8450 fffffa80' 08844a 70 fffffa80 ' 05a4a200: Ntfs! "NtfsFsdWrite + 0x1c3 fffffa60 ' 15450840 fffffa60 ' 00b130dd: fffffa80'068d9de0 fffffa80 '08844-70 fffffa80' 068d9d00 00000000' 00000000: fltmgr! FltpLegacyProcessingAfterPreCallbacksCompleted + 0 x 211 fffffa60 '154508b 0 fffffa60' 00bb5034: fffffa80 '05ab8450 00000000' 03843f01 fffffa80 '05ab8450 fffffa80' 05ab8450: fltmgr! "" "" "FltpDispatch + 0xcd fffffa60 ' 15450910 fffffa80 ' 05ab8450: 00000000' 03843f01 fffffa80'05ab8450 fffffa80 '05ab8450 fffffa80' 05d256e0: mfehidk + 0 x 48034 fffffa60'15450918 00000000' 03843f01: fffffa80'05ab8450 fffffa80 '05ab8450 fffffa80' 05d256e0 00000000 00000000': 0xfffffa80'05ab8450 fffffa60 ' 15450920 fffffa80 ' 05ab8450: fffffa80'05ab8450 fffffa80 '05d256e0 00000000 00000000' fffffa80' 066aaa90: 0x3843f01 fffffa60 ' 15450928 fffffa80" 05ab8450: fffffa80'05d256e0 00000000 00000000' fffffa80 '066aaa90 fffffa80' 068d9de0: 0xfffffa80'05ab8450 fffffa60 ' 15450930 fffffa80 ' 05d256e0: 00000000 ' fffffa80 00000000 '066aaa90 fffffa80' 068d9de0 fffffa80 "05ab8450 : 0xfffffa80'05ab8450 fffffa60'15450938 00000000 00000000': fffffa80 ' 066aaa90 fffffa80 '068d9de0 fffffa80' 05ab8450 fffffa80 ' 05ab87a8: 0xfffffa80'05d256e0 - Mike Burr

Maybe you are looking for