Problem with the collection xmltype column - tags endangered

Hello

Apex 4.0, I have a traditional relationship with this query:
SELECT c.collection_name,
       c.seq_id,
       c.c001,
       c.c002,
       c.xmltype001.getclobval() xmltype001
FROM   apex_collections c
The xmltype001 column is set to display text (special escape characters). What I see on the page of this something column is:
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
 <env:Header/>
 <env:Body>
 <m:tag1 xmlns:m="http://cosservices/COSServices.wsdl">
 <result xmlns:typ="http://cosservices/COSServices.wsdl/types/">
 <typ:tag2>
 <typ:subdepartmentCode>AUTO</typ:subdepartmentCode>
 <typ:subdepartmentName>Automotive</typ:subdepartmentName>
 <typ:itemNumber>0000610</typ:itemNumber>
...
This column is filled by calling a web service using this package Apex web service utility, and this is the content for this column. However, when I export to CSV, what I see in the text file is the following:
  
  
    
      
        
          
          AUTO
          Automotive
     0000610
...
In case you missed it: all tags have disappeared and that the actual data remained. If I change the type of column to Column Standard in the report, the same thing is happening on the page.

My findings to date are:
-Tags are present in the column, as it is sort of the column display in text type is smart enough to display the data correctly.
-It seems that this has something to do with the character encoding, but I don't know how to fix it. I tried to use the convert() function but no luck.

Any ideas?

Thank you
Luis

Hi Luis,.

It is not something as simple that the attribute "Strip HTML" report, is it?
(ie - change no.)

Scott

Tags: Database

