Quantcast
Channel: Toad for Oracle Forum - Recent Threads
Viewing all 4385 articles
Browse latest View live

RE: Usage of SQL%ROWCOUNT

$
0
0

It depends on how many rows were processed by the last DML (in your case a query) processed.  In your test, I would expect SQL%ROWCOUNT to return 1 since the select count returns 1 row (the count), but they are not reporting the same thing.  However, you are also calling it inside the fnd_file procedure - and if that procedur runs a query, then it will most likely return that result, instead of what you are running.  My suggestion would be make an anonymous block out of that section of code and replace all the fnd_file calls with dbms_output.put_line statements, and run it like that.  This way you are not making any extra calls that are out of your control.  Then you can narrow it down from there.


RE: Usage of SQL%ROWCOUNT

$
0
0

btw...In looking at your code, I'm not sure why you would want to call SQL%ROWCOUNT anyway, because all your doing is making sure there is at least one record that would return in your count variable.  It looks like if you find a row, then you update it with a status of Valid, otherwise, it's invalid.  Not sure why you would not just trust the count in that case, and forgo SQL%ROWCOUNT altogether.  Your already validating that the record is valid or not based on your count query.  You generally would only use that when you want to valid the number of rows you updated, or how many records were returned by a cursor, or something like that.

Usage of SQL%ROWCOUNT

$
0
0

Hi Experts,

I have a doubt on usage of SQL%ROWCOUNT. I have a below package created.