Similar Questions

  • Problem with the Collection

    I have problems of filling of a collection.
    I created my collection on page load of the Page 7 for help
    BEGIN
    
    apex_collection.create_or_truncate_collection
      (p_collection_name => 'PEOPLE');
    
    END;
    The user then clicks on the "Copy" button that brings them to the Page 13.
    That's where I'm trying to complete my collection, by clicking on the link add to the report of the population.
    for x in (select * from gus_people_2 where id = :P13_ID)
    loop
      apex_collection.add_member(p_collection_name => 'PEOPLE', 
        p_c001 => x.id,
        p_c002 => x.rank,
        p_c003 => x.first_name,
        p_c004 => x.surname,
        p_c005 => x.dob,
        p_c006 => x.job,
        p_c007 => x.disp_seq);
    end loop;
    Once added, the Member of the collection should appear in the report of the full Collection.
    select c001, c002, c003, c004, c005, c006, c007, 'Remove' remove
    from apex_collections
    where collection_name = 'PEOPLE'
    I use Apex 4.1 on the Oracle website

    http://Apex.Oracle.com/pls/Apex/f?p=4550:1:0:

    Workspace: GUSCRIGHTON
    Username: ANGUS. [email protected]
    Password: terminator

    Application name: EXCEL_UPDATE_TEST

    Same username and password as described above.

    It's probably something really obvious, but I can't place it today.

    Any help appreciated.

    Gus

    Hi gUS,.
    Now, run your page, it will work.
    Thank you
    Loga

    Add the collection process
    Ask = exp1
    'ADD' - removed single quotes

    Remove the collection process

    Ask = exp1

    DEL - I gave this string.
    You will add later with link or a button.

    Published by: Logaa on May 18, 2012 06:04

  • problem with the collection and refcursor

    I have the 'ServerDisconnect2' function below. It should return as 'ref_cursor' on the parameter that is a data container of deleted rows slider, Java developers insist on using this type of data/collection. I don't know how to code to return the values of ID removed as 'ref_cursor '. See commented "open pDeleteList" - sentence, it is commented as does not compile.
    CREATE OR REPLACE PACKAGE oe_ctx AS
      TYPE gIntegerTable IS TABLE OF INTEGER INDEX BY BINARY_INTEGER;
      TYPE cursor_type IS REF CURSOR;
    ....
    
      PROCEDURE ServerDisconnect2(pCasinoCode NUMERIC, pCasinoServerCode NUMERIC, pChannelServerCode CurrentLogins.ChannelServerCode%TYPE, pDeleteList OUT cursor_type) 
      IS
        vDeleteList oe_ctx.gIntegerTable;
      BEGIN
        DELETE FROM
        (
           SELECT cl.* FROM CurrentLogins cl, Accounts a
           WHERE cl.CasinoCode = pCasinoCode
           AND cl.CasinoServerCode = pCasinoServerCode
           AND cl.ChannelServerCode = pChannelServerCode
           AND cl.Code = a.code
           AND a.Type = 'lplayer'
           ORDER BY a.code
        ) RETURNING Code
          BULK COLLECT INTO vDeleteList;
          
    /*    OPEN pDeleteList FOR
          SELECT * FROM TABLE(vDeleteList);*/
          
        COMMIT;
      END ServerDisconnect2;
    Is it possible to convert the variable 'vDeleteList' in ref_cursor?
    So my only solution would be to open the ref_cursor BEFORE delete-clause with the same query delete clause has. But I'm afraid that then after opening the instant cursor after a milliseconds the deletion clause removes different lines and the procedure would be data incorrect in pDeleteList.

    Published by: CharlesRoos on August 26, 2010 06:10

    You need a collection of sql (created with CREATE TYPE...):

    I'll use the predefined collection sys.odcivarchar2list demonstation purposes:

    SQL> var cur refcursor
    
    SQL> declare
       ret_coll       sys.odcivarchar2list;
    begin
       delete from emp
         returning ename
              bulk collect into ret_coll;
    
       open :cur for select * from table (ret_coll);
    end;
    /
    PL/SQL procedure successfully completed.
    
    SQL> print
    
    COLUMN_VALUE
    -----------------------------------------------------------------------------------------------------------------------------
    SMITH
    ALLEN
    WARD
    JONES
    MARTIN
    BLAKE
    CLARK
    SCOTT
    KING
    TURNER
    ADAMS
    JAMES
    FORD
    MILLER                                                                                                                       
    
    14 rows selected.
    
  • problems with selection of XMLType column value

    I want to extract my XMLType column values. Can someone tell me why this works
    select XMLCAST
              (
                XMLQUERY
                (
                   'declare default element namespace  "urn:hl7-org:v3"; (: :)
                    declare namespace voc = "urn:hl7-org:v3/voc"; (: :)
                    $doc/ClinicalDocument/recordTarget/patientRole/patient/name/family'
                    passing CCD_DOC as "doc"
                    returning content
                )
                as VARCHAR2(4000)
              )
         from CCD
    but it does not work?
    select
        ccdid,
        extractvalue(CCD_DOC,'/recordTarget/patientRole/patient/name/given') "given",
        extractvalue(CCD_DOC,'/recordTarget/patientRole/patient/name/family') "family",
        extractvalue(CCD_DOC,'/recordTarget/patientRole/providerOranization/name') "name",
        extractvalue(CCD_DOC, 'title') as Title
    from CCD
    where ClinicalDocument is the root element?

    I don't get any errors on the other, but the three XML derived columns are null. The values are not retrieved while the values ARE retrieved using the first method.

    Thank you!

    XMLTable...

    select x.*
      from CCD,
           XMLTable
           (
             xmlNamespaces
             (
               default 'urn:hl7-org:v3',
               'urn:hl7-org:v3/voc' as "voc"
             ),
             '$doc/ClinicalDocument/recordTarget/patientRole'
             passing CCD_DOD as "doc"
             columns
             given varchar2(128) path 'patient/name/given',
             family varchar2(128) path 'patient/name/family',
             name varchar2(128) path 'providerOranization/name'
           ) x
    
  • problem with the div and CSS tags

    Hello guys

    First off I want to applogise if theres a post on this already I can be blind and do not see it and if its also a stupid question

    My problem is I crazy my website in photoshop, it sliced upward and exported all went well, I made a model and made all the editable regions

    but

    When I need to hit more that my site may contain that IMGS do not just move do gaps in the page like this

    help.jpg

    I want to Dim and the content of stretch and I add more content

    help2.jpg

    Thank you very much

    Tegan

    no comment on my Office haha rose

    It is obvious to me, what is the problem.  You used a graphical application to generate your HTML code for you.  It's OK for fast prototypes only.  As you have discovered, code HTML Photoshop is too rigid and fragile to use in a real website.

    Use Photoshop to create images only.

    DW to create your web page.

    Take a fireworks (or Photoshop) model of a basic CSS layout in DW

    Part 1-
    http://www.Adobe.com/devnet/Fireworks/articles/web_standards_layouts_pt1.html

    Part 2-
    http://www.Adobe.com/devnet/Fireworks/articles/web_standards_layouts_pt2.html

    Adobe Developer Center - introduction tutorials
    http://www.Adobe.com/devnet/Dreamweaver/CSS.html

    Nancy O.
    ALT-Web Design & Publishing
    Web | Graphics | Print | Media specialists
    http://ALT-Web.com/
    http://Twitter.com/ALTWEB
    http://ALT-Web.blogspot.com

  • Problem with the conditional tags in printed output

    I write help files for different versions of our software - version 4 and 5 using Robohelp for HTML 5.0.2

    There is a large overlap of information between the two, so I use a help file joint with marked topics that are specific to version 4 or version 5.

    I went out and then use with 'NOT v4' or "NOT v5" as the conditional tags.

    It works fine in the HTML output. However, I encountered problems with the printed output.

    Ideally, I want the help file using the option "generate the single document" because it means that the document produced, without the single output field. However, when I do, the tags conditional build fail and I get a piecemeal result.

    If I generate the document by using the option 'generate individual documents' tags conditional build work, but I get the only field I want to avoid.

    Does anyone know how to get the conditional tags to work when the option "generate the single document" is selected?

    Pierre and HKabaker - thanks for your comments.

    I think I have the answer now.

    In the properties for the SSL Print dialog, the third screen is the dialogue of section layout. I had removed some sections in the right pane (for example, the default title page, glossary, and index) because I did not want them to appear in the final printed output. It seems that without these sections present conditional compilation tags do not work correctly when the document is released by using the option 'generate a single document ".

    I started again with a "blank" printing of SSL version. Conditional constructions using the "generate a single document" appear to work fine when I leave the dialog layout intact section.

    I can even do the conditional tags build an injustice because the option "generate a single document" (after that I made the changes in the dialog layout section) seems to be that some of the chapters in the table of contents and omitting others.

  • Problem with the font size, appears as expected.

    I've been struggling with this for a few weeks now, but surely must is close to solved it. It's just a problem with the size of the police to just that one page.

    http://www.kgngroup.NET/logos_and_packaging.html

    I want the body of the text to be 10px, but after two weeks, played with all conceivable means, change the font size of the body in CSS and the document itself. I have the consultation in Safari, but others on Windows machines tell me it is out of whack.

    My main problem is that I can change the size of the font in the extreme, but he always appears as the same size in the browser (about 12px.) I don't know can be changed because I can change the wording and change online. It's just a problem with the font size. Oh, and in the third column, the one on the right in Dreamweaver, the font looks like it of tiny, can't even read, but in the browser, as the style11 is applied, all three columns search size equal.

    Don't know where to go from here. I want to just that the police of the up to 10 pixels.

    TIA,

    Ken

    I guess this is a follow-up of your thread earlier

    http://forums.Adobe.com/message/3627681

    What would really help in the diagnosis of the subjects such as this is to install the Firebug add-on for Firefox (as suggested in the previous thread).

    Firebug shows you visually what CSS rules apply to any element you click on the screen.

    In this case, you have a confusion of the CSS cascading over each other font sizes and who is confused by the mix of units without real reason. .style11 is unnecessarily applied to many people

    Tags. Remove these classes and to remove the rule.

    for example

    The tiny font in the RHS column is the first affected by

    {.style8}
    font size: 0.5em;
    }

    affecting thethen by

    .style11 {size are: 75 %}}

    affecting the

    tag.

    Result = tiny text (about 2px).

    In these cases of mass confusion, my approach is to remove all the sizing of fonts in the CSS and start over.

    Avoid %. Use px.

    Apply font sizing rules logically from thelabel facing downwards.

    That gives you a solid basis without strange effects.

  • Clear the cache in connection with the collection

    Hello

    I create a report by using the .one problem collection has to happen when I hide any column in the report.
    Enter the value in the report and press Add button line to add the new line to insert the new record, and the previous value is to clear the cache.

    How can I remove this problem.

    and another question

    could you send me a link or sample report where the collection is used with multiple cascading select list more then select three list.



    Thank you
    Maury

    Maury,

    Have you written a PL/SQL process that updates the data in the collection, whenever any button is clicked? A collection is not updated by the SUBMIT button or add a LINE unless you write the code to make - table normal function tabular forms can use the MRU deals, but it can not be used when you use a collection, so you must write code to update the collection every time that the page is sent.

    I sent a link to an application that uses three LOVs cascading - as I said in my other thread, this is not based on a collection, but the LOV is nothing to do with the collections. In addition, even if it is based on 3 lists, you can extend that to 4, or more, lists easily enough as it is still used for each list after the first principle.

    Andy

  • V13 Firefox is not consistent with the WC3 CSS columns

    I use to be able to see multiple columns in v12 but is no longer in v13. Chrome and Opera display several columns but not FF v13.

    Hello, the Date of issue for firefox 13 only could say that the support for the fill column property has been added - you give a link to a page where the problems occur?

    Edit: apparently there is a problem with the height of a block of several column property. that will be solved by a release of the correction of a bug in firefox 13, which will be deployed in the coming days.

  • Satellite C660D - a problem with the cooling system has been detected

    My laptop is a * Toshiba Satellite C660D-11th * and I have a message that keeps coming up every once in a while 'alert system' head and reads as follows: "WARNING: a problem with the cooling system has been detected." (Next line) Please, turn off computer immediately and return it for service. »

    I had this warning for the coming weeks and it tolerated, but it worsened and annoyed me for the last time. I can hear the fan and the computer is not over heating (the CPUCool freeware tool detects a 51º CPU temprature C). No further questions arise as the computer slows down, it is right in the path of what I do, like typing right now.

    I tried to solve the problem by changing the "Power Options" in the control panel of Windows 7 'High Performance', and then selected under the 'battery' both 'Sector' columns, 'Never' for the parameter "put the computer to sleep. It seems to work, and no error message has occurred since then. However, this is not a solution...

    Please help quickly, this prevents me from working and even other things now.

    Thank you

    Hello

    Usually, this message would appear if something is not wrong with the cooling system. But I read here in the forum that maybe it's a bug of software and after new system recovery this message should no longer appear.

    But if you notice some upper temperature or abnormal noises, then I recommend to check this with a service technician

  • Strange problems with the database

    Hello

    I just got my Fuze and am very happy with it; However, I am having a very strange problem with the database. I have a 16 GB sdhc card that I use with the "rocket" and there are about 4 songs on the card that will not play and have no information charge tag. Their tags appear in the tag browser (not the in the track information screen) as just an empty rectangle. Under the track information screen, sizes are listed as ~ 4000 mb. The songs will not play and I can not jump in front of one of these songs once they were loaded.

    At first, I suspected some kind of corruption of tag, so I set out that night to track down the problem. I removed the 16 GB card and reset the player. Then, I loaded one of the corrupt in the internal memory of the player. The track has been scanned and played correctly. Then, I removed the track of the internal memory and it loaded on another SDHC card. Yet once, everything worked correctly, so I knew that the card I was using was a kind of system files or physical problem. I returned the original 16 GB sdhc card in the reader and checked that the file was still unplayable, and then I plugged the "rocket" to my computer. I transferred the unplayable file on my computer and compared (with md5sum) to the original file, thinking that if there was the file system or physical corruption the copy of the map would be damaged. However, the files were equivalent.

    To make things even more interesting, I also have problems with the registration of the kind. I have some files tagged Genres such as 'Classic' and 'Rock '. In the list of the genre, I see this:

    C

    CL

    CLA

    CLAS

    Class

    Classic

    Classic

    Classica

    Classic

    Rock

    So, there is corruption on the kind of 'Classic' but not the kind of "Rock". Each of the substrings of 'Classic' contains only a few titles, with most of the other titles listed where they should be. I checked that the tracks are labeled correctly and in exactly the same way as the other tracks that do not have this problem.

    I am at a total loss about what to do, and I'd really appreciate any advice or suggestions. I use the current firmware, 2.03.31a and the songs in question are in Ogg Vorbis format.

    MM

    Thanks for your replies.

    I managed to find what may be the problem. Tracks that received corrupt tags had the names of total path with more than 256 characters. It seems that the driver internal fat32 the rocket uses vomits all over the place when the path name is too long. Before the "rocket", I got an iPod running rockbox tags with the same directory structure that I have on the "rocket", so I don't think that this restriction on the length of the path name is a limitation or requirement of the fat32 file system. Reduce the path corrected the problem with the files being unreadable.

    However, the problem with foires genres the rest. Looking at the files show that corruption, they all have a little information in tags. Most of the information is contained in the hashes I have files that identify them via musicbrainz. The limit on the total number of characters in the tags of the track includes the "rocket" label is not read or use?

    MM

  • problem with the installation of window package

    Impossible to install, i-tunes, quick time and I downloaded Security software. Error message indicates a problem with the windows package install. On Vista, this is a fairly new problem
    Thanks in advance
    Jack

    Hi Jack8053,

    Thank you for visiting Microsoft Answers.

    · The error message you get when you try to install a software, what exactly?

    · Remember to make changes on the computer before this problem?

    It seems to be that some of the files windows install is corrupt. I have a few steps that might help you to solve the problem:

    Method 1

    Make sure that the Windows Installer service is running.
    1 open run and type services.msc, and then press ENTER.

    2. in the services window, locate the Windows Installer service in the services list.
    3. check that the status is "started". If the condition column is empty,
    Right-click Windows Installer, and then select start.
    4. change the Startup Type to automatic (default is Manual), then
    Restart the computer.

    Method 2

    Run a scan of the file system [SFC] checker on the computer that will replace missing or corrupt files.

    To do this, follow the steps below:

    1. click on the Start button.

    2. on the Start Menu, click all programs followed by accessories.

    3. in the menu accessories, right-click on command line option.

    4. in the drop-down menu that appears, click the "Run as Administrator" option.

    5. If you have the User Account Control (UAC) enabled, you will be asked permission before the opening of the command line. You simply press the button continue if you are the administrator or insert password etc.

    6. in the command prompt window, type: sfc/scannow then press ENTER.

    7. a message is displayed indicating that "the system scan will start.

    8. be patient because the analysis may take some time.

    9. If all the files need replace SFC will replace them. You may be asked to insert your Vista DVD for this process to continue.

    10. If all goes although you should, after the analysis, see the following message "Windows resource protection not found any breach of integrity.

    11. once the scan is finished, close the command prompt window, restart the computer and check.

    For more information, see the link below:

    How to repair the operating system and how to restore the configuration of the operating system to an earlier point in time in Windows Vista

    http://support.Microsoft.com/kb/936212

    Method 3
    1. If it does not help, try to uninstall Windows install using the Windows Installer Cleanup utility:

    Description of the Windows Installer Cleanup utility

    http://support.Microsoft.com/kb/290301

    2 restart the computer.

    3. download and install the latest version of Windows Installer by downloading from the link given below:

    Windows install 4.5 Redistributable

    http://www.Microsoft.com/downloads/details.aspx?FamilyId=5A58B56F-60B6-4412-95B9-54D056D6F9F4&displaylang=en

    4. try to install the program and check that it works.

    Hope the helps of information. Please post back and we do know.
    Concerning
    Joel S
    Microsoft Answers Support Engineer.

  • Problems with the Windows 7 updates

    I have problems with the updates of Windows 7.

    The show just download but stay at 0%, even after a number of hours of updates.

    Looks like I have had the problem for a while as I click on the button to download when he says that they are available, but they were not the installation. Since April - the highest numbered download was KBS3149090.

    I tried a couple things from these forums, but they do not work or do not install it.

    I downloaded wu10.diagcab but it does not return an error of 0 x 80070002

    You are looking for takes this mistake me https://support.microsoft.com/en-us/kb/910336 that says stop the update, remove a certain number of files and turn it back to the.      

    He says then try the System Update Readiness tool so I download and install this KB947821 , which seems to settle.

    I try to install the updates but nothings happening - don't know what else to try.

    Peter

    Windows Update process: July 2016

    I've seen this many lately.  This is what works for me and I did it on a large number of computers in the last 2 weeks.

    1. Change Windows Update settings to NEVER.

    2. Type services in the text box that appears when you click on the globe to start

    3. Select and open the services window

    4. Find and right-click on Windows Update (service), choose stop

    5. Close the Windows Update window.   If she will not close, start the Task Manager (right click on the taskbar) and end of the task.

    6. Now go to: http://wu.krelay.de/en/2016-07.htm

    7. Download 5 all updates are listed in a folder on your desktop.  Choose the correct column for your computer.

    8. Double-click on and start each one, one at a time.  Don't be surprised if one or more respond with already installed.  It may take a while to process.  This is probably one or more of them will install.

    9. You should not restart after each one ends, if there is more than one installed.

    10. Restart and wait for the Windows Update process to complete and automatically reboot your computer.

    11. Open Manager tasks again and wait until you see the percentage within the reach of the bottom and stay below 10%

    12. Now start Windows Update

      The Windows Update process happens much faster that it would otherwise have.

  • There is a problem with the Microsoft Teredo Tunneling adapter driver. The driver must be reinstalled.

    I notice that I need to solve problems for my computer.  The message said: there is a problem with the Microsoft Teredo Tunneling adapter driver. The driver must be installed.  One of the options is to reinstall the driver.  I tried, but it did not.  What is this adapter, and how should I do if the error message goes away?

    There is a problem with the Microsoft Teredo Tunneling adapter driver. The driver must be reinstalled.
    The device information
    Name: Microsoft Teredo Tunneling adapter
    ID: ROOT\ * TEREDO\0000
    Error code: 10
    Reinstall the device driver
    Completed
    There is a problem with the Microsoft Teredo Tunneling adapter driver. Reinstall the driver may resolve this issue.
    Problem with the PnP devices
    Detected
    There are problems with some devices PnP. Windows will take additional steps to continue troubleshooting these devices.
    It is a known problem if you have Zone alarm installed.  If you have installed remove it at least to check

    To disable Teredo tunneling 6to4 interface open an elevated command prompt and type

    netsh interface set terredo disabled state.
    To re - install
    1. Click on start.
    2. Type Device Manager in the start search box, and then open it.
    3. Click the Action tab on top and click Add legacy hardware
      then click next and next again, he will then scan and find nothing then click on the screen after that.
      Wait a minute and you will see a list of devices appear, scroll and select network adapters and click Next, then in the left column choose Microsoft then in the right hand column scroll down and choose Microsoft Teredo Tunneling adapter, and then click Next and it will install it.
      To check simply do as it is set to show hidden devices right click on the Device Manager right click view, then show hidden devices.
  • Problem with the video on the computer.

    Hi, my computer suddenly become glitchy and started screen tearing up about 20 minutes ago.

    I did a survey and found a dmp file that I believe is associated with the problem.

    This problem has never happened before, but I want to fix any damage in the future.

    Online Crash Analysis snapshot, presented by the OSR Open Systems Resources, Inc.. Primary analysis

    Crash Dump Analysis provided by OSR Open Systems Resources, Inc. (http://www.osr.com)
    Online Crash Dump Analysis Service
    See http://www.osronline.com for more information
    Windows 7 Kernel Version 7601 (Service Pack 1) MP (8 procs) Free x64
    Product: WinNt, suite: TerminalServer SingleUserTS Personal
    Built by: 7601.18409.amd64fre.win7sp1_gdr.140303-2144
    Machine Name:
    Kernel base = 0xfffff800`03063000 PsLoadedModuleList = 0xfffff800`032a6890
    Debug session time: Fri Sep 19 22:41:44.936 2014 (UTC - 4:00)
    System Uptime: 1 days 0:59:18.919
    *******************************************************************************
    *                                                                             *
    *                        Bugcheck Analysis                                    *
    *                                                                             *
    *******************************************************************************
    
    VIDEO_TDR_TIMEOUT_DETECTED (117)
    The display driver failed to respond in timely fashion.
    (This code can never be used for real bugcheck).
    Arguments:
    Arg1: fffffa8016a72010, Optional pointer to internal TDR recovery context (TDR_RECOVERY_CONTEXT).
    Arg2: fffff8800ff9e5c8, The pointer into responsible device driver module (e.g owner tag).
    Arg3: 0000000000000000, The secondary driver specific bucketing key.
    Arg4: 0000000000000000, Optional internal context dependent data.
    
    Debugging Details:
    ------------------
    
    TRIAGER: Could not open triage file : e:\dump_analysis\program\triage\modclass.ini, error 2
    
    FAULTING_IP:
    nvlddmkm+1575c8
    fffff880`0ff9e5c8 ??              ???
    
    DEFAULT_BUCKET_ID:  GRAPHICS_DRIVER_TDR_TIMEOUT
    
    TAG_NOT_DEFINED_202b:  *** Unknown TAG in analysis list 202b
    
    BUGCHECK_STR:  0x117
    
    PROCESS_NAME:  System
    
    CURRENT_IRQL:  0
    
    STACK_TEXT:
    fffff880`0272e4f0 fffff880`0fd5a72b : fffffa80`16a72010 fffff880`0fda709b fffffa80`16a72010 fffff880`0fd28843 : watchdog!WdDbgReportRecreate+0xa3
    fffff880`0272ea10 fffff880`0fd5b3f0 : fffff8a0`11e66e90 fffff8a0`11e66e90 00000000`00000080 fffffa80`16a72010 : dxgkrnl!TdrUpdateDbgReport+0xcb
    fffff880`0272ea60 fffff880`0fd2f6b3 : 00000000`00000001 fffffa80`11fc9000 00000000`00000000 fffff880`0000009f : dxgkrnl!TdrCollectDbgInfoStage2+0x220
    fffff880`0272ea90 fffff880`0fd5bf43 : fffffa80`1191ea58 ffffffff`fffe7960 fffffa80`16a72010 00000000`00000000 : dxgkrnl!DXGADAPTER::Reset+0xef
    fffff880`0272eb40 fffff880`0f03803d : fffffa80`12608d50 00000000`00000080 00000000`00000000 fffffa80`1191e410 : dxgkrnl!TdrResetFromTimeout+0x23
    fffff880`0272ebc0 fffff800`0337473a : fffffa80`120a3ca0 fffffa80`1617cb50 fffffa80`0ca8c5f0 fffff880`0272ecd8 : dxgmms1!VidSchiWorkerThread+0x101
    fffff880`0272ec00 fffff800`030c98e6 : fffff880`03102180 fffffa80`1617cb50 fffff880`0310d0c0 fffff880`010b17e7 : nt!PspSystemThreadStartup+0x5a
    fffff880`0272ec40 00000000`00000000 : fffff880`0272f000 fffff880`02729000 fffff880`0781fd40 00000000`00000000 : nt!KxStartSystemThread+0x16
    
    STACK_COMMAND:  .bugcheck ; kb
    
    FOLLOWUP_IP:
    nvlddmkm+1575c8
    fffff880`0ff9e5c8 ??              ???
    
    SYMBOL_NAME:  nvlddmkm+1575c8
    
    FOLLOWUP_NAME:  MachineOwner
    
    MODULE_NAME: nvlddmkm
    
    IMAGE_NAME:  nvlddmkm.sys
    
    DEBUG_FLR_IMAGE_TIMESTAMP:  5414a236
    
    FAILURE_BUCKET_ID:  X64_0x117_IMAGE_nvlddmkm.sys
    
    BUCKET_ID:  X64_0x117_IMAGE_nvlddmkm.sys
    
    Followup: MachineOwner
    ---------
    

    This free analysis is provided by the OSR Open Systems Resources, Inc..
    You want a better understanding of the analysis of crash dump? Discover our kernel Crash Dump Analysis and Windows debugging

    Hi Summet

    Problem with the NVIDIA graphics driver

    Please visit the NVIDIA site and install the video driver

    Choose your graphic card model and download it and install it, I m Sure/Hope that will solve the problem

Maybe you are looking for