Here, when I try to print SQL%ROWCOUNT, it is showing value as 1 and if I print the variable, it is showing as 0 (zero) (Consider the case that I have really one valid record in base table which satisfies the condition). So I am not sure, what to be used :(

Also, can any one throw some light on how SQL%ROWCOUNT works in my case?

Thanks in Advance,

Srivathsava

CREATE OR REPLACE PACKAGE BODY APPS.BC_UPDT_IBAN_DETAILS_PKG
AS
PROCEDURE validate_supplier
    IS
CURSOR c_supp_search
    IS
        SELECT  ORG_ID,
                BANK_ACCOUNT_NAME,
                BANK_ACCOUNT_NUM,
                VENDOR_NAME,
                COUNTRY,
                PARTY_SITE_NAME
        FROM     BC_UPDT_IBAN_DTLS_STG
        WHERE   process_status = 'NEW';
    BEGIN
        fnd_file.put_line(fnd_file.LOG,'Start of VALIDATE_SUPPLIER.......');
        FOR c_supp_search_rec IN c_supp_search LOOP
                                    BEGIN
                                        fnd_file.put_line(fnd_file.LOG,'Validating the Account Details: '
                                                        ||c_supp_search_rec.BANK_ACCOUNT_NAME
                                                        ||' '||c_supp_search_rec.bank_account_num
||'. For Party Site: '
||c_supp_search_rec.PARTY_SITE_NAME
                                                        ||' '||c_supp_search_rec.ORG_ID);
                                        SELECT     COUNT(1)
                                        INTO     l_cnt_accnt_num
                                        FROM     AP_SUPPLIERS APS,
                                                AP_SUPPLIER_SITES_ALL ASS,
                                                IBY_EXTERNAL_PAYEES_ALL IEP,
                                                IBY_PMT_INSTR_USES_ALL IPI,
                                                IBY_EXT_BANK_ACCOUNTS IEB,
                                                HZ_PARTIES HZPBANK,
                                                HZ_PARTIES HZPBRANCH,
                                                HZ_ORGANIZATION_PROFILES HOPBANK,
                                                HR_ORGANIZATION_UNITS HOU
                                        WHERE     ASS.VENDOR_ID = APS.VENDOR_ID
                                        AND     IEP.PAYEE_PARTY_ID = APS.PARTY_ID
                                        AND     IEP.SUPPLIER_SITE_ID =ASS.VENDOR_SITE_ID
                                        AND     IEP.EXT_PAYEE_ID =IPI.EXT_PMT_PARTY_ID
                                        AND     IPI.INSTRUMENT_ID =IEB.EXT_BANK_ACCOUNT_ID
                                        AND     IEB.BANK_ID = HZPBANK.PARTY_ID
                                        AND     IEB.BRANCH_ID =HZPBRANCH.PARTY_ID
                                        AND     HZPBANK.PARTY_ID =HOPBANK.PARTY_ID
                                        AND     IEP.ORG_ID = HOU.ORGANIZATION_ID
                                        AND     ipi.instrument_type ='BANKACCOUNT'
                                        AND     ipi.payment_function ='PAYABLES_DISB'
                                        AND     NVL (ass.inactive_date,SYSDATE + 1) > SYSDATE
                                        AND     NVL (iep.inactive_date,SYSDATE + 1) > SYSDATE
                                        AND     NVL (ipi.end_date, SYSDATE + 1) >SYSDATE
                                        AND     iep.org_type IS NOT NULL
                                        AND     iep.supplier_site_id IS NOT NULL
                                        AND     HOU.organization_id =c_supp_search_rec.ORG_ID
                                        AND     APS.VENDOR_NAME =c_supp_search_rec.vendor_name
                                        AND     ASS.VENDOR_SITE_CODE =c_supp_search_rec.PARTY_SITE_NAME
                                        AND     IEB.BANK_ACCOUNT_NUM =c_supp_search_rec.bank_account_num
                                        AND     IEB.BANK_ACCOUNT_NAME =c_supp_search_rec.BANK_ACCOUNT_NAME
                                        AND     NVL(IEB.end_date,SYSDATE+1) >= SYSDATE;
                                        
                                        fnd_file.put_line(fnd_file.LOG,'    Total Found: '||SQL%ROWCOUNT);
                                        fnd_file.put_line(fnd_file.LOG,'    Total Found using the variable: '||l_cnt_accnt_num);
                                        l_cnt_accnt_num:=SQL%ROWCOUNT;
                                        fnd_file.put_line(fnd_file.LOG,'    After assigning to the variable: '||l_cnt_accnt_num);
                                        fnd_file.put_line(fnd_file.LOG,'    Total Found usign ROWCOUNT: '||SQL%ROWCOUNT);
                                        IF (l_cnt_accnt_num > 0) THEN
                                            fnd_file.put_line(fnd_file.LOG,'    Updating the staging table for valid account');
                                            UPDATE    BC_UPDT_IBAN_DTLS_STG
                                            SET     PROCESS_STATUS = 'VALID'
                                            WHERE   vendor_name = c_supp_search_rec.vendor_name
                                            AND     PARTY_SITE_NAME = c_supp_search_rec.PARTY_SITE_NAME
                                            AND     bank_account_num = c_supp_search_rec.bank_account_num
                                            AND        bank_account_name=c_supp_search_rec.bank_account_name
                                            AND        ORG_ID=c_supp_search_rec.ORG_ID
                                            AND        COUNTRY=c_supp_search_rec.COUNTRY;
                                            COMMIT;
                                        ELSE
                                            /*fnd_file.put_line(fnd_file.LOG,'Updating the staging table for invalid account');
                                            fnd_file.put_line(fnd_file.LOG,'Account Name: '||c_supp_search_rec.bank_account_name);
                                            fnd_file.put_line(fnd_file.LOG,'Account Number: '||c_supp_search_rec.bank_account_num);
                                            fnd_file.put_line(fnd_file.LOG,'Vendor Name: '||c_supp_search_rec.vendor_name);
                                            fnd_file.put_line(fnd_file.LOG,'Site: '||c_supp_search_rec.PARTY_SITE_NAME);*/
                                            UPDATE    BC_UPDT_IBAN_DTLS_STG
                                            SET     PROCESS_STATUS = 'INVALID',
                                                    ERROR_MESSAGE = 'Invalid Account Details'
                                            WHERE   vendor_name = c_supp_search_rec.vendor_name
                                            AND     PARTY_SITE_NAME = c_supp_search_rec.PARTY_SITE_NAME
                                            AND     bank_account_num = c_supp_search_rec.bank_account_num
                                            AND        bank_account_name=c_supp_search_rec.bank_account_name
                                            AND        ORG_ID=c_supp_search_rec.ORG_ID
                                            AND        COUNTRY=c_supp_search_rec.COUNTRY;
                                            
                                            --fnd_file.put_line(fnd_file.LOG,'Total Updated: '||SQL%ROWCOUNT);
                                            COMMIT;
                                        END IF;
                                    EXCEPTION
                                        WHEN OTHERS THEN
                                            l_message :=SQLERRM;
                                                        
                                            UPDATE  BC_UPDT_IBAN_DTLS_STG
                                            SET     PROCESS_STATUS = 'INVALID',
                                                    ERROR_MESSAGE = l_message
                                            WHERE   vendor_name = c_supp_search_rec.vendor_name
                                            AND     PARTY_SITE_NAME = c_supp_search_rec.PARTY_SITE_NAME
                                            AND     bank_account_num = c_supp_search_rec.bank_account_num
                                            AND     bank_account_name=c_supp_search_rec.bank_account_name
                                            AND     ORG_ID=c_supp_search_rec.ORG_ID
                                            AND     COUNTRY=c_supp_search_rec.COUNTRY;
                                            
                                            COMMIT;
                                            
                                            --l_validation :='Account Number Validation';
                                            l_message :='    Undefined exception when Validating the Account Number: '
                                                        ||c_supp_search_rec.bank_account_num
                                                        ||'. Account Name: '
                                                        ||c_supp_search_rec.bank_account_name 
                                                        ||'. The Error Message is: '
                                                        || SQLERRM;
                                            --l_error_code := NULL;
                                            
                                            fnd_file.put_line(fnd_file.LOG,l_message);
                                    END;
        END LOOP;
        fnd_file.put_line(fnd_file.LOG,'End of VALIDATE_SUPPLIER.......');
EXCEPTION
        WHEN OTHERS THEN
            --l_validation := NULL;
            --l_error_code := NULL;
            l_message :='Undefined Exception while VALIDATE_SUPPLIER Procedure. The Error Message is: .'
                        || SQLERRM;
                
    END validate_supplier;
END BC_UPDT_IBAN_DETAILS_PKG;

RE: AV on Schema Compare

$
0
0

Yes, I was able to reproduce, but I haven't tested in beta yet.

I send an email to you offline.

AV on Schema Compare

$
0
0

EurekaLog 7.2.6.0  

Application:
--------------------------------------------------------------
  1.1 Start Date      : Mon, 25 Apr 2016 20:36:43 +0200
  1.2 Name/Description: Toad.exe - (Toad™ for Oracle®)
  1.3 Version Number  : 12.8.0.49
  1.4 Parameters      :
  1.6 Up Time         : 13 hour(s), 16 minute(s), 50 second(s)

Exception:
-----------------------------------------------------------------------------------------------------------------------
  2.1 Date       : Tue, 26 Apr 2016 09:53:33 +0200
  2.2 Address    : 00000000089B14A6
  2.3 Module Name: Toad.exe - (Toad™ for Oracle®)
  2.5 Type       : EAccessViolation
  2.6 Message    : Access violation at address 00000000089B14A6 in module 'Toad.exe'. Read of address 00000000000000B0.
  2.7 ID         : 7F8B0000
  2.8 Count      : 1
  2.11 Sent      : 0

User:
------------------
  3.2 Name : urban
  3.3 Email:

Active Controls:
------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  4.1 Form Class   : TfPSPad.UnicodeClass
  4.2 Form Text    : PSPad - [C:\!!svn\_DERSPOT.2016.P135.IRIS.Integracio\SITE.SQL\verziok\VER.TESZT.20160425\01_DATABASE\02_DB_DELTA\DER9ADM\install_patch_03der.sql *]
  4.3 Control Class:
  4.4 Control Text :

Computer:
-----------------------------------------------------------------------
  5.2 Total Memory    : 8500920320 (7,92 Gb)
  5.3 Free Memory     : 3803111424 (3,54 Gb)
  5.4 Total Disk      : 255953203200 (238,37 Gb)
  5.5 Free Disk       : 103641853952 (96,52 Gb)
  5.6 System Up Time  : 1 day(s), 1 hour(s), 29 minute(s), 11 second(s)
  5.7 Processor       : Intel(R) Core(TM) i7-4710MQ CPU @ 2.50GHz
  5.12 Virtual Machine:

Operating System:
-------------------------------------------
  6.1 Type   : Microsoft Windows 7 (64 bit)
  6.2 Build #: 7601 (6.1.7601.18015)

Steps to reproduce:
------------
  8.1 Text:


Call Stack Information:
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|Methods |Details|Stack           |Address         |Module        |Offset          |Unit             |Class              |Procedure/Method                     |Line      |
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|*Exception Thread: ID=4384; Parent=0; Priority=-2                                                                                                                        |
|Class=; Name=MAIN                                                                                                                                                        |
|DeadLock=0; Wait Chain=                                                                                                                                                  |
|Comment=                                                                                                                                                                 |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|7FFFFFFE|03     |0000000000000000|00000000089B14A6|Toad.exe      |00000000048214A6|arExecutableItem |TarExecutableItem  |DoWorkerItemAfterExecute             |          |
|00000040|03     |000000000042F3F8|00000000064F466B|Toad.exe      |000000000236466B|arCompareSchemas |TarCompareSchemas  |DoWorkerItemAfterExecute             |          |
|00000040|03     |000000000042F428|00000000089B1565|Toad.exe      |0000000004821565|arExecutableItem |TarExecutableItem  |Execute                              |          |
|00000040|03     |000000000042F498|00000000089AECCC|Toad.exe      |000000000481ECCC|arAction         |TarAction          |Execute                              |          |
|00000040|03     |000000000042F5A8|00000000089A4BFB|Toad.exe      |0000000004814BFB|frmToad          |TToadForm          |RunAction                            |          |
|00000040|03     |000000000042F5E8|00000000089A4B28|Toad.exe      |0000000004814B28|frmToad          |TToadForm          |DoRunAction                          |          |
|00000040|03     |000000000042F648|00000000089A49FD|Toad.exe      |00000000048149FD|frmToad          |TToadForm          |SetResultType                        |          |
|00000040|03     |000000000042F678|00000000075E4902|Toad.exe      |0000000003454902|frmCompareSchemas|TCompareSchemasForm|tbRunClick                           |          |
|00000040|04     |000000000042F6C8|0000000004470304|Toad.exe      |00000000002E0304|Vcl.Controls     |TControl           |Click                                |7320[9]   |
|00000040|04     |000000000042F708|0000000004515044|Toad.exe      |0000000000385044|Vcl.ComCtrls     |TToolButton        |Click                                |21225[1]  |
|00000040|04     |000000000042F738|0000000004470A27|Toad.exe      |00000000002E0A27|Vcl.Controls     |TControl           |WMLButtonUp                          |7459[7]   |
|00000040|04     |000000000042F7A8|000000000419D1AE|Toad.exe      |000000000000D1AE|System           |TObject            |Dispatch                             |13705[10] |
|00000040|04     |000000000042F7F8|000000000446FA43|Toad.exe      |00000000002DFA43|Vcl.Controls     |TControl           |WndProc                              |7204[91]  |
|00000040|04     |000000000042F968|000000000446F51D|Toad.exe      |00000000002DF51D|Vcl.Controls     |TControl           |Perform                              |6982[10]  |
|00000040|04     |000000000042F9C8|0000000004476404|Toad.exe      |00000000002E6404|Vcl.Controls     |TWinControl        |IsControlMouseMsg                    |9759[15]  |
|00000040|04     |000000000042FA48|0000000004476C1C|Toad.exe      |00000000002E6C1C|Vcl.Controls     |TWinControl        |WndProc                              |9927[103] |
|00000040|04     |000000000042FB18|000000000451C47C|Toad.exe      |000000000038C47C|Vcl.ComCtrls     |TToolBar           |WndProc                              |24078[104]|
|00000040|04     |000000000042FBB8|0000000004476097|Toad.exe      |00000000002E6097|Vcl.Controls     |TWinControl        |MainWndProc                          |9689[3]   |
|00000040|04     |000000000042FC08|000000000426C754|Toad.exe      |00000000000DC754|System.Classes   |                   |StdWndProc                           |13895[8]  |
|00000040|03     |000000000042FC58|0000000077819C0A|user32.dll    |0000000000019C0A|USER32           |                   | (possible TranslateMessageEx+662)   |          |
|00000040|03     |000000000042FD18|0000000077819925|user32.dll    |0000000000019925|USER32           |                   | (possible TranslateMessage+485)     |          |
|00000040|04     |000000000042FDA8|00000000045F906F|Toad.exe      |000000000046906F|Vcl.Forms        |TApplication       |ProcessMessage                       |10164[23] |
|00000040|04     |000000000042FE28|00000000045F90E3|Toad.exe      |00000000004690E3|Vcl.Forms        |TApplication       |HandleMessage                        |10194[1]  |
|00000040|04     |000000000042FE98|00000000045F95DF|Toad.exe      |00000000004695DF|Vcl.Forms        |TApplication       |Run                                  |10332[26] |
|00000040|03     |000000000042FED8|0000000009341066|Toad.exe      |00000000051B1066|Toad             |                   |Initialization                       |          |
|00000040|03     |000000000042FF58|00000000776F59BB|kernel32.dll  |00000000000159BB|kernel32         |                   | (possible VirtualQuery+4743)        |          |
|00000040|03     |000000000042FF88|000000007792A2DF|ntdll.dll     |000000000002A2DF|ntdll            |                   | (possible towupper+1727)            |          |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|                                                                                                                                                                         |
|Running Thread: ID=6292; Parent=4384; Priority=0                                                                                                                         |
|Class=TSendThread; Name=[Unnamed thread] Kind: TThread. Thread function: CSLog.TSendThread.Execute + $0. Thread caller: CSLog.TSendThread.Create + $3C (CSLog.TSendThread.Execute)|
|DeadLock=0; Wait Chain=thread: [ 1894 / 6292 ] is blocked                                                                                                                |
|Comment=                                                                                                                                                                 |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|7FFFFFFE|03     |0000000000000000|000000007794BB7A|ntdll.dll     |000000000004BB7A|ntdll            |                   |ZwWaitForSingleObject                |          |
|00000040|03     |00000000146DFCC8|000007FEFD8B10A6|KERNELBASE.dll|00000000000010A6|KERNELBASE       |                   |WaitForSingleObjectEx                |          |
|00000040|03     |00000000146DFD68|0000000006741986|Toad.exe      |00000000025B1986|CSLog            |TSendThread        |Execute                              |          |
|00000040|04     |00000000146DFDC8|0000000004267A18|Toad.exe      |00000000000D7A18|System.Classes   |                   |ThreadProc                           |11769[11] |
|00000040|04     |00000000146DFE28|000000000438B354|Toad.exe      |00000000001FB354|EThreadsManager  |                   |NakedBeginThreadWrapper              |1331[5]   |
|00000040|04     |00000000146DFE78|000000000462102E|Toad.exe      |000000000049102E|EExceptionManager|                   |DefaultThreadHandleException         |3682[6]   |
|00000040|04     |00000000146DFED8|000000000438CE44|Toad.exe      |00000000001FCE44|EThreadsManager  |                   |ThreadWrapperCT                      |1877[17]  |
|00000040|03     |00000000146DFF58|00000000776F59BB|kernel32.dll  |00000000000159BB|kernel32         |                   | (possible VirtualQuery+4743)        |          |
|00000040|03     |00000000146DFF88|000000007792A2DF|ntdll.dll     |000000000002A2DF|ntdll            |                   | (possible towupper+1727)            |          |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|                                                                                                                                                                         |
|Running Thread: ID=4288; Parent=4384; Priority=0                                                                                                                         |
|Class=TSaveSettingsThread; Name=[Unnamed thread] Kind: TThread. Thread function: tdSaveSettings.TSaveSettingsThread.Execute + $0. Thread caller: tdSaveSettings.TSaveSettingsThread.Create + $3C (tdSaveSettings.TSaveSettingsThread.Execute)|
|DeadLock=0; Wait Chain=thread: [ 10C0 / 4288 ] is blocked                                                                                                                |
|Comment=                                                                                                                                                                 |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|7FFFFFFE|03     |0000000000000000|000000007794BB7A|ntdll.dll     |000000000004BB7A|ntdll            |                   |ZwWaitForSingleObject                |          |
|00000040|03     |000000001868FAE8|000007FEFD8B10A6|KERNELBASE.dll|00000000000010A6|KERNELBASE       |                   |WaitForSingleObjectEx                |          |
|00000040|04     |000000001868FB88|00000000042115D4|Toad.exe      |00000000000815D4|System.SysUtils  |                   |WaitForSyncWaitObj                   |19659[1]  |
|00000040|04     |000000001868FBB8|0000000004211899|Toad.exe      |0000000000081899|System.SysUtils  |                   |WaitOrSignalObj                      |19827[6]  |
|00000040|04     |000000001868FBE8|000000000419E0FF|Toad.exe      |000000000000E0FF|System           |TMonitor           |Wait                                 |14817[16] |
|00000040|04     |000000001868FC58|000000000419E1E1|Toad.exe      |000000000000E1E1|System           |TMonitor           |Wait                                 |14841[2]  |
|00000040|04     |000000001868FC98|0000000004268957|Toad.exe      |00000000000D8957|System.Classes   |TThread            |Synchronize                          |12179[29] |
|00000040|04     |000000001868FD18|0000000004268A54|Toad.exe      |00000000000D8A54|System.Classes   |TThread            |Synchronize                          |12198[5]  |
|00000040|03     |000000001868FD78|0000000009005D88|Toad.exe      |0000000004E75D88|tdSaveSettings   |TSaveSettingsThread|Execute                              |          |
|00000040|04     |000000001868FDC8|0000000004267A18|Toad.exe      |00000000000D7A18|System.Classes   |                   |ThreadProc                           |11769[11] |
|00000040|04     |000000001868FE28|000000000438B354|Toad.exe      |00000000001FB354|EThreadsManager  |                   |NakedBeginThreadWrapper              |1331[5]   |
|00000040|04     |000000001868FE78|000000000462102E|Toad.exe      |000000000049102E|EExceptionManager|                   |DefaultThreadHandleException         |3682[6]   |
|00000040|04     |000000001868FED8|000000000438CE44|Toad.exe      |00000000001FCE44|EThreadsManager  |                   |ThreadWrapperCT                      |1877[17]  |
|00000040|03     |000000001868FF58|00000000776F59BB|kernel32.dll  |00000000000159BB|kernel32         |                   | (possible VirtualQuery+4743)        |          |
|00000040|03     |000000001868FF88|000000007792A2DF|ntdll.dll     |000000000002A2DF|ntdll            |                   | (possible towupper+1727)            |          |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|                                                                                                                                                                         |
|Running Thread: ID=1620; Parent=4384; Priority=0                                                                                                                         |
|Class=TWorkerThread; Name=[Unnamed thread] Kind: TThread. Thread function: VirtualTrees.TWorkerThread.Execute + $0. Thread caller: VirtualTrees.TWorkerThread.Create + $42 (VirtualTrees.TWorkerThread.Execute)|
|DeadLock=0; Wait Chain=thread: [ 0654 / 1620 ] is blocked                                                                                                                |
|Comment=                                                                                                                                                                 |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|7FFFFFFE|03     |0000000000000000|000000007794BB7A|ntdll.dll     |000000000004BB7A|ntdll            |                   |ZwWaitForSingleObject                |          |
|00000040|03     |0000000019F4FCD8|000007FEFD8B10A6|KERNELBASE.dll|00000000000010A6|KERNELBASE       |                   |WaitForSingleObjectEx                |          |
|00000040|03     |0000000019F4FD78|0000000005232E4F|Toad.exe      |00000000010A2E4F|VirtualTrees     |TWorkerThread      |Execute                              |          |
|00000040|04     |0000000019F4FDC8|0000000004267A18|Toad.exe      |00000000000D7A18|System.Classes   |                   |ThreadProc                           |11769[11] |
|00000040|04     |0000000019F4FE28|000000000438B354|Toad.exe      |00000000001FB354|EThreadsManager  |                   |NakedBeginThreadWrapper              |1331[5]   |
|00000040|04     |0000000019F4FE78|000000000462102E|Toad.exe      |000000000049102E|EExceptionManager|                   |DefaultThreadHandleException         |3682[6]   |
|00000040|04     |0000000019F4FED8|000000000438CE44|Toad.exe      |00000000001FCE44|EThreadsManager  |                   |ThreadWrapperCT                      |1877[17]  |
|00000040|03     |0000000019F4FF58|00000000776F59BB|kernel32.dll  |00000000000159BB|kernel32         |                   | (possible VirtualQuery+4743)        |          |
|00000040|03     |0000000019F4FF88|000000007792A2DF|ntdll.dll     |000000000002A2DF|ntdll            |                   | (possible towupper+1727)            |          |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|                                                                                                                                                                         |
|Running Thread: ID=7068; Parent=0; Priority=0                                                                                                                            |
|Class=; Name=                                                                                                                                                            |
|DeadLock=0; Wait Chain=thread: [ 1B9C / 7068 ] is blocked                                                                                                                |
|Comment=                                                                                                                                                                 |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|7FFFFFFE|03     |0000000000000000|000000007794C0EA|ntdll.dll     |000000000004C0EA|ntdll            |                   |ZwWaitForMultipleObjects             |          |
|00000040|03     |0000000002D7FCB8|000000007791A312|ntdll.dll     |000000000001A312|ntdll            |                   | (possible TpIsTimerSet+2530)        |          |
|00000040|03     |0000000002D7FF58|00000000776F59BB|kernel32.dll  |00000000000159BB|kernel32         |                   | (possible VirtualQuery+4743)        |          |
|00000040|03     |0000000002D7FF88|000000007792A2DF|ntdll.dll     |000000000002A2DF|ntdll            |                   | (possible towupper+1727)            |          |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|                                                                                                                                                                         |
|Running Thread: ID=2392; Parent=0; Priority=2                                                                                                                            |
|Class=; Name=                                                                                                                                                            |
|DeadLock=0; Wait Chain=thread: [ 0958 / 2392 ] is blocked                                                                                                                |
|Comment=                                                                                                                                                                 |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|7FFFFFFE|03     |0000000000000000|0000000077819E9A|user32.dll    |0000000000019E9A|USER32           |                   | (possible SfmDxSetSwapChainStats+26)|          |
|00000040|03     |0000000017A9FE88|0000000077816169|user32.dll    |0000000000016169|USER32           |                   |GetMessageA                          |          |
|00000040|03     |0000000017A9FF58|00000000776F59BB|kernel32.dll  |00000000000159BB|kernel32         |                   | (possible VirtualQuery+4743)        |          |
|00000040|03     |0000000017A9FF88|000000007792A2DF|ntdll.dll     |000000000002A2DF|ntdll            |                   | (possible towupper+1727)            |          |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|                                                                                                                                                                         |
|Running Thread: ID=5640; Parent=0; Priority=0                                                                                                                            |
|Class=; Name=                                                                                                                                                            |
|DeadLock=0; Wait Chain=thread: [ 1608 / 5640 ] is blocked                                                                                                                |
|Comment=                                                                                                                                                                 |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|7FFFFFFE|03     |0000000000000000|000000007794BB7A|ntdll.dll     |000000000004BB7A|ntdll            |                   |ZwWaitForSingleObject                |          |
|00000040|03     |000000001D67FE28|000007FEFD8B10A6|KERNELBASE.dll|00000000000010A6|KERNELBASE       |                   |WaitForSingleObjectEx                |          |
|00000040|03     |000000001D67FEC8|000007FEECD31FA8|rasman.dll    |0000000000001FA8|rasman           |                   | (possible RasAddNotification+1676)  |          |
|00000040|03     |000000001D67FF58|00000000776F59BB|kernel32.dll  |00000000000159BB|kernel32         |                   | (possible VirtualQuery+4743)        |          |
|00000040|03     |000000001D67FF88|000000007792A2DF|ntdll.dll     |000000000002A2DF|ntdll            |                   | (possible towupper+1727)            |          |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|                                                                                                                                                                         |
|Running Thread: ID=1816; Parent=0; Priority=0                                                                                                                            |
|Class=; Name=                                                                                                                                                            |
|DeadLock=0; Wait Chain=thread: [ 0718 / 1816 ] is blocked                                                                                                                |
|Comment=                                                                                                                                                                 |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|7FFFFFFE|03     |0000000000000000|000000007794BB7A|ntdll.dll     |000000000004BB7A|ntdll            |                   |ZwWaitForSingleObject                |          |
|00000040|03     |000000001CE8F528|000007FEFD030F6F|mswsock.dll   |0000000000010F6F|MSWSOCK          |                   |WSPStartup                           |          |
|00000040|03     |000000001CE8F5A8|000007FEFD031052|mswsock.dll   |0000000000011052|MSWSOCK          |                   |WSPStartup                           |          |
|00000040|03     |000000001CE8F748|000007FEFDC24EF6|ws2_32.dll    |0000000000004EF6|WS2_32           |                   | (possible select+342)               |          |
|00000040|03     |000000001CE8F788|000007FEFDC24E78|ws2_32.dll    |0000000000004E78|WS2_32           |                   |select                               |          |
|00000040|03     |000000001CE8F888|000007FEFF172946|wininet.dll   |0000000000012946|wininet          |                   | (possible CreateUrlCacheEntryW+770) |          |
|00000040|03     |000000001CE8FF58|00000000776F59BB|kernel32.dll  |00000000000159BB|kernel32         |                   | (possible VirtualQuery+4743)        |          |
|00000040|03     |000000001CE8FF88|000000007792A2DF|ntdll.dll     |000000000002A2DF|ntdll            |                   | (possible towupper+1727)            |          |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|                                                                                                                                                                         |
|Running Thread: ID=4880; Parent=0; Priority=0                                                                                                                            |
|Class=; Name=                                                                                                                                                            |
|DeadLock=0; Wait Chain=                                                                                                                                                  |
|Comment=                                                                                                                                                                 |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|7FFFFFFE|03     |0000000000000000|000000007794D43A|ntdll.dll     |000000000004D43A|ntdll            |                   | (possible RtlWow64SuspendThread+298)|          |
|00000040|03     |00000000650CFCC8|000000007791EBE8|ntdll.dll     |000000000001EBE8|ntdll            |                   | (possible RtlValidateHeap+328)      |          |
|00000040|03     |00000000650CFF58|00000000776F59BB|kernel32.dll  |00000000000159BB|kernel32         |                   | (possible VirtualQuery+4743)        |          |
|00000040|03     |00000000650CFF88|000000007792A2DF|ntdll.dll     |000000000002A2DF|ntdll            |                   | (possible towupper+1727)            |          |
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Modules Information:
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|Handle          |Name                                     |Description                                                            |Version           |Size    |Modified           |Path                                                                                                            |
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|0000000004190000|Toad.exe                                 |Toad™ for Oracle®                                                      |12.8.0.49         |54497552|2015-10-06 19:54:02|C:\Program Files\Quest Software\Toad for Oracle 12.8\                                                           |
|0000000016DF0000|normaliz.dll                             |Unicode Normalization DLL                                              |6.1.7600.16385    |2560    |2009-07-14 03:31:40|C:\Windows\System32\                                                                                            |
|0000000016F60000|oraunls11.dll                            |Oracle UNLS Runtime Library                                            |11.1.0.6          |113152  |2011-09-29 02:45:54|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|0000000016F90000|orauts.dll                               |Oracle CORE UTS PT Library                                             |11.2.0.1          |10240   |2011-10-04 23:41:50|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|0000000017180000|orasnls11.dll                            |Oracle SNLS Runtime Library                                            |11.1.0.6          |224256  |2011-09-29 02:45:54|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|0000000018220000|oranl11.dll                              |Oracle SQL*Net ORANL DLL                                               |11.2.0.3          |430080  |2011-09-23 06:12:42|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001A050000|orantcp11.dll                            |Oracle SQL*Net ORANTCP DLL                                             |11.2.0.3          |200192  |2011-09-23 06:12:42|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001A090000|oranldap11.dll                           |Oracle SQL*Net ORANLDAP DLL                                            |11.2.0.3          |291840  |2011-09-23 06:12:42|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001A270000|orancrypt11.dll                          |Oracle SQL*Net ORANCRYPT DLL                                           |11.2.0.3          |151040  |2011-09-23 06:12:40|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001A2B0000|oranro11.dll                             |Oracle SQL*Net ORANRO DLL                                              |11.2.0.3          |350720  |2011-09-23 06:12:42|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001A320000|oranhost11.dll                           |Oracle SQL*Net ORANHOST DLL                                            |11.2.0.3          |22528   |2011-09-23 06:12:40|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001BA30000|orancds11.dll                            |Oracle SQL*Net ORANCDS DLL                                             |11.2.0.3          |8704    |2011-09-23 06:12:40|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001BA50000|orantns11.dll                            |Oracle SQL*Net ORANTNS DLL                                             |11.2.0.3          |48128   |2011-09-23 06:12:42|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001BAA0000|oraslax11.dll                            |Oracle SLAX runtime Library                                            |11.1.0.6          |38400   |2010-05-21 10:11:06|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001BAC0000|oravsn11.dll                             |Oracle RDBMS Version Library                                           |11.2.0.3          |9728    |2011-11-02 19:50:14|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001BB50000|oraztkg11.dll                            |Oracle Kerberos/GSS-API DLL                                            |11.1.0.1          |690688  |2011-09-25 10:26:22|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001BD50000|oraocrb11.dll                            |Oracle OPSM OCRB DLL                                                   |11.2.0.1          |730112  |2011-10-31 07:32:08|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001C5F0000|oraasmclnt11.dll                         |ASM Client Access Library                                              |11.2.0.3          |513536  |2011-11-02 19:27:20|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001CE90000|oracore11.dll                            |Oracle CORE Library                                                    |11.2.0.1          |1428992 |2011-10-04 23:41:48|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001D000000|oranls11.dll                             |Oracle NLS Runtime Library                                             |11.1.0.6          |1025536 |2011-09-29 02:45:54|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001D100000|oraocr11.dll                             |Oracle OPSM OCR DLL                                                    |11.2.0.1          |870400  |2011-10-31 07:32:08|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001D1E0000|oracell11.dll                            |Oracle SAGE shared library                                             |11.1.0.6          |355328  |2011-11-02 19:31:16|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001D250000|oraocrutl11.dll                          |Oracle OPSM OCRUTL DLL                                                 |11.2.0.1          |51200   |2011-10-31 07:32:08|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001EE70000|oracommon11.dll                          |Oracle RDBMS Common Library                                            |11.2.0.3          |3078144 |2011-11-03 00:17:20|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000000001F170000|orageneric11.dll                         |Oracle RDBMS Generic Library                                           |11.2.0.3          |16906240|2011-11-03 00:22:42|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|00000000201B0000|oraxml11.dll                             |Oracle XML Library                                                     |11.1.0.6          |6003712 |2011-09-23 08:46:02|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|0000000020770000|oran11.dll                               |Oracle SQL*Net ORAN DLL                                                |11.2.0.3          |4547584 |2011-09-23 06:12:40|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|0000000020BD0000|orannzsbb11.dll                          |Oracle SQL*Net ORANNZSBB11 DLL                                         |11.0.0.1          |1600000 |2011-09-25 10:26:22|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|0000000020D60000|oraldapclnt11.dll                        |Oracle Internet Directory Client Library                               |10.1.4.0          |2043904 |2011-09-25 10:26:22|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|0000000020F60000|orazt11.dll                              |Oracle SQLNet SUPPORT DLL                                              |11.1.0.1          |2046976 |2011-09-25 10:26:22|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|0000000021160000|orapls11.dll                             |Oracle PLS runtime Library                                             |11.1.0.6          |5564928 |2011-11-03 00:16:26|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|00000000216C0000|oraplp11.dll                             |Oracle PLP runtime Library                                             |11.1.0.6          |4142592 |2011-11-03 00:16:44|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|0000000021AC0000|orahasgen11.dll                          |Oracle PCW generic Library                                             |11.2.0.3          |3260416 |2011-10-31 07:30:30|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|0000000021DF0000|orasql11.dll                             |Oracle SQL Runtime Library                                             |11.1.0.6          |357888  |2011-11-03 00:01:06|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|0000000021E60000|oci.dll                                  |Oracle Call Interface                                                  |11.2.0.1          |683008  |2011-11-03 00:05:00|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|0000000021F30000|oraplc11.dll                             |Oracle PLC runtime Library                                             |11.1.0.6          |112640  |2011-11-03 00:15:56|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|0000000023120000|QSE.dll                                  |QSE DLL                                                                |12.8.0.49         |2900240 |2015-10-06 19:18:54|C:\Program Files\Quest Software\Toad for Oracle 12.8\                                                           |
|000000005B750000|security.dll                             |Security Support Provider Interface                                    |6.1.7600.16385    |5120    |2009-07-14 03:32:34|C:\Windows\System32\                                                                                            |
|0000000060BA0000|QP5.dll                                  |                                                                       |5.291.15359.29384 |22112016|2015-12-26 01:27:04|C:\Program Files\Quest Software\Toad for Oracle 12.8\                                                           |
|00000000620E0000|msvcr90.dll                              |Microsoft® C Runtime Library                                           |9.0.30729.4940    |624464  |2010-11-21 05:25:01|C:\Windows\winsxs\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.4940_none_08e4299fa83d7e3c\               |
|0000000067200000|wmi.dll                                  |WMI DC and DP functionality                                            |6.1.7601.17787    |5120    |2012-03-01 08:28:47|C:\Windows\System32\                                                                                            |
|0000000068420000|libaprutil_tsvn.dll                      |Apache Portable Runtime Utility Library                                |1.5.4.0           |274304  |2015-12-13 17:10:28|C:\Program Files\TortoiseSVN\bin\                                                                               |
|00000000696B0000|libapr_tsvn.dll                          |Apache Portable Runtime Library                                        |1.5.2.0           |196992  |2015-12-13 17:10:28|C:\Program Files\TortoiseSVN\bin\                                                                               |
|00000000696F0000|TortoiseSVN.dll                          |TortoiseSVN shell extension client                                     |1.9.3.27038       |522624  |2015-12-13 17:10:40|C:\Program Files\TortoiseSVN\bin\                                                                               |
|0000000071A40000|TortoiseStub.dll                         |TortoiseSVN shell extension client                                     |1.9.3.27038       |91520   |2015-12-13 17:10:40|C:\Program Files\TortoiseSVN\bin\                                                                               |
|0000000071A60000|TortoiseOverlays.dll                     |Tortoise overlay handler shim                                          |1.1.4.26626       |115072  |2015-08-25 21:58:06|C:\Program Files\Common Files\TortoiseOverlays\                                                                 |
|0000000073400000|sfc.dll                                  |Windows File Protection                                                |6.1.7600.16385    |3072    |2009-07-14 03:33:06|C:\Windows\System32\                                                                                            |
|0000000073470000|msvcp80.dll                              |Microsoft® C++ Runtime Library                                         |8.0.50727.4940    |1068368 |2010-11-21 05:23:55|C:\Windows\winsxs\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4940_none_88df89932faf0bf6\               |
|00000000738E0000|icmp.dll                                 |ICMP DLL                                                               |6.1.7600.16385    |3072    |2009-07-14 03:27:58|C:\Windows\System32\                                                                                            |
|0000000074AF0000|msvcr80.dll                              |Microsoft® C Runtime Library                                           |8.0.50727.4940    |802640  |2010-11-21 05:23:55|C:\Windows\winsxs\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4940_none_88df89932faf0bf6\               |
|00000000776E0000|kernel32.dll                             |Win32 kernel mag komponens                                             |6.1.7601.23391    |1163264 |2016-03-16 20:48:33|C:\Windows\System32\                                                                                            |
|0000000077800000|user32.dll                               |A Windows többfelhasználós USER API-jának ügyféloldali DLL-je          |6.1.7601.19061    |1008640 |2015-11-10 20:55:26|C:\Windows\System32\                                                                                            |
|0000000077900000|ntdll.dll                                |NT réteg DLL                                                           |6.1.7601.23391    |1732864 |2016-03-16 20:55:54|C:\Windows\System32\                                                                                            |
|0000000077AD0000|psapi.dll                                |Process Status Helper                                                  |6.1.7600.16385    |9216    |2009-07-14 03:41:53|C:\Windows\System32\                                                                                            |
|0000000180000000|oraclient11.dll                          |Oracle RDBMS Client Library                                            |11.2.0.3          |5350912 |2011-11-03 00:17:48|c:\oracle\ora11\dbhome_11203\BIN\                                                                               |
|000007FED4260000|wpdshext.dll                             |Hordozható eszközök rendszerhéj-bővítménye                             |6.1.7601.18738    |2543104 |2015-01-29 05:19:34|C:\Windows\System32\                                                                                            |
|000007FED5AA0000|DpFbView.dll                             |DigitalPersona OTS Feedback component                                  |6.0.0.5950        |3732304 |2014-06-26 11:53:48|C:\Program Files\Hewlett-Packard\HP ProtectTools Security Manager\Bin\                                          |
|000007FED5E40000|ieproxy.dll                              |IE ActiveX Interface Marshaling Library                                |8.0.7601.19104    |452096  |2015-12-10 21:04:42|C:\Program Files\Internet Explorer\                                                                             |
|000007FEDD7D0000|StructuredQuery.dll                      |Structured Query                                                       |7.0.7601.17514    |483840  |2010-11-21 05:24:08|C:\Windows\System32\                                                                                            |
|000007FEDD970000|mxdwdrv.dll                              |Microsoft XPS Document Writer                                          |0.3.7601.17514    |715776  |2010-11-21 05:23:47|C:\Windows\System32\spool\drivers\x64\3\                                                                        |
|000007FEDDA40000|SciLexer.dll                             |Scintilla.DLL - a Source Editing Component                             |3.5.7.2           |670208  |2015-06-29 09:55:04|C:\Program Files\Quest Software\Toad for Oracle 12.8\                                                           |
|000007FEDDF30000|unidrvui.dll                             |UniDriver felhasználói felület                                         |0.3.7601.17514    |884224  |2010-11-21 05:23:47|C:\Windows\System32\spool\drivers\x64\3\                                                                        |
|000007FEDED80000|ieframe.dll                              |Internetböngésző                                                       |8.0.7601.19104    |12306432|2015-12-10 21:04:42|C:\Windows\System32\                                                                                            |
|000007FEEA5C0000|SearchFolder.dll                         |SearchFolder                                                           |6.1.7601.17514    |867840  |2010-11-21 05:24:28|C:\Windows\System32\                                                                                            |
|000007FEEC870000|hhctrl.ocx                               |Microsoft® HTML-súgóvezérlő                                            |6.1.7600.16385    |701952  |2009-07-14 03:38:53|C:\Windows\System32\                                                                                            |
|000007FEEC970000|msftedit.dll                             |Rich Text Edit Control, v4.1                                           |5.41.21.2510      |799744  |2010-11-21 05:24:01|C:\Windows\System32\                                                                                            |
|000007FEECA40000|EhStorAPI.dll                            |Windows bővített tárolókapacitású API                                  |6.1.7601.17514    |144896  |2010-11-21 05:23:54|C:\Windows\System32\                                                                                            |
|000007FEECD10000|rtutils.dll                              |Routing Utilities                                                      |6.1.7601.17514    |52224   |2010-11-21 05:23:48|C:\Windows\System32\                                                                                            |
|000007FEECD30000|rasman.dll                               |Remote Access Connection Manager                                       |6.1.7600.16385    |100352  |2009-07-14 03:41:53|C:\Windows\System32\                                                                                            |
|000007FEECDD0000|rasapi32.dll                             |Remote Access API                                                      |6.1.7600.16385    |384512  |2009-07-14 03:41:53|C:\Windows\System32\                                                                                            |
|000007FEECF30000|traffic.dll                              |Microsoft Traffic Control 1.0 DLL                                      |6.1.7600.16385    |39424   |2009-07-14 03:41:55|C:\Windows\System32\                                                                                            |
|000007FEECF40000|qwave.dll                                |Windows NT                                                             |6.1.7600.16385    |242688  |2009-07-14 03:41:53|C:\Windows\System32\                                                                                            |
|000007FEED010000|AcGenral.dll                             |Windows Compatibility DLL                                              |6.1.7601.19050    |309248  |2015-10-29 19:50:29|C:\Windows\AppPatch\AppPatch64\                                                                                 |
|000007FEED090000|mxdwdui.dll                              |Microsoft XPS-dokumentumíró felhasználói felület kódtára               |0.3.7601.17514    |221184  |2010-11-21 05:24:42|C:\Windows\System32\spool\drivers\x64\3\                                                                        |
|000007FEED1C0000|MSOXMLMF.DLL                             |Microsoft Office XML MIME Filter                                       |14.0.4750.1000    |56192   |2010-02-28 03:24:28|C:\Program Files\Common Files\Microsoft Shared\OFFICE14\                                                        |
|000007FEED230000|DpoSet.dll                               |Settings Implementation                                                |6.0.0.1119        |343376  |2014-06-30 14:02:46|C:\Program Files\Hewlett-Packard\HP ProtectTools Security Manager\Bin\                                          |
|000007FEED2B0000|davclnt.dll                              |Web DAV Client DLL                                                     |6.1.7601.18912    |102912  |2015-07-01 22:48:36|C:\Windows\System32\                                                                                            |
|000007FEED2D0000|ntlanman.dll                             |Microsoft® Lan Manager                                                 |6.1.7601.17514    |129536  |2010-11-21 05:24:32|C:\Windows\System32\                                                                                            |
|000007FEED400000|DpOFeedb.dll                             |DigitalPersona OTS Feedback                                            |6.0.0.5950        |862544  |2014-06-26 11:53:48|C:\Program Files\Hewlett-Packard\HP ProtectTools Security Manager\Bin\                                          |
|000007FEED4E0000|ntshrui.dll                              |Rendszerhéj-kiterjesztések megosztáshoz                                |6.1.7601.17755    |509952  |2012-01-04 12:44:20|C:\Windows\System32\                                                                                            |
|000007FEED710000|libsvn_tsvn.dll                          |Subversion library dll built for TortoiseSVN                           |1.9.3.14583       |5920128 |2015-12-13 17:10:30|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEEE100000|NetworkExplorer.dll                      |Hálózattallózó                                                         |6.1.7601.17514    |1672704 |2010-11-21 05:24:02|C:\Windows\System32\                                                                                            |
|000007FEEE440000|shdocvw.dll                              |Shell Doc Object and Control Library                                   |6.1.7601.18222    |197120  |2013-07-26 04:24:56|C:\Windows\System32\                                                                                            |
|000007FEEE480000|tiptsf.dll                               |Táblaszámítógép beviteli panelje szövegszolgáltatásainak keretrendszere|6.1.7601.18984    |503296  |2015-09-01 20:14:28|C:\Program Files\Common Files\microsoft shared\ink\                                                             |
|000007FEEE8A0000|fontsub.dll                              |Font Subsetting DLL                                                    |6.1.7601.19146    |100864  |2016-02-05 20:54:23|C:\Windows\System32\                                                                                            |
|000007FEEE8C0000|actxprxy.dll                             |ActiveX Interface Marshaling Library                                   |6.1.7601.17514    |958464  |2010-11-21 05:23:48|C:\Windows\System32\                                                                                            |
|000007FEEE9B0000|msvcp140.dll                             |Microsoft® C Runtime Library                                           |14.0.23026.0      |635040  |2015-12-13 12:55:44|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEEEDF0000|davhlpr.dll                              |DAV Helper DLL                                                         |6.1.7600.16385    |25600   |2009-07-14 03:40:25|C:\Windows\System32\                                                                                            |
|000007FEEEE00000|drprov.dll                               |Microsoft Távoli asztali munkamenetgazda hálózati szolgáltató          |6.1.7600.16385    |24576   |2009-07-14 03:40:33|C:\Windows\System32\                                                                                            |
|000007FEEF2B0000|DropboxExt64.30.dll                      |Dropbox Shell Extension                                                |1.0.0.30          |236352  |2016-04-08 20:17:32|C:\Program Files (x86)\Dropbox\Client\                                                                          |
|000007FEEF6E0000|linkinfo.dll                             |Windows Volume Tracking                                                |6.1.7600.16385    |29696   |2009-07-14 03:41:18|C:\Windows\System32\                                                                                            |
|000007FEEF6F0000|IconCodecService.dll                     |Converts a PNG part of the icon to a legacy bmp icon                   |6.1.7600.16385    |14336   |2009-07-14 03:41:05|C:\Windows\System32\                                                                                            |
|000007FEEF700000|crshhndl.dll                             |Crash handler library                                                  |1.0.15.0          |174976  |2015-12-13 17:10:26|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEEF730000|api-ms-win-crt-multibyte-l1-1-0.dll      |ApiSet Stub DLL                                                        |10.0.10586.15     |26816   |2015-12-13 12:55:42|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEF0410000|libsasl.dll                              |                                                                       |2.1.24.0          |94080   |2015-12-13 17:10:28|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEF0540000|api-ms-win-crt-locale-l1-1-0.dll         |ApiSet Stub DLL                                                        |10.0.10586.15     |19136   |2015-12-13 12:55:42|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEF0660000|api-ms-win-crt-filesystem-l1-1-0.dll     |ApiSet Stub DLL                                                        |10.0.10586.15     |20672   |2015-12-13 12:55:42|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEF0670000|intl3_tsvn.dll                           |LGPLed libintl for Windows NT/2000/XP and Windows 95/98/ME             |0.14.6.0          |62848   |2015-12-13 17:10:28|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEF0690000|api-ms-win-crt-time-l1-1-0.dll           |ApiSet Stub DLL                                                        |10.0.10586.15     |21184   |2015-12-13 12:55:42|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEF06A0000|api-ms-win-crt-environment-l1-1-0.dll    |ApiSet Stub DLL                                                        |10.0.10586.15     |19136   |2015-12-13 12:55:42|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEF0710000|ucrtbase.dll                             |Microsoft® C Runtime Library                                           |10.0.10586.9      |994760  |2015-11-19 16:07:55|C:\Windows\System32\                                                                                            |
|000007FEF09B0000|api-ms-win-crt-math-l1-1-0.dll           |ApiSet Stub DLL                                                        |10.0.10586.15     |27840   |2015-12-13 12:55:42|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEF0D10000|api-ms-win-crt-utility-l1-1-0.dll        |ApiSet Stub DLL                                                        |10.0.10586.15     |19136   |2015-12-13 12:55:42|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEF0D20000|api-ms-win-crt-conio-l1-1-0.dll          |ApiSet Stub DLL                                                        |10.0.10586.15     |19648   |2015-12-13 12:55:42|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEF1040000|PortableDeviceApi.dll                    |Windows hordozható eszköz API-összetevői                               |6.1.7601.17514    |758272  |2010-11-21 05:24:52|C:\Windows\System32\                                                                                            |
|000007FEF1320000|oledlg.dll                               |Felhasználói felületi OLE-támogatás                                    |6.1.7600.16385    |128000  |2009-07-14 03:41:53|C:\Windows\System32\                                                                                            |
|000007FEF1350000|api-ms-win-crt-convert-l1-1-0.dll        |ApiSet Stub DLL                                                        |10.0.10586.15     |22720   |2015-12-13 12:55:42|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEF1360000|api-ms-win-crt-stdio-l1-1-0.dll          |ApiSet Stub DLL                                                        |10.0.10586.15     |24768   |2015-12-13 12:55:42|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEF1370000|api-ms-win-crt-heap-l1-1-0.dll           |ApiSet Stub DLL                                                        |10.0.10586.15     |19648   |2015-12-13 12:55:42|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEF15D0000|npmproxy.dll                             |Network List Manager Proxy                                             |6.1.7600.16385    |31744   |2009-07-14 03:41:53|C:\Windows\System32\                                                                                            |
|000007FEF17C0000|cscapi.dll                               |Offline Files Win32 API                                                |6.1.7601.17514    |46080   |2010-11-21 05:23:51|C:\Windows\System32\                                                                                            |
|000007FEF17D0000|api-ms-win-crt-string-l1-1-0.dll         |ApiSet Stub DLL                                                        |10.0.10586.15     |24768   |2015-12-13 12:55:42|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEF17E0000|browcli.dll                              |Browser Service Client DLL                                             |6.1.7601.17887    |59392   |2012-07-05 00:13:27|C:\Windows\System32\                                                                                            |
|000007FEF1800000|dssenh.dll                               |Microsoft Enhanced DSS and Diffie-Hellman Cryptographic Provider       |6.1.7600.16385    |190880  |2009-07-14 03:43:36|C:\Windows\System32\                                                                                            |
|000007FEF1E20000|netprofm.dll                             |Hálózatlista-kezelő                                                    |6.1.7600.16385    |459776  |2009-07-14 03:41:52|C:\Windows\System32\                                                                                            |
|000007FEF1F70000|api-ms-win-core-file-l1-2-0.dll          |ApiSet Stub DLL                                                        |10.0.10586.9      |11616   |2015-11-19 16:07:55|C:\Windows\System32\                                                                                            |
|000007FEF1F80000|api-ms-win-core-synch-l1-2-0.DLL         |ApiSet Stub DLL                                                        |10.0.10586.9      |12128   |2015-11-19 16:07:55|C:\Windows\System32\                                                                                            |
|000007FEF1F90000|api-ms-win-core-processthreads-l1-1-1.dll|ApiSet Stub DLL                                                        |10.0.10586.9      |12128   |2015-11-19 16:07:55|C:\Windows\System32\                                                                                            |
|000007FEF1FA0000|api-ms-win-core-localization-l1-2-0.dll  |ApiSet Stub DLL                                                        |10.0.10586.9      |14176   |2015-11-19 16:07:55|C:\Windows\System32\                                                                                            |
|000007FEF2870000|wshbth.dll                               |Windows Sockets Helper DLL                                             |6.1.7601.17514    |47104   |2010-11-21 05:24:36|C:\Windows\System32\                                                                                            |
|000007FEF2880000|winrnr.dll                               |LDAP RnR Provider DLL                                                  |6.1.7600.16385    |28672   |2009-07-14 03:41:56|C:\Windows\System32\                                                                                            |
|000007FEF2890000|pnrpnsp.dll                              |PNRP-névtérszolgáltató                                                 |6.1.7600.16385    |86016   |2009-07-14 03:41:53|C:\Windows\System32\                                                                                            |
|000007FEF28B0000|NapiNSP.dll                              |E-mail elnevezési köztes szolgáltató                                   |6.1.7600.16385    |68096   |2009-07-14 03:41:52|C:\Windows\System32\                                                                                            |
|000007FEF2910000|rasadhlp.dll                             |Remote Access AutoDial Helper                                          |6.1.7600.16385    |16384   |2009-07-14 03:41:53|C:\Windows\System32\                                                                                            |
|000007FEF2A50000|shfolder.dll                             |Shell Folder Service                                                   |6.1.7600.16385    |10240   |2009-07-14 03:41:54|C:\Windows\System32\                                                                                            |
|000007FEF2B50000|api-ms-win-core-file-l2-1-0.dll          |ApiSet Stub DLL                                                        |10.0.10586.9      |11616   |2015-11-19 16:07:55|C:\Windows\System32\                                                                                            |
|000007FEF2B90000|SensApi.dll                              |SENS Connectivity API DLL                                              |6.1.7600.16385    |15872   |2009-07-14 03:41:53|C:\Windows\System32\                                                                                            |
|000007FEF5970000|api-ms-win-core-timezone-l1-1-0.dll      |ApiSet Stub DLL                                                        |10.0.10586.9      |11616   |2015-11-19 16:07:55|C:\Windows\System32\                                                                                            |
|000007FEF5B90000|WindowsCodecs.dll                        |Microsoft Windows Codecs Library                                       |6.2.9200.17251    |1424896 |2015-02-03 05:31:16|C:\Windows\System32\                                                                                            |
|000007FEF5D00000|api-ms-win-crt-runtime-l1-1-0.dll        |ApiSet Stub DLL                                                        |10.0.10586.15     |23232   |2015-12-13 12:55:42|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEF5D10000|VCRUNTIME140.dll                         |Microsoft® C Runtime Library                                           |14.0.23026.0      |88752   |2015-12-13 12:55:44|C:\Program Files\TortoiseSVN\bin\                                                                               |
|000007FEF5FF0000|duser.dll                                |Windows DirectUser Engine                                              |6.1.7600.16385    |260608  |2009-07-14 03:40:34|C:\Windows\System32\                                                                                            |
|000007FEF7610000|msxml3.dll                               |MSXML 3.0 SP11                                                         |8.110.7601.23373  |1885696 |2016-03-06 20:53:25|C:\Windows\System32\                                                                                            |
|000007FEF7960000|thumbcache.dll                           |Microsoft miniatűrök gyorsítótára                                      |6.1.7601.17514    |112640  |2010-11-21 05:23:55|C:\Windows\System32\                                                                                            |
|000007FEF7C60000|mpr.dll                                  |Többszörös szolgáltatású útválasztási DLL                              |6.1.7600.16385    |80896   |2009-07-14 03:41:26|C:\Windows\System32\                                                                                            |
|000007FEF7C80000|sfc_os.dll                               |Windows File Protection                                                |6.1.7600.16385    |45056   |2009-07-14 03:41:54|C:\Windows\System32\                                                                                            |
|000007FEF8780000|wsock32.dll                              |Windows Socket 32-Bit DLL                                              |6.1.7600.16385    |18432   |2009-07-14 03:41:58|C:\Windows\System32\                                                                                            |
|000007FEF96B0000|GdiPlus.dll                              |Microsoft GDI+                                                         |6.1.7601.23407    |2167808 |2016-03-29 20:58:32|C:\Windows\winsxs\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.23407_none_14556c1e8b95d0b8\        |
|000007FEF98D0000|oleacc.dll                               |Active Accessibility Core Component                                    |7.0.0.0           |331776  |2011-08-27 07:37:48|C:\Windows\System32\                                                                                            |
|000007FEF9930000|msimg32.dll                              |GDIEXT Client DLL                                                      |6.1.7600.16385    |8192    |2009-07-14 03:41:29|C:\Windows\System32\                                                                                            |
|000007FEF9940000|winspool.drv                             |Windows nyomtatóvárólista-illesztőprogram                              |6.1.7601.17514    |442368  |2010-11-21 05:23:55|C:\Windows\System32\                                                                                            |
|000007FEF9FF0000|uxtheme.dll                              |Microsoft UxTheme függvénytár                                          |6.1.7600.16385    |332288  |2009-07-14 03:41:56|C:\Windows\System32\                                                                                            |
|000007FEFA7C0000|EhStorShell.dll                          |Windows emelt szintű tároló rendszerhéj-kiterjesztő DLL-je             |6.1.7600.16385    |203264  |2009-07-14 03:40:36|C:\Windows\System32\                                                                                            |
|000007FEFA9C0000|msxml6.dll                               |MSXML 6.0 SP3                                                          |6.30.7601.18980   |2004480 |2015-08-27 20:18:27|C:\Windows\System32\                                                                                            |
|000007FEFAEB0000|dhcpcsvc6.DLL                            |DHCPv6-ügyfél                                                          |6.1.7601.17970    |55296   |2012-10-09 20:17:13|C:\Windows\System32\                                                                                            |
|000007FEFAED0000|dhcpcsvc.dll                             |DHCP-ügyfélszolgáltatás                                                |6.1.7600.16385    |87040   |2009-07-14 03:40:28|C:\Windows\System32\                                                                                            |
|000007FEFAF00000|FWPUCLNT.DLL                             |FWP/IPsec felhasználói módú API                                        |6.1.7601.18283    |324096  |2013-10-12 04:29:08|C:\Windows\System32\                                                                                            |
|000007FEFB0C0000|winnsi.dll                               |Network Store Information RPC interface                                |6.1.7600.16385    |26112   |2009-07-14 03:41:56|C:\Windows\System32\                                                                                            |
|000007FEFB0D0000|IPHLPAPI.DLL                             |IP Helper API                                                          |6.1.7601.17514    |145920  |2010-11-21 05:24:16|C:\Windows\System32\                                                                                            |
|000007FEFB7C0000|taskschd.dll                             |Task Scheduler COM API                                                 |6.1.7601.17514    |1197056 |2010-11-21 05:24:16|C:\Windows\System32\                                                                                            |
|000007FEFB900000|nlaapi.dll                               |Network Location Awareness 2                                           |6.1.7601.17964    |70656   |2012-10-03 19:44:21|C:\Windows\System32\                                                                                            |
|000007FEFBBF0000|comctl32.dll                             |Felhasználói élmény vezérlőinek kódtára                                |6.10.7601.18837   |2030592 |2015-04-24 20:12:05|C:\Windows\winsxs\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.18837_none_fa3b1e3d17594757\|
|000007FEFC230000|slc.dll                                  |Szoftverlicencelési ügyfél dinamikus kódtára                           |6.1.7600.16385    |30720   |2009-07-14 03:41:54|C:\Windows\System32\                                                                                            |
|000007FEFC240000|dsrole.dll                               |DS Role Client DLL                                                     |6.1.7600.16385    |32768   |2009-07-14 03:40:34|C:\Windows\System32\                                                                                            |
|000007FEFC2D0000|propsys.dll                              |Microsoft tulajdonságrendszer                                          |7.0.7601.17514    |1212416 |2010-11-21 05:23:55|C:\Windows\System32\                                                                                            |
|000007FEFC400000|ntmarta.dll                              |Windows NT - MARTA-szolgáltató                                         |6.1.7600.16385    |162304  |2009-07-14 03:41:53|C:\Windows\System32\                                                                                            |
|000007FEFC530000|winmm.dll                                |MCI API DLL                                                            |6.1.7600.16385    |217600  |2009-07-14 03:41:56|C:\Windows\System32\                                                                                            |
|000007FEFC740000|samlib.dll                               |SAM Library DLL                                                        |6.1.7601.23390    |106496  |2016-03-16 02:16:10|C:\Windows\System32\                                                                                            |
|000007FEFC790000|dwmapi.dll                               |Microsoft Asztalablak-kezelő API                                       |6.1.7601.18917    |82944   |2015-07-09 19:58:26|C:\Windows\System32\                                                                                            |
|000007FEFC7B0000|powrprof.dll                             |Energiagazdálkodási profil - Segítő DLL                                |6.1.7600.16385    |167424  |2009-07-14 03:41:53|C:\Windows\System32\                                                                                            |
|000007FEFC7E0000|wtsapi32.dll                             |Windows Remote Desktop Session Host Server SDK APIs                    |6.1.7600.16385    |54272   |2009-07-14 03:41:58|C:\Windows\System32\                                                                                            |
|000007FEFC800000|samcli.dll                               |Security Accounts Manager Client DLL                                   |6.1.7601.17514    |67584   |2010-11-21 05:24:28|C:\Windows\System32\                                                                                            |
|000007FEFC820000|wkscli.dll                               |Workstation Service Client DLL                                         |6.1.7601.17514    |71680   |2010-11-21 05:24:26|C:\Windows\System32\                                                                                            |
|000007FEFC840000|netutils.dll                             |Net Win32 API Helpers DLL                                              |6.1.7601.17514    |29184   |2010-11-21 05:24:03|C:\Windows\System32\                                                                                            |
|000007FEFC850000|netapi32.dll                             |Net Win32 API DLL                                                      |6.1.7601.17887    |73216   |2012-07-05 00:16:43|C:\Windows\System32\                                                                                            |
|000007FEFC930000|WSHTCPIP.DLL                             |Winsock2 segítő kódtár (TL/IPv4)                                       |6.1.7600.16385    |13312   |2009-07-14 03:41:58|C:\Windows\System32\                                                                                            |
|000007FEFCCD0000|credssp.dll                              |Credential Delegation Security Package                                 |6.1.7601.23391    |22016   |2016-03-16 20:46:11|C:\Windows\System32\                                                                                            |
|000007FEFCD30000|userenv.dll                              |Userenv                                                                |6.1.7601.17514    |109056  |2010-11-21 05:24:03|C:\Windows\System32\                                                                                            |
|000007FEFCDE0000|rsaenh.dll                               |Microsoft Enhanced Cryptographic Provider                              |6.1.7600.16385    |281256  |2009-07-14 03:43:15|C:\Windows\System32\                                                                                            |
|000007FEFCE70000|logoncli.dll                             |Net Logon Client DLL                                                   |6.1.7601.17514    |186880  |2010-11-21 05:24:07|C:\Windows\System32\                                                                                            |
|000007FEFCEA0000|dnsapi.dll                               |DNS-ügyfél API DLL-je                                                  |6.1.7601.17570    |357888  |2011-03-03 08:24:15|C:\Windows\System32\                                                                                            |
|000007FEFCFB0000|version.dll                              |Version Checking and File Installation Libraries                       |6.1.7600.16385    |29184   |2009-07-14 03:41:56|C:\Windows\System32\                                                                                            |
|000007FEFCFC0000|msv1_0.dll                               |Microsoft Authentication Package v1.0                                  |6.1.7601.23391    |316416  |2016-03-16 20:50:04|C:\Windows\System32\                                                                                            |
|000007FEFD020000|mswsock.dll                              |Microsoft Windows Sockets 2.0 szolgáltató                              |6.1.7601.18254    |327168  |2013-09-08 04:27:14|C:\Windows\System32\                                                                                            |
|000007FEFD1B0000|bcrypt.dll                               |Windows Cryptographic Primitives Library                               |6.1.7600.16385    |123904  |2009-07-14 03:40:10|C:\Windows\System32\                                                                                            |
|000007FEFD260000|cryptsp.dll                              |Cryptographic Service Provider API                                     |6.1.7601.18741    |82432   |2015-02-03 05:30:56|C:\Windows\System32\                                                                                            |
|000007FEFD290000|wship6.dll                               |Winsock2 segítő kódtár (TL/IPv6)                                       |6.1.7600.16385    |13824   |2009-07-14 03:41:58|C:\Windows\System32\                                                                                            |
|000007FEFD310000|srvcli.dll                               |Server Service Client DLL                                              |6.1.7601.17514    |128000  |2010-11-21 05:24:03|C:\Windows\System32\                                                                                            |
|000007FEFD340000|cryptdll.dll                             |Cryptography Manager                                                   |6.1.7600.16385    |66048   |2009-07-14 03:40:24|C:\Windows\System32\                                                                                            |
|000007FEFD490000|secur32.dll                              |Security Support Provider Interface                                    |6.1.7601.23391    |28160   |2016-03-16 20:52:14|C:\Windows\System32\                                                                                            |
|000007FEFD660000|sspicli.dll                              |Security Support Provider Interface                                    |6.1.7601.23391    |135680  |2016-03-16 20:52:54|C:\Windows\System32\                                                                                            |
|000007FEFD690000|winsta.dll                               |Winstation Library                                                     |6.1.7601.18540    |235520  |2014-07-17 04:07:58|C:\Windows\System32\                                                                                            |
|000007FEFD6D0000|apphelp.dll                              |Alkalmazáskompatibilitási ügyfélkönyvtár                               |6.1.7601.19050    |342016  |2015-10-29 19:50:30|C:\Windows\System32\                                                                                            |
|000007FEFD730000|CRYPTBASE.dll                            |Base cryptographic API DLL                                             |6.1.7601.23391    |43520   |2016-03-16 20:46:11|C:\Windows\System32\                                                                                            |
|000007FEFD7E0000|RpcRtRemote.dll                          |Remote RPC Extension                                                   |6.1.7601.17514    |65536   |2010-11-21 05:24:01|C:\Windows\System32\                                                                                            |
|000007FEFD800000|profapi.dll                              |User Profile Basic API                                                 |6.1.7600.16385    |44032   |2009-07-14 03:41:53|C:\Windows\System32\                                                                                            |
|000007FEFD8A0000|msasn1.dll                               |ASN.1 Runtime APIs                                                     |6.1.7601.17514    |46592   |2010-11-21 05:24:22|C:\Windows\System32\                                                                                            |
|000007FEFD8B0000|KERNELBASE.dll                           |Win32 kernel mag komponens                                             |6.1.7601.23391    |419840  |2016-03-16 20:48:34|C:\Windows\System32\                                                                                            |
|000007FEFD9C0000|devobj.dll                               |Device Information Set DLL                                             |6.1.7600.16385    |93184   |2009-07-14 03:40:28|C:\Windows\System32\                                                                                            |
|000007FEFD9E0000|crypt32.dll                              |Crypto API32                                                           |6.1.7601.18839    |1480192 |2015-04-27 21:23:13|C:\Windows\System32\                                                                                            |
|000007FEFDB50000|wintrust.dll                             |Microsoft Trust Verification APIs                                      |6.1.7601.18839    |229376  |2015-04-27 21:23:45|C:\Windows\System32\                                                                                            |
|000007FEFDB90000|cfgmgr32.dll                             |Configuration Manager DLL                                              |6.1.7601.17514    |207872  |2010-11-21 05:24:00|C:\Windows\System32\                                                                                            |
|000007FEFDBD0000|xmllite.dll                              |Microsoft XmlLite Library                                              |1.3.1001.0        |199680  |2011-06-16 07:49:32|C:\Windows\System32\                                                                                            |
|000007FEFDC10000|nsi.dll                                  |NSI User-mode interface DLL                                            |6.1.7600.16385    |13824   |2009-07-14 03:41:53|C:\Windows\System32\                                                                                            |
|000007FEFDC20000|ws2_32.dll                               |Windows Socket 2.0 32 bites DLL                                        |6.1.7601.17514    |297984  |2010-11-21 05:24:28|C:\Windows\System32\                                                                                            |
|000007FEFDC70000|imagehlp.dll                             |Windows NT Image Helper                                                |6.1.7601.18288    |81408   |2013-10-19 04:18:57|C:\Windows\System32\                                                                                            |
|000007FEFDC90000|gdi32.dll                                |GDI Client DLL                                                         |6.1.7601.19091    |405504  |2015-12-08 21:07:28|C:\Windows\System32\                                                                                            |
|000007FEFDD00000|oleaut32.dll                             |                                                                       |6.1.7601.19144    |862208  |2016-02-03 20:58:21|C:\Windows\System32\                                                                                            |
|000007FEFDDE0000|sechost.dll                              |Host for SCM/SDDL/LSA Lookup APIs                                      |6.1.7601.18869    |113664  |2015-05-25 20:19:09|C:\Windows\System32\                                                                                            |
|000007FEFDE00000|shlwapi.dll                              |Shell Light-weight Utility Library                                     |6.1.7601.17514    |448512  |2010-11-21 05:24:22|C:\Windows\System32\                                                                                            |
|000007FEFDE80000|shell32.dll                              |Windows rendszerhéj - közös DLL                                        |6.1.7601.19135    |14179840|2016-01-22 08:19:58|C:\Windows\System32\                                                                                            |
|000007FEFEC10000|urlmon.dll                               |OLE32 Extensions for Win32                                             |8.0.7601.19104    |1539584 |2015-12-10 21:04:57|C:\Windows\System32\                                                                                            |
|000007FEFEDA0000|imm32.dll                                |Multi-User Windows IMM32 API Client DLL                                |6.1.7600.16385    |167424  |2009-07-14 03:41:09|C:\Windows\System32\                                                                                            |
|000007FEFEDD0000|usp10.dll                                |Uniscribe Unicode script processor                                     |1.626.7601.19054  |802304  |2015-11-03 21:04:51|C:\Windows\System32\                                                                                            |
|000007FEFEEA0000|msvcrt.dll                               |Windows NT CRT DLL                                                     |7.0.7601.17744    |634880  |2011-12-16 10:46:06|C:\Windows\System32\                                                                                            |
|000007FEFEF40000|comdlg32.dll                             |Common Dialogs DLL                                                     |6.1.7601.17514    |594432  |2010-11-21 05:24:22|C:\Windows\System32\                                                                                            |
|000007FEFEFE0000|msctf.dll                                |MSCTF kiszolgáló DLL                                                   |6.1.7601.18731    |1067520 |2015-01-17 04:48:38|C:\Windows\System32\                                                                                            |
|000007FEFF0F0000|Wldap32.dll                              |Win32 LDAP API DLL                                                     |6.1.7601.17514    |312832  |2010-11-21 05:24:07|C:\Windows\System32\                                                                                            |
|000007FEFF150000|lpk.dll                                  |Language Pack                                                          |6.1.7601.19146    |41472   |2016-02-05 20:54:45|C:\Windows\System32\                                                                                            |
|000007FEFF160000|wininet.dll                              |Internet Extensions for Win32                                          |8.0.7601.19104    |1188864 |2015-12-10 21:05:13|C:\Windows\System32\                                                                                            |
|000007FEFF290000|setupapi.dll                             |Windows Setup API                                                      |6.1.7601.17514    |1900544 |2010-11-21 05:24:28|C:\Windows\System32\                                                                                            |
|000007FEFF470000|rpcrt4.dll                               |Távoli eljáráshívás – futásidejű                                       |6.1.7601.23391    |1212928 |2016-03-16 20:52:08|C:\Windows\System32\                                                                                            |
|000007FEFF5A0000|advapi32.dll                             |Speciális 32 bites Windows API                                         |6.1.7601.23391    |880640  |2016-03-16 20:44:04|C:\Windows\System32\                                                                                            |
|000007FEFF680000|iertutil.dll                             |Run time utility for Internet Explorer                                 |8.0.7601.19104    |2470400 |2015-12-10 21:04:42|C:\Windows\System32\                                                                                            |
|000007FEFF8E0000|clbcatq.dll                              |COM+ Configuration Catalog                                             |2001.12.8530.16385|607744  |2009-07-14 03:40:15|C:\Windows\System32\                                                                                            |
|000007FEFF980000|ole32.dll                                |Microsoft OLE for Windows                                              |6.1.7601.19131    |2085888 |2016-01-16 21:01:29|C:\Windows\System32\                                                                                            |
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Processes Information:
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|ID  |Name                   |Description                                                      |Version       |Memory    |Priority    |Threads|Path                                                                                        |
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|0   |[System Process]       |                                                                 |              |0         |            |8      |                                                                                            |
|4   |System                 |                                                                 |              |1478656   |Normal      |161    |                                                                                            |
|184 |svchost.exe            |Windows-szolgáltatások gazdafolyamata                            |6.1.7600.16385|23695360  |Normal      |26     |C:\Windows\System32\                                                                        |
|364 |smss.exe               |Windows munkamenet-kezelő                                        |6.1.7601.23391|688128    |Normal      |2      |C:\Windows\System32\                                                                        |
|392 |svchost.exe            |Windows-szolgáltatások gazdafolyamata                            |6.1.7600.16385|17104896  |Normal      |17     |C:\Windows\System32\                                                                        |
|416 |DpCardEngine.exe       |                                                                 |              |0         |Normal      |5      |                                                                                            |
|500 |csrss.exe              |                                                                 |              |0         |High        |9      |                                                                                            |
|508 |svchost.exe            |Windows-szolgáltatások gazdafolyamata                            |6.1.7600.16385|39563264  |Normal      |33     |C:\Windows\System32\                                                                        |
|568 |wininit.exe            |Windows-indítóalkalmazás                                         |6.1.7600.16385|1802240   |High        |3      |C:\Windows\System32\                                                                        |
|576 |csrss.exe              |                                                                 |              |0         |High        |13     |                                                                                            |
|580 |HPConnectionManager.exe|HPConnectionManager                                              |4.8.8.1       |54460416  |Normal      |19     |C:\Program Files (x86)\Hewlett-Packard\HP Connection Manager\                               |
|624 |services.exe           |Szolgáltató és vezérlő alkalmazás                                |6.1.7601.18829|10276864  |Normal      |11     |C:\Windows\System32\                                                                        |
|660 |winlogon.exe           |Windows bejelentkeztető alkalmazás                               |6.1.7601.18540|5177344   |High        |3      |C:\Windows\System32\                                                                        |
|672 |lsass.exe              |Local Security Authority Process                                 |6.1.7601.23391|12505088  |Normal      |8      |C:\Windows\System32\                                                                        |
|680 |lsm.exe                |Helyi munkamenet-kezelő szolgáltatás                             |6.1.7601.17514|3670016   |Normal      |9      |C:\Windows\System32\                                                                        |
|788 |svchost.exe            |Windows-szolgáltatások gazdafolyamata                            |6.1.7600.16385|8593408   |Normal      |10     |C:\Windows\System32\                                                                        |
|860 |svchost.exe            |Windows-szolgáltatások gazdafolyamata                            |6.1.7600.16385|9736192   |Normal      |8      |C:\Windows\System32\                                                                        |
|928 |DpHostW.exe            |DigitalPersona Local Host                                        |5.5.0.2684    |42352640  |Normal      |22     |C:\Program Files\Hewlett-Packard\HP ProtectTools Security Manager\Bin\                      |
|960 |atiesrxx.exe           |AMD External Events Service Module                               |6.14.11.1199  |2613248   |Normal      |6      |C:\Windows\System32\                                                                        |
|996 |svchost.exe            |Windows-szolgáltatások gazdafolyamata                            |6.1.7600.16385|19210240  |Normal      |21     |C:\Windows\System32\                                                                        |
|1100|svchost.exe            |Windows-szolgáltatások gazdafolyamata                            |6.1.7600.16385|5693440   |Normal      |5      |C:\Windows\System32\                                                                        |
|1112|SynTPEnh.exe           |Synaptics TouchPad 64-bit Enhancements                           |18.1.37.3     |11988992  |Above-Normal|12     |C:\Program Files\Synaptics\SynTP\                                                           |
|1152|dwm.exe                |Asztali ablakkezelő                                              |6.1.7600.16385|43429888  |High        |8      |C:\Windows\System32\                                                                        |
|1208|hpservice.exe          |HpService                                                        |6.0.9.1       |2646016   |Normal      |5      |C:\Windows\System32\                                                                        |
|1244|vcsFPService.exe       |Validity Sensors Fingerprint Service                             |4.5.133.0     |4198400   |Normal      |8      |C:\Windows\System32\                                                                        |
|1316|svchost.exe            |Windows-szolgáltatások gazdafolyamata                            |6.1.7600.16385|35418112  |Normal      |16     |C:\Windows\System32\                                                                        |
|1344|jhi_service.exe        |Intel(R) Dynamic Application Loader Host Interface               |10.0.25.1048  |1454080   |Normal      |4      |C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL\                     |
|1424|svchost.exe            |Windows-szolgáltatások gazdafolyamata                            |6.1.7600.16385|3588096   |Normal      |4      |C:\Windows\System32\                                                                        |
|1464|unsecapp.exe           |Sink to receive asynchronous callbacks for WMI client application|6.1.7600.16385|5066752   |Normal      |3      |C:\Windows\System32\wbem\                                                                   |
|1552|spoolsv.exe            |Várólista-alrendszer kezelőalkalmazása                           |6.1.7601.17514|12984320  |Normal      |19     |C:\Windows\System32\                                                                        |
|1588|svchost.exe            |Windows-szolgáltatások gazdafolyamata                            |6.1.7600.16385|18350080  |Normal      |17     |C:\Windows\System32\                                                                        |
|1676|svchost.exe            |Windows-szolgáltatások gazdafolyamata                            |6.1.7600.16385|5705728   |Normal      |10     |C:\Windows\System32\                                                                        |
|1700|svchost.exe            |Windows-szolgáltatások gazdafolyamata                            |6.1.7600.16385|7696384   |Normal      |10     |C:\Windows\System32\                                                                        |
|1752|HotkeyService.exe      |HP Hotkey Service                                                |6.2.5.1       |2162688   |Normal      |3      |C:\Program Files (x86)\Hewlett-Packard\HP Hotkey Support\                                   |
|1820|inetinfo.exe           |Internet Information Services                                    |7.5.7601.17514|13570048  |Normal      |5      |C:\Windows\System32\inetsrv\                                                                |
|1864|novapdfs.exe           |novaPDF Server                                                   |8.5.939.0     |18444288  |Normal      |8      |C:\Program Files\Softland\novaPDF 8\Server\                                                 |
|1892|TOTALCMD64.EXE         |Total Commander                                                  |8.5.2.1       |39960576  |Normal      |10     |C:\Program Files\totalcmd\                                                                  |
|1976|RtsCM64.exe            |Realtek Camera Man                                               |1.0.0.56      |3649536   |Normal      |8      |C:\Windows\                                                                                 |
|2064|LMS.exe                |Intel(R) Local Management Service                                |10.0.25.1048  |11837440  |Normal      |9      |C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\LMS\                     |
|2096|atieclxx.exe           |AMD External Events Client Module                                |6.14.11.1199  |4923392   |Normal      |10     |C:\Windows\System32\                                                                        |
|2148|SpotifyWebHelper.exe   |SpotifyWebHelper                                                 |1.0.27.75     |3944448   |Normal      |5      |C:\Users\urban\AppData\Roaming\Spotify\                                                     |
|2156|DpAgent.exe            |DigitalPersona 64-bit Helper Process                             |6.0.0.5950    |2445312   |Normal      |1      |C:\Program Files\Hewlett-Packard\HP ProtectTools Security Manager\Bin\                      |
|2208|TNSLSNR.EXE            |Oracle TNSLSNR Executable                                        |11.2.0.3      |14311424  |Normal      |5      |C:\oracle\ora11\dbhome_11203\BIN\                                                           |
|2216|iusb3mon.exe           |iusb3mon                                                         |2.5.4.40      |3575808   |Normal      |4      |C:\Program Files (x86)\Intel\Intel(R) USB 3.0 eXtensible Host Controller Driver\Application\|
|2308|RegSrvc.exe            |Intel(R) PROSet/Wireless Registry Service                        |17.1.0.0      |2940928   |Normal      |4      |C:\Program Files\Common Files\Intel\WirelessCommon\                                         |
|2356|svnserve.exe           |Subversion Server                                                |1.7.8.43435   |19079168  |Normal      |4      |C:\Program Files (x86)\Subversion\bin\                                                      |
|2404|TeamViewer_Service.exe |TeamViewer 8                                                     |8.0.22298.0   |5976064   |Normal      |6      |C:\Program Files (x86)\TeamViewer\Version8\                                                 |
|2444|svchost.exe            |Windows-szolgáltatások gazdafolyamata                            |6.1.7600.16385|7135232   |Normal      |20     |C:\Windows\System32\                                                                        |
|2472|ZeroConfigService.exe  |Intel® PROSet/Wireless Zero Configure Service                    |17.1.0.0      |10801152  |Normal      |14     |C:\Program Files\Intel\WiFi\bin\                                                            |
|2924|svchost.exe            |Windows-szolgáltatások gazdafolyamata                            |6.1.7600.16385|12394496  |Normal      |18     |C:\Windows\System32\                                                                        |
|2952|AccelerometerSt.exe    |Hp Accelerometer System Tray                                     |6.0.24.1      |2441216   |Normal      |1      |C:\Program Files (x86)\Hewlett-Packard\HP 3D DriveGuard\                                    |
|3108|unsecapp.exe           |                                                                 |              |0         |Normal      |3      |                                                                                            |
|3172|svchost.exe            |Windows-szolgáltatások gazdafolyamata                            |6.1.7600.16385|12374016  |Normal      |13     |C:\Windows\System32\                                                                        |
|3180|WmiPrvSE.exe           |                                                                 |              |0         |Normal      |6      |                                                                                            |
|3204|TSVNCache.exe          |TortoiseSVN status cache                                         |1.9.3.27038   |15114240  |Normal      |14     |C:\Program Files\TortoiseSVN\bin\                                                           |
|3268|Dropbox.exe            |Dropbox                                                          |3.18.1.0      |139345920 |Normal      |81     |C:\Program Files (x86)\Dropbox\Client\                                                      |
|3272|svchost.exe            |Windows-szolgáltatások gazdafolyamata                            |6.1.7600.16385|4354048   |Normal      |5      |C:\Windows\System32\                                                                        |
|3412|QLBController.exe      |QLBController                                                    |6.2.5.1       |8364032   |Normal      |3      |C:\Program Files (x86)\Hewlett-Packard\HP Hotkey Support\                                   |
|3440|IAStorDataMgrSvc.exe   |IAStorDataSvc                                                    |12.8.13.1000  |21639168  |Normal      |8      |C:\Program Files\Intel\Intel(R) Rapid Storage Technology\                                   |
|3572|SynTPHelper.exe        |Synaptics Pointing Device Helper                                 |18.1.37.3     |2867200   |Above-Normal|1      |C:\Program Files\Synaptics\SynTP\                                                           |
|3676|hpqwmiex.exe           |HP Software Framework WMI Service                                |6.5.10.1      |8065024   |Normal      |4      |C:\Program Files (x86)\Hewlett-Packard\Shared\                                              |
|3748|taskhost.exe           |Gazdafolyamat Windows-feladatokhoz                               |6.1.7601.18010|7491584   |Normal      |8      |C:\Windows\System32\                                                                        |
|4000|explorer.exe           |Windows Intéző                                                   |6.1.7601.19135|81272832  |Normal      |29     |C:\Windows\                                                                                 |
|4004|DPAgent.exe            |DigitalPersona Local Agent                                       |6.0.0.3053    |42618880  |Normal      |19     |C:\Program Files (x86)\Hewlett-Packard\HP ProtectTools Security Manager\Bin\                |
|4020|jusched.exe            |Java Update Scheduler                                            |2.8.77.3      |5533696   |Normal      |5      |C:\Program Files (x86)\Common Files\Java\Java Update\                                       |
|4184|TrustedInstaller.exe   |Windows-modulok telepítője                                       |6.1.7601.17514|10153984  |Normal      |4      |C:\Windows\servicing\                                                                       |
|4244|wlanext.exe            |Windows 802.11 vezeték nélküli LAN-bővítési keretrendszer        |6.1.7600.16385|17117184  |Normal      |15     |C:\Windows\System32\                                                                        |
|4248|conhost.exe            |Konzolablak-kezelő                                               |6.1.7601.23391|1966080   |Normal      |1      |C:\Windows\System32\                                                                        |
|4332|openvpn-gui.exe        |                                                                 |10.0.0.0      |8650752   |Normal      |5      |C:\Program Files\OpenVPN\bin\                                                               |
|4428|Toad.exe               |Toad™ for Oracle®                                                |12.8.0.49     |1505062912|Normal      |9      |C:\Program Files\Quest Software\Toad for Oracle 12.8\                                       |
|4620|DiscSoftBusService.exe |Disc Soft Bus Service                                            |10.2.0.112    |3141632   |Normal      |6      |C:\Program Files\DAEMON Tools Lite\                                                         |
|5096|hpCMSrv.exe            |HP Connection Manager Service                                    |4.8.8.1       |14962688  |Normal      |9      |C:\Program Files (x86)\Hewlett-Packard\HP Connection Manager\                               |
|5156|agent.exe              |FLEXnet Connect Agent                                            |12.1.100.32512|10231808  |Normal      |8      |C:\ProgramData\FLEXnet\Connect\11\                                                          |
|5600|SearchIndexer.exe      |A Microsoft Windows Search szolgáltatás indexelőprogramja        |7.0.7601.17610|38928384  |Normal      |13     |C:\Windows\System32\                                                                        |
|5712|OSPPSVC.EXE            |Microsoft Office Software Protection Platform Service            |14.0.370.400  |4374528   |Normal      |3      |C:\Program Files\Common Files\Microsoft Shared\OfficeSoftwareProtectionPlatform\            |
|5788|PSPad.exe              |PSPad editor                                                     |4.6.0.2700    |27705344  |Normal      |2      |C:\Program Files (x86)\PSPad editor\                                                        |
|6024|oracle.exe             |                                                                 |              |0         |Normal      |31     |                                                                                            |
|6400|openvpn.exe            |OpenVPN Daemon                                                   |2.3.10.0      |6533120   |Normal      |3      |C:\Program Files\OpenVPN\bin\                                                               |
|6420|conhost.exe            |Konzolablak-kezelő                                               |6.1.7601.23391|3563520   |Normal      |1      |C:\Windows\System32\                                                                        |
|6496|IAStorIcon.exe         |IAStorIcon                                                       |12.8.13.1000  |10911744  |Normal      |7      |C:\Program Files\Intel\Intel(R) Rapid Storage Technology\                                   |
|6576|firefox.exe            |Firefox                                                          |45.0.1.5918   |444919808 |Normal      |66     |C:\Program Files (x86)\Mozilla Firefox\                                                     |
|6592|MOM.exe                |Catalyst Control Center: Monitoring program                      |4.5.0.0       |8556544   |Normal      |15     |C:\Program Files (x86)\AMD\ATI.ACE\Core-Static\                                             |
|6676|CCC.exe                |Catalyst Control Center: Host application                        |4.5.0.0       |30433280  |Normal      |22     |C:\Program Files (x86)\AMD\ATI.ACE\Core-Static\                                             |
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Assembler Information:
-------------------------------------------------------------------------------------------------------------
; Base Address: $89B1000, Allocation Base: $4190000, Region Size: 44871680
; Allocation Protect: PAGE_EXECUTE_WRITECOPY, Protect: PAGE_EXECUTE_READWRITE
; State: MEM_COMMIT, Type: MEM_IMAGE
;
;
; arExecutableItem.TarExecutableItem.DoValidate (Line=0 - Offset=182)
; -------------------------------------------------------------------
00000000089B1486  CC              INT  3
00000000089B1487  CC              INT  3
00000000089B1488  CC              INT  3
00000000089B1489  CC              INT  3
00000000089B148A  CC              INT  3
00000000089B148B  CC              INT  3
00000000089B148C  CC              INT  3
00000000089B148D  CC              INT  3
00000000089B148E  CC              INT  3
00000000089B148F  CC              INT  3
00000000089B1490  53              PUSH RBX
00000000089B1491  4883EC20        SUB  RSP, $20
00000000089B1495  4889CB          MOV  RBX, RCX
00000000089B1498  488B8BB0000000  MOV  RCX, [RBX+$000000B0]
00000000089B149F  488B83C8000000  MOV  RAX, [RBX+$000000C8]
;
; arExecutableItem.TarExecutableItem.DoWorkerItemAfterExecute (Line=0 - Offset=22)
; --------------------------------------------------------------------------------
00000000089B14A6  488B90B0000000  MOV  RDX, [RAX+$000000B0]  ; <-- EXCEPTION
00000000089B14AD  E85E79B9FC      CALL -$034686A2           ; ($0000000005548E10) arRunData.TarRunData.Assign
00000000089B14B2  488B4370        MOV  RAX, [RBX+$70]
00000000089B14B6  4889C1          MOV  RCX, RAX
00000000089B14B9  488B93C8000000  MOV  RDX, [RBX+$000000C8]
00000000089B14C0  488B5270        MOV  RDX, [RDX+$70]
00000000089B14C4  488B18          MOV  RBX, [RAX]
00000000089B14C7  FF5310          CALL QWORD PTR [RBX+$10]
00000000089B14CA  4883C420        ADD  RSP, $20
00000000089B14CE  5B              POP  RBX

Registers:
---------------------------------------------
RAX: 0000000000000000   RDI: 00000000075DC4E0
RBX: 0000000025A99E40   RSI: 0000000025A99E40
RCX: 00000000255F90F0   RBP: 000000000042F430
RDX: 0000000000000002   RSP: 000000000042F3D0
R8 : 00000000298BCBD0   R9 : 00000000298BCBD0
R10: 0000000000000000   R11: 0000000000000010
R12: 0000000000000000   R13: 0000000000000202
R14: 0000000000000000   R15: 000000000043031E
RIP: 00000000089B14A6   FLG: 0000000000010202
EXP: 00000000089B14A6   STK: 000000000042F3D0

Stack:                               Memory Dump:
----------------------------------   -----------------------------------------------------------------------------------
00000000633CEE38: 000000001350BA70   00000000089B14A6: 48 8B 90 B0 00 00 00 E8 5E 79 B9 FC 48 8B 43 70  H.......^y..H.Cp
00000000633CEE30: 0000000000000006   00000000089B14B6: 48 89 C1 48 8B 93 C8 00 00 00 48 8B 52 70 48 8B  H..H......H.RpH.
00000000633CEE28: 000000000421FFAD   00000000089B14C6: 18 FF 53 10 48 83 C4 20 5B C3 53 48 83 EC 20 48  ..S.H.. [.SH.. H
00000000633CEE20: 000000001A1449F0   00000000089B14D6: 8B 99 A0 00 00 00 EB 07 48 8B 9B A0 00 00 00 48  ........H......H
00000000633CEE18: 00000000089B156B   00000000089B14E6: 85 DB 74 13 48 89 D9 48 8B 15 5C 1E 00 00 E8 27  ..t.H..H..\....'
00000000633CEE10: 00000000064EB8E0   00000000089B14F6: BA 7E FB 84 C0 74 E1 48 89 D8 48 83 C4 20 5B C3  .~...t.H..H.. [.
00000000633CEE08: 00000000064EB8E0   00000000089B1506: CC CC CC CC CC CC CC CC CC CC 55 53 48 83 EC 58  ..........USH..X
00000000633CEE00: 000000000042F4A8   00000000089B1516: 48 8B EC 48 89 6D 28 48 89 4D 70 48 8B 45 70 80  H..H.m(H.MpH.Ep.
00000000633CEDF8: 000000000042F400   00000000089B1526: B8 80 00 00 00 00 75 6E 48 8B 4D 70 48 8B 45 70  ......unH.MpH.Ep
00000000633CEDF0: 0101010000000000   00000000089B1536: 48 8B 18 FF 93 88 00 00 00 90 48 8B 45 70 48 8B  H.........H.EpH.
00000000633CEDE8: 00000000064F4670   00000000089B1546: 80 C8 00 00 00 48 89 C1 48 8B 00 FF 90 B8 00 00  .....H..H.......
00000000633CEDE0: 0000000025A99E40   00000000089B1556: 00 88 45 3F 48 8B 4D 70 48 8B 45 70 48 8B 18 FF  ..E?H.MpH.EpH...
00000000633CEDD8: 0000000000000000   00000000089B1566: 93 98 00 00 00 90 48 8B 45 70 48 81 C0 C8 00 00  ......H.EpH.....
00000000633CEDD0: 0000000000000000   00000000089B1576: 00 48 89 45 48 48 8B 45 48 48 8B 00 48 89 45 40  .H.EHH.EHH..H.E@
00000000633CEDC8: 0000000000000000   00000000089B1586: 48 8B 45 48 48 C7 00 00 00 00 00 48 8B 4D 40 E8  H.EHH......H.M@.
00000000633CEDC0: 0000000000000000   00000000089B1596: D6 B4 7E FB EB 04 C6 45 3F 01 48 0F B6 45 3F 48  ..~....E?.H..E?H



RE: TC Output Error selecting project in SVN

$
0
0
Hey Ben,
 
I do see this happening in Toad 12.8.  It seems that Toad is not automatically creating the VCS project folders for the newly added schema. 
 
You could try one of three methods:
 

1)     Go into the Team Coding Administration window, delete and recreate your Team Project

2)     Manually create the subfolder structure on your Subversion server using your Subversion client.  You’ll need to do this for all subfolders of the newly added schema

 

or
 

3)     Use Toad 12.9 beta.  We’ve completely rewritten the underlying engine for Team Coding for the Toad 12.9 release, and it’s quite a bit faster and a lot more stable.  This issue doesn’t exist in Toad 12.9 beta. 

 
One thing to note if you choose to use the beta is that its version of Team Coding supports a number of new features, in addition to the improvements in performance and stability.  Some of these new features include: customization options for VCS folders (both in structure and name) and files, Code Tester integration, Merge detection capabilities, correct handling for controlling “All Schemas”, transaction history viewing for Team Coding actions, etc.  As a result, it uses an internal configuration format that is different from Toad 12.8.  While it is backwards compatible and can read and work with Toad 12.8’s configuration without a problem, if you change that configuration in Toad 12.9, Toad 12.8 will not be able to read the new configuration format.
 
-John
 

RE: Issues with Toad Team Coding

$
0
0
Hey Jeff,
 
I’m sorry to hear you’re having trouble using Toad’s Team Coding feature.  You mention a number of issues below, so I’ll try to cover as many of them as I can.
 
First, Team Foundation Server 2015 is not officially supported in Toad 12.8.  Toad 12.8 officially supports Team Foundation Server 2005 – 2013.  For TFS 2015 support, I would recommend using Toad 12.9 beta, and subsequently Toad 12.9 GA when it’s released.
 
There is no filtering of objects in the Team Projects tab of the Team Coding Manager; however, I can see where that might be beneficial if you have a large number of schemas and/or a large number of Team Projects defined.  However, the schemas, object types, and object names are all listed alphabetically; so even without the filtering capability, it should be fairly easy to locate within the tree.  If this kind of filtering is something you’d like to see, I would recommend adding this to the Idea Pond on Toad World.  Similarly, while there is filtering on the VCS tab, it’s limited to filtering VCS folders and objects that are controlled by Team Coding.  Filtering of your VCS content would greatly affect performance as Toad would need to query all information from the VCS provider ahead of time before applying the filter, and that could take a long while with certain VCS providers.
 
The Team Coding Summary window is not meant to be used as a Team Coding Manager replacement and is primarily a read-only view of the objects being controlled.  In Toad 12.9, it’s been expanded to show transactional history for each object as well, but it’s still designed to present summary information for the database objects being controlled, rather than a launching point to work with those objects.
 
The error you’re receiving regarding searching for work items could be related to the versions of Visual Studio you have installed.  You mentioned you’re working with Visual Studio 2015, but that you verified that Visual Studio 12 is installed (which is Visual Studio 2013).  If both are installed, it’s possible that the .NET calls being used are those for TFS 2013, rather than 2015.  We have noticed that some Visual Studio clients are not forward compatible with TFS 2015.
 
The error when entering a long comment is a bug and has been fixed for the Toad 12.9 release.
 
For the issue of dropping objects in TFS, I would recommend checking to see if the “Remove source from VCS when deleting an object” is checked in the Team Coding Administration window.  By default, Team Coding doesn’t remove objects from your source control provider when deleting an object in the database.  Deleting from version control is generally considered a bad idea since it circumvents the whole purpose of having a version control system in the first place.
 
Scheduled jobs have never been managed by Team Coding.  If this is something you’d like, I’d recommend putting an entry in the Idea Pond for this one as well.
 
Constraints, Indexes, and Tables are handled together by design.  Much of what we’ve been doing with Team Coding (especially in Toad 12.9) has been to make Team Coding easier and more accessible to the general user.  As a result, related objects -- such as Package Specs/Bodies, Type Specs/Bodies, and Tables/Indexes/Constrants -- are processed together to make sure all database source is kept in sync.  In that way, they are handled consistently.  If you’d like an option to handle these kinds of objects separately, I’d recommend adding an entry to the Idea Pond for this request as well so we can get further input from other users of Toad.
 
If you’re worrying about syncing the source versions on your file system, then you might be overthinking Team Coding a bit.  The purpose of Team Coding is to allow you to work directly with your database objects, do change control management for them, and link their source to a back-end version control system.  Team Coding is designed to automatically handle all the necessary steps related to saving object DDL between the database, file system, and VCS provider.  As a result, all you should really need to do is check out the objects with which you wish to work in Team Coding, make your changes to those objects, compile them, and check them back in.  Team Coding should handle all the rest behind the scenes.  If you want to make changes to ten objects in a single revision, you should be able to check out those ten objects, make the necessary changes, compile them, highlight those ten objects and press check-in to check them in together (or click “Check-in all”).  
 
For the other issues mentioned below, I would recommend using Toad 12.9 when it comes out and/or Toad 12.9 beta, if your company and environment are okay with it.  However, if you decide to use Toad 12.9 beta, I would recommend having everyone move to the Toad 12.9 beta.  While Toad 12.9 can read and work with Toad 12.8’s configuration without a problem, Toad 12.8 is not forward compatible with Toad 12.9’s configuration format.
 
I hope this information helps to address some of the concerns you’ve had with Team Coding.  If you have any questions, please feel free to let us know.
 
Thanks,
 
-John
 

Issues with Toad Team Coding

$
0
0

We are using Toad version 12.8.0.49 and TFS 2015 with Visual Studio 2015.

Here are some of the issues/problems that I have with the Toad Team Coding.

I can't filter the objects displayed in the Team Coding Manager, for this I must use the Team Coding Summary Information window.
The Team Coding Summary Information window is not a part of the Team Coding Manager pane.
I can't customize the Team Coding Manager toolbar menu to add button for the Team Coding Summary Information.
The Team Coding Summary Information window is an application modal dialog blocking access to the rest of the application.
The Team Coding Summary Information window does not have source control commands like Check-in, Check-out, Undo Check-out, etc...

When checking in changes, I get an error attempting to search for Work Items.
Toad encountered an exception accessing work item dll:
TFSWorkItemLink32.dll. Errormessage: Non-static method requires a target.
My Team Foundation Server Configuration Options shows that the .Net FrameWork v4.0 is installed, Visual Studio Version 12.0 is installed, and TFSWorkItemLink32.dll is registered.

A long Check-in comment causes an Oracle Error on check-in.
Error: ORA-12899: value too large for column "TOAD"."TCX_OBJECTS"."LAST_CHECKIN_COMMENTS" (actual: 202, maximum: 200)

Check-in operations are not committed in a single Changeset.
Package Specs are batch committed together, and Package Bodies are batch committed together, but Package Specs and Package Bodies are committed in a separate Changeset.
A Changeset does not contain both the Package Spec and Package Body changes for the same Package.
Dropped objects are not committed in TFS and must be manually deleted and committed using TFS Source Control Explorer.

Scheduled Jobs are not natively placed under source control.

Constraints, Indexes, and Tables are not handled consistently between Team Coding, file system disk, and TFS.
I should have the option to specify either combined or separated management of Constraints and Indexes from Tables.
When combined, a change to a Constraint or Index should check-out the Table in Team Coding and the change should be written to the file system disk and TFS in the Table script.
When separated, a change to a Constraint or Index should check-out the Constraint or Index in Team Coding and the change should be written to the file system disk and TFS in the Constraint or Index script that is separate from the Table script.
Grants should be handled in a similar way with respect to the source object whether a Table, Function, Procedure, Package, Type, or View.

When making changes in Visual Studio code and in database source, it is not easy to get all modifications committed in the same Changeset.
If you commit in Toad first, this will remove the object from the TFS Pending Changeset.
If you commit the TFS Pending Changeset first, then the database source will not be updated because Toad does not automatically save the object source to file system disk when you edit/compile.
You must manually save your database source to the file system disk and then commit the TFS Pending Changeset in order to get all modifications in the same Changeset.
But saving database source to the file system disk causes problems with Toad's ability to compare changes because Toad compares database source to file system disk source and not directly to source in TFS.
If the database source matches the file system disk source, Toad will not show a difference even though the source in TFS could be different.  Then you have to go to TFS to see that there is a difference.


RE: Problem with autocomple using joins and table alias

$
0
0

There were a few problems with Code Insight and ANSI join syntax that have been resolved for 12.9. 12.9 will be released early summer.

RE: Problem with autocomple using joins and table alias

$
0
0

I should have added... your problem is one of those resolved. It works in beta.

RE: Problem with autocomple using joins and table alias

Problem with autocomple using joins and table alias

$
0
0
I've having a problem using auto complete when I join a table and subquently use the table alias. For example, the following won't auto complete. I've confirmed the "issue" on multiple computers.

select*
from CAPS.ENTITY_UNENCUMBERED_EQ_VW ent
leftouterjoin CAPS.BUSINESS_DATE bd
on ent.


The "ent." and "bd." won't autocomplete. I've tried reinstalling. I've tried chaning my autocomplete settings. Nothing has worked so far.

RE: Slow response in the Session Browser using Toad for Oracle version 12.7 (RAC)

$
0
0

Thanks, John.  That helps.  Any word on when the fix will be put in place?

RE: Slow response in the Session Browser using Toad for Oracle version 12.7 (RAC)

$
0
0

As I understand it, the slowness is not Toad, but in the queries against the GV$ views.   They aren't always slow but I have heard that they can be.

You can test that by turning on spool SQL to capture the queries from Session Browser and trying them in the Editor.

RE: TC Output Error selecting project in SVN

$
0
0
Hi John,

thank you for the quick reply. Option 3 sounds fantastic but I think we will wait for the 12.9 Release becoming official.
Option 1 by joining only one Scheme to a Team Project as a workaround in the meanwhile.

Thanks, Ben

RE: Got strange characters in results - TOAD 10.6

$
0
0

Dears,,

plese i have the same problem , the data grid show as 췣쿣쿦촠유췑

can help me?

regards ,,

RE: Got strange characters in results - TOAD 10.6

RE: Got strange characters in results - TOAD 10.6

$
0
0

Many have seen this problem go away just by installing a newer Oracle client.

Got strange characters in results - TOAD 10.6

$
0
0
We installed TOAD 10.6 and when I did test run, I noticed some columns showed some strange characters.  For instance, currency code should be USD, but the result show something like &#21333;D&#18176;U&#26576;๔_

Please advise on how to get ride of them.  Thanks, NMA.

PIVOT/CROSS TAB IN TOAD 12.5.1.1

$
0
0

I was wondering if you could help me understand why the code for pivoting in Toad is not working. 

I performed this in Access successfully and then tried doing this in Toad with no success.  This is the code Access created.  I continue to receive the error 'SQL Command Not Properly Ended' when I try to run this.  I performed an internet search using the syntax for 11.5, and still got errors.

Thanks for any help you can provide.

USING ACCESS CODE:


SELECT HMOCOMMALL_MEMS.MEMBID,
 Sum(HMOCOMMALL_MEMS.MMS) AS TOTMMS

FROM HMOCOMMALL_MEMS

GROUP BY HMOCOMMALL_MEMS.MEMBID

PIVOT HMOCOMMALL_MEMS.YEARMON;

USING CODE FOR 11.5, I get "invalid SQL statement"

SELECT HMOCOMMALL_MEMS.MEMBID,
 Sum(.HMOCOMMALL_MEMS.MMS) AS TOTMMS

FROM .HMOCOMMALL_MEMS

PIVOT (SUM(HMOCOMMALL_MEMS.MMS)
           FOR HMOCOMMALL_MEMS.YEARMON
          IN  ('201501','201502','201503','201504','201505','201506','201507','201508','201509','201510','201511','201512'));

Viewing all 4385 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>