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

RE: How to display no records found in output on cursor

$
0
0

This forum is really for Toad specific questions, but since this is a simple question, here you go...simply add a counter and then check the counter after the loop - if it's zero, then the cursor query didn't grab anything.

SET SERVEROUTPUT ON;

DECLARE
l_counter number :=0;
CURSOR c_inv
IS
SELECT api.invoice_num,api.creation_date,api.invoice_id
,api.last_updated_by,api.last_update_login,api.gl_date
FROM AP_INVOICES_ALL api
,AP_BATCHES_ALL apb
WHERE 1=1
AND apb.batch_id=api.batch_id
AND apb.batch_name='5Feb2018-Btch1'
AND api.cancelled_date IS NULL;

BEGIN
DBMS_OUTPUT.PUT_LINE ('Start of Block');
FOR c_inv_r IN c_inv
LOOP
l_counter := l_counter + 1;
DBMS_OUTPUT.PUT_LINE('Invoice# '||c_inv_r.invoice_num);
END LOOP;
if l_counter = 0 then
dbms_output.put_line('No invoices found for given batch');
end if;
DBMS_OUTPUT.PUT_LINE ('End of Block');
EXCEPTION
WHEN OTHERS THEN
DBMS_OUTPUT.PUT_LINE ('Error: '||SQLERRM);
END;


How to display no records found in output on cursor

$
0
0

Hi Experts,

I wrote a query as below

SET SERVEROUTPUT ON;
DECLARE
CURSOR c_inv
IS
SELECT api.invoice_num,api.creation_date,api.invoice_id
,api.last_updated_by,api.last_update_login,api.gl_date
FROM AP_INVOICES_ALL api
,AP_BATCHES_ALL apb
WHERE 1=1
AND apb.batch_id=api.batch_id
AND apb.batch_name='5Feb2018-Btch1'
AND api.cancelled_date IS NULL;
BEGIN
DBMS_OUTPUT.PUT_LINE ('Start of Block');
FOR c_inv_r IN c_inv
LOOP
DBMS_OUTPUT.PUT_LINE('Invoice# '||c_inv_r.invoice_num);
END LOOP;
DBMS_OUTPUT.PUT_LINE ('End of Block');
EXCEPTION
WHEN OTHERS THEN
DBMS_OUTPUT.PUT_LINE ('Error: '||SQLERRM);
END;

I need to display output as 'No invoices found for given batch' if that batch has no invoices. Can any one please help me on how to achieve this using FOR LOOP.

RE: Memory Exception on Closure of POP-UP Viewer of CLOB

$
0
0

Hi David,

  Unfortunately, I'm still not able to reproduce this.   I see you are using a 11g client - I tried with that but it didn't make any difference.

  WIll you zip up and send me your user files folder?   You can send it to john.dorlon@quest.com.    Maybe there is some option at play here.

-John

Can I schedule a Health Check Report in TOAD

$
0
0

I usually run TOAD Health Check Report manually. Can I schedule a job to run it monthly automatically? My Toad version and edition is  TOAD for Oracle Xpert with DB admin

module 12.11.0.95

Thanks for your answers.

Strip HTML code from output

$
0
0

I get all kinds of HTML code in my output results. Is the a setting in Toad to filter them out?

op check sat, no leaks detected, drained and cleaned unit then refilled with new solution<!-- RICH TEXT -->

RE: Is it possible to rename Connection Tabs?

$
0
0

But John, I don't see any "Option" option in the screen shot in Devo's post?

RE: Is it possible to rename Connection Tabs?

$
0
0

Oaktree -

In the login window, click on the conneciton in the grid that you want to give a name for.   Then click the "Edit login record" button on the toolbar and specify the alias.

After that, go to the main Toad options window.   Click "WIndows" along the left.   Check "Use alias instead of database".    

Is it possible to rename Connection Tabs?

$
0
0

On a normal basis i have connections to about 9 or 10 schema's at a time.  They are all number based, and while i have an Alias set up within 'Session -> New Connection' those alias do not show up after you have logged in.

In the screenshot, these are the areas i want to rename... is this possible?

Example would be:

First tab would say ABC_123@BOBSDBWRK

second tab would say ABC_456@BOBSDBWRK

however i'd like the names here where the arrows are pointing to be:

First Tab: 'Project_Omega'

Second tab to be 'Project_Bobcat'

Thank you in advance for any advice!

-Devo


RE: DIctionary views missing from internal SQL when connecting via VPN

$
0
0

Hi John,

Thanks for your reply. During connection, I do get a couple of 'ORA-03113: end-of-file on communication channel' messages.  In the end the connection does go through though and regular operations work fine.

Is there any way to force TOAD to use a specific set of dictionary views ? Or prevent it from performing the queries on startup ?

Thanks!

RE: DIctionary views missing from internal SQL when connecting via VPN

$
0
0

Try this to help us figure out when it's happening.

  1. Start Toad but don't connect
  2. From the main menu:   Database -> Spool SQL -> Spool to Screen
  3. Now make your connection (and hopefully it will give the 3113)
  4. post the spool sql output.

Thanks

RE: Memory Exception on Closure of POP-UP Viewer of CLOB

$
0
0

David and I talked offline.   

In case anyone is watching this thread:

Shortened steps to reproduce this are:

  1. Have the "Execute queries in threads" option checked.
  2. Just make one connection.
  3. Go to Schema Browser, Data tab.   
  4. Double-click a Clob cell.   Make an edit and post.
  5. Close the clob editor.
  6. Close the Schema Browser.

To avoid the error, uncheck the "Execute queries in threads" option

Fixed for next beta.

Memory Exception on Closure of POP-UP Viewer of CLOB

$
0
0

If you open up two editor windows each with its own connection.  On connection number 1 describe a table with a CLOB.  Leaving the describe pop-up window open, change windows to the second editor using the 2nd connection and run a SELECT query.  With the describe pop-up, open a Pop-Up on the CLOB information, update the data, commit, then close the clob pop-up, then close the table describe.

TOAD throws a memory violation as can be seen below.  unfortunately, once this occurs, it becomes impossible to describe any future tables on any windows/tabs within toad.  It throws the error "A component named F4HolderForm already exists".

If this could get fixed, it would be greatly appreciated.

Thanks,

David

EurekaLog 7.5.1.0 

Application:
------------------------------------------------------
  1.1 Start Date      : Fri, 9 Feb 2018 09:01:57 -0600
  1.2 Name/Description: Toad.exe - (Toad® for Oracle)
  1.3 Version Number  : 12.12.0.39
  1.4 Parameters      :
  1.6 Up Time         : 16 minute(s), 1 second(s)

Exception:
-----------------------------------------------------------------------------------------------------------------------
  2.1 Date       : Fri, 9 Feb 2018 09:17:59 -0600
  2.2 Address    : 0000000009AC9DC5
  2.3 Module Name: Toad.exe - (Toad® for Oracle)
  2.5 Type       : EAccessViolation
  2.6 Message    : Access violation at address 0000000009AC9DC5 in module 'Toad.exe'. Read of address 0000000000000070.
  2.7 ID         : 2A120000
  2.8 Count      : 1
  2.11 Sent      : 0

User:
-----------------
  3.2 Name: David

Active Controls:
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  4.1 Form Class   : TfrmMain
  4.2 Form Text    : Toad for Oracle - [EAI_BDEV@EAIBD - Editor (New 4 *)]
  4.3 Control Class: TtdDScintilla
  4.4 Control Text : insert into T_EAI_TEST_CASE
                     (CASE_ID, CASE_NM, CASE_DS, APPL_CD, ACTV_INACT_IN)
                     values
                     (
                     (select NVL(max(case_id),0)+ 1 from t_eai_test_case),
                     'MSO:_RRD:_Future Dt, Success',
                     'MSO:_RRD:_Future Dt, Success',
                     18,
                     'A'
                     );
                     commit;
                     .
                     insert into t_eai_test_case_scenario
                     select CASE_SCENARIO_ID + rownum, CASE_ID, ORD_NO, CASE_SCENARIO_NM, CASE_SCNEARIO_DS, CASE_CONFIG_ID, MSG_HDR_TX, MSG_BODY_TX, EXEC_SQL_TX, EXEC_TIMEOUT_DUR_NO, VAL_SUCCESS_FAIL_IN, VAL_SUCCESS_FAIL_TS, VAL_01_DS, VAL_SQL_01_TX, VAL_EXPECTED_RSLT_01_TX, VAL_ACTUAL_RSLT_01_TX, VAL_SUCCESS_FAIL_01_IN, VAL_02_DS, VAL_SQL_02_TX, VAL_EXPECTED_RSLT_02_TX, VAL_ACTUAL_RSLT_02_TX, VAL_SUCCESS_FAIL_02_IN, VAL_03_DS, VAL_SQL_03_TX, VAL_EXPECTED_RSLT_03_TX, VAL_ACTUAL_RSLT_03_TX, VAL_SUCCESS_FAIL_03_IN, VAL_04_DS, VAL_SQL_04_TX, VAL_EXPECTED_RSLT_04_TX, VAL_ACTUAL_RSLT_04_TX, VAL_SUCCESS_FAIL_04_IN, CREATE_TS, CREATE_USER_NM, LAST_UPDT_TS, LAST_UPDT_USER_NM, EXEC_SQL_CMPLT_TS, EXEC_SQL_CMPLT_TX, CASE_CONFIG_CMPLT_TS, CASE_CONFIG_CMPLT_TX, VAL_ACTU

Computer:
-----------------------------------------------------------------------------------------------------------------------
  5.2 Total Memory    : 25760448512 (23.99 Gb)
  5.3 Free Memory     : 18993696768 (17.69 Gb)
  5.4 Total Disk      : 1024099086336 (953.77 Gb)
  5.5 Free Disk       : 257480876032 (239.80 Gb)
  5.6 System Up Time  : 1 day(s), 22 hour(s), 43 minute(s), 47 second(s)
  5.7 Processor       : Intel(R) Core(TM) i7 CPU         980  @ 3.33GHz
  5.8 Display Mode    : \\.\DISPLAY1[PRIMARY]: 1920x1080x32 96 DPI @ 0x0, \\.\DISPLAY2: 1920x1080x32 96 DPI @ -1920x-13
  5.9 Display DPI     : 96
  5.10 Video Card     : NVIDIA GeForce GTX 970 (driver 23.21.13.8813 - RAM 4293918720)
  5.11 Printer        : HP Officejet 6600 (driver 6.1.7601.17514)
  5.12 Virtual Machine:

Operating System:
--------------------------------------------------------
  6.1 Type                : Microsoft Windows 7 (64 bit)
  6.2 Build #             : 7601 (6.1.7601.18015)
  6.4 Non-Unicode Language: English (0409)
  6.5 Charset/ACP         : 0/1252
  6.6 Install Language    : English (0409)
  6.7 UI Language         : English (0409)

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


Call Stack Information:
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
|Methods |Details|Stack           |Address         |Module      |Offset          |Unit          |Class               |Procedure/Method                  |Line      |
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
|*Exception Thread: ID=13148; Parent=0; Priority=-2                                                                                                                |
|Class=; Name=MAIN                                                                                                                                                 |
|DeadLock=0; Wait Chain=                                                                                                                                           |
|Comment=                                                                                                                                                          |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|7FFFFFFE|04     |0000000000000000|0000000009AC9DC5|Toad.exe    |0000000005939DC5|OraClasses    |TOraLob             |IsTemporary                       |16118[2]  |
|00000040|04     |000000000042E5D8|0000000009AC9883|Toad.exe    |0000000005939883|OraClasses    |TOraLob             |FreeBlob                          |15941[3]  |
|00000040|04     |000000000042E618|0000000009AC97D2|Toad.exe    |00000000059397D2|OraClasses    |TOraLob             |FreeLob                           |15918[1]  |
|00000040|04     |000000000042E658|0000000009AC96CE|Toad.exe    |00000000059396CE|OraClasses    |TOraLob             |Destroy                           |15888[1]  |
|00000040|03     |000000000042E698|00000000041A02B5|Toad.exe    |00000000000102B5|System        |TObject             |Free                              |          |
|00000040|04     |000000000042E6C8|0000000009B1A14A|Toad.exe    |000000000598A14A|MemData       |TSharedObject       |Free                              |8336[7]   |
|00000040|04     |000000000042E708|0000000009AA0C3B|Toad.exe    |0000000005910C3B|OraClasses    |TOraParamDesc       |FreeBuffer                        |4932[21]  |
|00000040|04     |000000000042E768|0000000009A70CAB|Toad.exe    |00000000058E0CAB|CRAccess      |TParamDesc          |Destroy                           |6281[5]   |
|00000040|04     |000000000042E7B8|0000000009A9FCA4|Toad.exe    |000000000590FCA4|OraClasses    |TOraParamDesc       |Destroy                           |4716[1]   |
|00000040|03     |000000000042E7F8|00000000041A02B5|Toad.exe    |00000000000102B5|System        |TObject             |Free                              |          |
|00000040|04     |000000000042E828|0000000004D21C4D|Toad.exe    |0000000000B91C4D|CRTypes       |TCRObjectList       |Notify                            |628[2]    |
|00000040|03     |000000000042E878|00000000042EF499|Toad.exe    |000000000015F499|System.Classes|TList               |SetCount                          |          |
|00000040|03     |000000000042E8C8|00000000042EECDE|Toad.exe    |000000000015ECDE|System.Classes|TList               |Clear                             |          |
|00000040|03     |000000000042E8F8|00000000042EEC4E|Toad.exe    |000000000015EC4E|System.Classes|TList               |Destroy                           |          |
|00000040|03     |000000000042E938|00000000041A02B5|Toad.exe    |00000000000102B5|System        |TObject             |Free                              |          |
|00000040|04     |000000000042E968|0000000009A640D2|Toad.exe    |00000000058D40D2|CRAccess      |TCRCommand          |Destroy                           |1919[1]   |
|00000040|04     |000000000042E9A8|0000000009AA75E0|Toad.exe    |00000000059175E0|OraClasses    |TOCICommand         |Destroy                           |6948[29]  |
|00000040|03     |000000000042E9F8|00000000041A02B5|Toad.exe    |00000000000102B5|System        |TObject             |Free                              |          |
|00000040|04     |000000000042EA28|0000000009A68656|Toad.exe    |00000000058D8656|CRAccess      |TCRRecordSet        |FreeCommand                       |3422[1]   |
|00000040|04     |000000000042EA68|0000000009A68563|Toad.exe    |00000000058D8563|CRAccess      |TCRRecordSet        |Destroy                           |3389[3]   |
|00000040|04     |000000000042EAB8|0000000009ABA607|Toad.exe    |000000000592A607|OraClasses    |TOCIRecordSet       |Destroy                           |11868[18] |
|00000040|03     |000000000042EB08|00000000041A02B5|Toad.exe    |00000000000102B5|System        |TObject             |Free                              |          |
|00000040|04     |000000000042EB38|0000000004DBC84F|Toad.exe    |0000000000C2C84F|MemDS         |TMemDataSet         |FreeIRecordSet                    |960[1]    |
|00000040|04     |000000000042EB68|0000000004DBC773|Toad.exe    |0000000000C2C773|MemDS         |TMemDataSet         |Destroy                           |931[9]    |
|00000040|04     |000000000042EBB8|0000000009B46657|Toad.exe    |00000000059B6657|DBAccess      |TCustomDADataSet    |Destroy                           |7383[24]  |
|00000040|04     |000000000042EC08|0000000009A4155A|Toad.exe    |00000000058B155A|Ora           |TOraDataSet         |Destroy                           |7356[10]  |
|00000040|03     |000000000042EC48|00000000041A02B5|Toad.exe    |00000000000102B5|System        |TObject             |Free                              |          |
|00000040|04     |000000000042EC78|0000000009B568BC|Toad.exe    |00000000059C68BC|DBAccess      |TDADataSetUpdater   |Destroy                           |11792[6]  |
|00000040|03     |000000000042ECC8|00000000041A02B5|Toad.exe    |00000000000102B5|System        |TObject             |Free                              |          |
|00000040|04     |000000000042ECF8|0000000004DC82C0|Toad.exe    |0000000000C382C0|MemDS         |TDataSetService     |FreeDataSetUpdater                |5074[1]   |
|00000040|04     |000000000042ED38|0000000004DC821E|Toad.exe    |0000000000C3821E|MemDS         |TDataSetService     |Destroy                           |5056[1]   |
|00000040|04     |000000000042ED78|0000000009B5DEB4|Toad.exe    |00000000059CDEB4|DBAccess      |TDADataSetService   |Destroy                           |13663[4]  |
|00000040|03     |000000000042EDB8|00000000041A02B5|Toad.exe    |00000000000102B5|System        |TObject             |Free                              |          |
|00000040|04     |000000000042EDE8|0000000004DBCAA3|Toad.exe    |0000000000C2CAA3|MemDS         |TMemDataSet         |FreeDataSetService                |1004[1]   |
|00000040|04     |000000000042EE28|0000000004DBCAD3|Toad.exe    |0000000000C2CAD3|MemDS         |TMemDataSet         |SetDataSetService                 |1010[1]   |
|00000040|04     |000000000042EE68|0000000009B474F6|Toad.exe    |00000000059B74F6|DBAccess      |TCustomDADataSet    |SetDataSetService                 |7563[1]   |
|00000040|04     |000000000042EEA8|0000000009A41ADB|Toad.exe    |00000000058B1ADB|Ora           |TOraDataSet         |SetDataSetService                 |7418[1]   |
|00000040|04     |000000000042EF48|0000000004E00F16|Toad.exe    |0000000000C70F16|OraSmart      |TCustomSmartQuery   |SetDataSetService                 |734[1]    |
|00000040|04     |000000000042EF88|0000000004DBC790|Toad.exe    |0000000000C2C790|MemDS         |TMemDataSet         |Destroy                           |933[11]   |
|00000040|04     |000000000042EFD8|0000000009B46657|Toad.exe    |00000000059B6657|DBAccess      |TCustomDADataSet    |Destroy                           |7383[24]  |
|00000040|04     |000000000042F028|0000000009A4155A|Toad.exe    |00000000058B155A|Ora           |TOraDataSet         |Destroy                           |7356[10]  |
|00000040|04     |000000000042F068|0000000004E00954|Toad.exe    |0000000000C70954|OraSmart      |TCustomSmartQuery   |Destroy                           |639[1]    |
|00000040|03     |000000000042F0A8|00000000041A02B5|Toad.exe    |00000000000102B5|System        |TObject             |Free                              |          |
|00000040|03     |000000000042F0D8|00000000043141FE|Toad.exe    |00000000001841FE|System.Classes|TComponent          |DestroyComponents                 |          |
|00000040|03     |000000000042F138|000000000431398A|Toad.exe    |000000000018398A|System.Classes|TComponent          |Destroy                           |          |
|00000040|03     |000000000042F178|00000000044EE970|Toad.exe    |000000000035E970|Vcl.Controls  |TControl            |Destroy                           |          |
|00000040|03     |000000000042F208|00000000044F5A6C|Toad.exe    |0000000000365A6C|Vcl.Controls  |TWinControl         |Destroy                           |          |
|00000040|04     |000000000042F278|00000000046A185E|Toad.exe    |000000000051185E|Vcl.Forms     |TScrollingWinControl|Destroy                           |3085[3]   |
|00000040|04     |000000000042F2C8|00000000046A3512|Toad.exe    |0000000000513512|Vcl.Forms     |TCustomForm         |Destroy                           |3766[32]  |
|00000040|04     |000000000042F368|00000000093E74BF|Toad.exe    |00000000052574BF|frmSBForm     |TSBForm             |Destroy                           |6727[5]   |
|00000040|03     |000000000042F3A8|00000000044F59D1|Toad.exe    |00000000003659D1|Vcl.Controls  |TWinControl         |Destroy                           |          |
|00000040|03     |000000000042F418|000000000450324C|Toad.exe    |000000000037324C|Vcl.Controls  |TCustomControl      |Destroy                           |          |
|00000040|03     |000000000042F458|0000000004CA64C7|Toad.exe    |0000000000B164C7|cxPC          |TcxTabSheet         |Destroy                           |          |
|00000040|03     |000000000042F498|00000000044F59D1|Toad.exe    |00000000003659D1|Vcl.Controls  |TWinControl         |Destroy                           |          |
|00000040|03     |000000000042F508|000000000450324C|Toad.exe    |000000000037324C|Vcl.Controls  |TCustomControl      |Destroy                           |          |
|00000040|03     |000000000042F548|0000000004829C61|Toad.exe    |0000000000699C61|cxControls    |TcxCustomControl    |Destroy                           |          |
|00000040|03     |000000000042F598|000000000482A2BA|Toad.exe    |000000000069A2BA|cxControls    |TcxControl          |Destroy                           |          |
|00000040|03     |000000000042F608|0000000004C99146|Toad.exe    |0000000000B09146|cxPC          |TcxCustomTabControl |Destroy                           |          |
|00000040|03     |000000000042F678|00000000044F59D1|Toad.exe    |00000000003659D1|Vcl.Controls  |TWinControl         |Destroy                           |          |
|00000040|04     |000000000042F6E8|00000000046A185E|Toad.exe    |000000000051185E|Vcl.Forms     |TScrollingWinControl|Destroy                           |3085[3]   |
|00000040|04     |000000000042F738|00000000046A3512|Toad.exe    |0000000000513512|Vcl.Forms     |TCustomForm         |Destroy                           |3766[32]  |
|00000040|04     |000000000042F7D8|0000000009292F13|Toad.exe    |0000000005102F13|frmToad       |TToadForm           |Destroy                           |641[7]    |
|00000040|03     |000000000042F818|00000000041A02B5|Toad.exe    |00000000000102B5|System        |TObject             |Free                              |          |
|00000040|04     |000000000042F848|00000000046ABA04|Toad.exe    |000000000051BA04|Vcl.Forms     |TCustomForm         |CMRelease                         |6995[1]   |
|00000040|03     |000000000042F878|00000000041A09DE|Toad.exe    |00000000000109DE|System        |TObject             |Dispatch                          |          |
|00000040|03     |000000000042F8C8|00000000044F2D33|Toad.exe    |0000000000362D33|Vcl.Controls  |TControl            |WndProc                           |          |
|00000040|03     |000000000042FA38|00000000044F9BE2|Toad.exe    |0000000000369BE2|Vcl.Controls  |TWinControl         |WndProc                           |          |
|00000040|04     |000000000042FB08|00000000046A542B|Toad.exe    |000000000051542B|Vcl.Forms     |TCustomForm         |WndProc                           |4533[209] |
|00000040|03     |000000000042FBC8|00000000044F8E2A|Toad.exe    |0000000000368E2A|Vcl.Controls  |TWinControl         |MainWndProc                       |          |
|00000040|03     |000000000042FC18|0000000004317864|Toad.exe    |0000000000187864|System.Classes|                    |StdWndProc                        |          |
|00000040|03     |000000000042FC68|0000000076D89BB6|user32.dll  |0000000000019BB6|USER32        |                    | (possible TranslateMessageEx+662)|          |
|00000040|03     |000000000042FD28|0000000076D898BD|user32.dll  |00000000000198BD|USER32        |                    | (possible TranslateMessage+477)  |          |
|00000040|04     |000000000042FDA8|00000000046B34FF|Toad.exe    |00000000005234FF|Vcl.Forms     |TApplication        |ProcessMessage                    |10544[23] |
|00000040|04     |000000000042FE28|00000000046B3573|Toad.exe    |0000000000523573|Vcl.Forms     |TApplication        |HandleMessage                     |10574[1]  |
|00000040|04     |000000000042FE98|00000000046B39DF|Toad.exe    |00000000005239DF|Vcl.Forms     |TApplication        |Run                               |10712[26] |
|00000040|04     |000000000042FED8|0000000009CCFA1B|Toad.exe    |0000000005B3FA1B|Toad          |                    |Initialization                    |1928[113] |
|00000040|03     |000000000042FF58|0000000076E859CB|kernel32.dll|00000000000159CB|kernel32      |                    |BaseThreadInitThunk               |          |
--------------------------------------------------------------------------------------------------------------------------------------------------------------------

Modules Information:
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|Handle          |Name                                     |Description                                                     |Version           |Size     |Modified           |Path                                                                                                            |
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|0000000004190000|Toad.exe                                 |Toad® for Oracle                                                |12.12.0.39        |139216296|2017-09-28 09:33:24|C:\Program Files\Quest Software\Toad for Oracle 2017 R2 Edition\Toad for Oracle 12.12\                          |
|00000000125D0000|api-ms-win-downlevel-ole32-l1-1-0.dll    |ApiSet Stub DLL                                                 |6.2.9200.16492    |5632     |2013-03-30 11:29:11|C:\Windows\System32\                                                                                            |
|0000000015C10000|oraunls11.dll                            |Oracle UNLS Runtime Library                                     |11.1.0.6          |112128   |2010-02-17 19:28:52|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|0000000015C30000|orauts.dll                               |Oracle CORE UTS PT Library                                      |11.2.0.1          |10240    |2010-02-11 19:31:08|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|0000000015D00000|orasnls11.dll                            |Oracle SNLS Runtime Library                                     |11.1.0.6          |231424   |2010-02-17 19:28:52|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|0000000015FC0000|oranl11.dll                              |Oracle SQL*Net ORANL DLL                                        |11.2.0.1          |430592   |2010-03-15 18:48:00|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|0000000016030000|orantcp11.dll                            |Oracle SQL*Net ORANTCP DLL                                      |11.2.0.1          |199680   |2010-03-15 18:48:04|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|0000000016910000|oranhost11.dll                           |Oracle SQL*Net ORANHOST DLL                                     |11.2.0.1          |21504    |2010-03-15 18:47:58|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|00000000169B0000|orancds11.dll                            |Oracle SQL*Net ORANCDS DLL                                      |11.2.0.1          |8704     |2010-03-15 18:47:56|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|0000000016B80000|oranldap11.dll                           |Oracle SQL*Net ORANLDAP DLL                                     |11.2.0.1          |290816   |2010-03-15 18:48:00|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|0000000016DA0000|orancrypt11.dll                          |Oracle SQL*Net ORANCRYPT DLL                                    |11.2.0.1          |133120   |2010-03-15 18:47:56|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|0000000016FA0000|oranro11.dll                             |Oracle SQL*Net ORANRO DLL                                       |11.2.0.1          |350720   |2010-03-15 18:48:02|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|0000000017000000|orantns11.dll                            |Oracle SQL*Net ORANTNS DLL                                      |11.2.0.1          |48128    |2010-03-15 18:48:04|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|0000000017A00000|oraslax11.dll                            |Oracle SLAX runtime Library                                     |11.1.0.6          |38400    |2010-01-21 03:35:20|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|0000000019420000|oravsn11.dll                             |Oracle RDBMS Version Library                                    |11.2.0.1          |9728     |2010-03-30 02:27:38|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001A010000|oraocrutl11.dll                          |Oracle OPSM OCRUTL DLL                                          |11.2.0.1          |49664    |2010-03-26 11:01:36|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001A100000|oracore11.dll                            |Oracle CORE Library                                             |11.2.0.1          |1411072  |2010-02-11 19:31:06|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001A260000|oracell11.dll                            |Oracle SAGE shared library                                      |11.1.0.6          |287744   |2010-03-30 02:07:54|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001A340000|oraplc11.dll                             |Oracle PLC runtime Library                                      |11.1.0.6          |112128   |2010-03-30 05:11:26|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001A490000|orasql11.dll                             |Oracle SQL Runtime Library                                      |11.1.0.6          |357888   |2010-03-30 05:01:38|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001D290000|oranls11.dll                             |Oracle NLS Runtime Library                                      |11.1.0.6          |1020928  |2010-02-17 19:28:50|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001D390000|oracommon11.dll                          |Oracle RDBMS Common Library                                     |11.2.0.1          |2827264  |2010-03-30 05:12:30|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001D650000|orageneric11.dll                         |Oracle RDBMS Generic Library                                    |11.2.0.1          |15667200 |2010-03-30 05:15:20|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001E560000|oraxml11.dll                             |Oracle XML Library                                              |11.1.0.6          |5086720  |2010-01-17 08:08:36|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001EA40000|oran11.dll                               |Oracle SQL*Net ORAN DLL                                         |11.2.0.1          |4518912  |2010-03-15 18:47:54|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001EEA0000|orannzsbb11.dll                          |Oracle SQL*Net ORANNZSBB11 DLL                                  |11.0.0.1          |1564672  |2010-03-13 07:39:50|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001F030000|oraldapclnt11.dll                        |Oracle Internet Directory Client Library                        |10.1.4.0          |2015232  |2010-03-13 07:39:48|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001F230000|orazt11.dll                              |Oracle SQLNet SUPPORT DLL                                       |11.1.0.1          |2003968  |2010-03-13 07:39:52|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001F420000|oraztkg11.dll                            |Oracle Kerberos/GSS-API DLL                                     |11.1.0.1          |712704   |2010-03-13 07:39:54|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001F4E0000|orapls11.dll                             |Oracle PLS runtime Library                                      |11.1.0.6          |5360128  |2010-03-30 05:11:52|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001FA10000|oraplp11.dll                             |Oracle PLP runtime Library                                      |11.1.0.6          |4136960  |2010-03-30 05:12:06|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000000001FE10000|orahasgen11.dll                          |Oracle PCW generic Library                                      |11.2.0.1          |2950656  |2010-03-26 10:57:32|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|00000000200F0000|oraocr11.dll                             |Oracle OPSM OCR DLL                                             |11.2.0.1          |801280   |2010-03-26 11:01:34|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|00000000201C0000|oraocrb11.dll                            |Oracle OPSM OCRB DLL                                            |11.2.0.1          |978432   |2010-03-26 11:01:36|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|0000000020560000|oci.dll                                  |Oracle Call Interface                                           |11.2.0.1          |657408   |2010-03-30 05:03:20|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|0000000021D70000|QSE.dll                                  |Quest® Script Engine                                            |12.12.0.39        |2898856  |2017-09-28 09:08:04|C:\Program Files\Quest Software\Toad for Oracle 2017 R2 Edition\Toad for Oracle 12.12\                          |
|0000000022D00000|QP5.dll                                  |                                                                |5.318.17248.26858 |24207848 |2017-09-13 11:26:40|C:\Program Files\Quest Software\Toad for Oracle 2017 R2 Edition\Toad for Oracle 12.12\                          |
|0000000063AB0000|msvcp80.dll                              |Microsoft® C++ Runtime Library                                  |8.0.50727.6229    |1062400  |2015-12-30 09:29:57|C:\Windows\winsxs\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6229_none_88dcc0bf2fb1b808\               |
|0000000068C30000|hpvplres09.dll                           |HP Localization Plugin                                          |9.84.0.1189       |237968   |2012-09-12 06:43:06|C:\Windows\System32\spool\drivers\x64\3\                                                                        |
|0000000069200000|ATL90.dll                                |ATL Module for Windows (Unicode)                                |9.0.30729.4148    |176456   |2011-08-11 17:43:46|C:\Windows\winsxs\amd64_microsoft.vc90.atl_1fc8b3b9a1e18e3b_9.0.30729.4148_none_0a1d2fcba76b3f00\               |
|0000000069230000|msvcp90.dll                              |Microsoft® C++ Runtime Library                                  |9.0.30729.4940    |853328   |2010-11-20 21:25:01|C:\Windows\winsxs\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.4940_none_08e4299fa83d7e3c\               |
|0000000069310000|msvcr90.dll                              |Microsoft® C Runtime Library                                    |9.0.30729.4940    |624464   |2010-11-20 21:25:01|C:\Windows\winsxs\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.4940_none_08e4299fa83d7e3c\               |
|0000000069B10000|mdnsNSP.dll                              |Bonjour Namespace Provider                                      |3.1.0.1           |133392   |2015-08-12 15:03:42|C:\Program Files\Bonjour\                                                                                       |
|0000000069B40000|WLIDNSP.DLL                              |Microsoft® Windows Live ID Namespace Provider                   |6.500.3165.0      |168304   |2009-08-18 12:48:02|C:\Program Files\Common Files\Microsoft Shared\Windows Live\                                                    |
|000000006AEF0000|hpvplui09.dll                            |HP Unidrive UI Plugin                                           |9.84.0.1189       |78224    |2012-09-12 06:43:06|C:\Windows\System32\spool\drivers\x64\3\                                                                        |
|0000000071850000|msvcr80.dll                              |Microsoft® C Runtime Library                                    |8.0.50727.6229    |796672   |2015-12-30 09:29:57|C:\Windows\winsxs\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6229_none_88dcc0bf2fb1b808\               |
|0000000072420000|hpvpldrv09.dll                           |HP Unidrive Render Plugin                                       |9.84.0.1189       |590736   |2012-09-12 06:43:04|C:\Windows\System32\spool\drivers\x64\3\                                                                        |
|00000000724C0000|security.dll                             |Security Support Provider Interface                             |6.1.7600.16385    |5120     |2009-07-13 19:32:34|C:\Windows\System32\                                                                                            |
|00000000744A0000|ksuser.dll                               |User CSA Library                                                |6.1.7601.19091    |5120     |2015-12-08 13:07:31|C:\Windows\System32\                                                                                            |
|0000000074620000|wmi.dll                                  |WMI DC and DP functionality                                     |6.1.7601.17787    |5120     |2012-03-01 00:28:47|C:\Windows\System32\                                                                                            |
|0000000074630000|icmp.dll                                 |ICMP DLL                                                        |6.1.7600.16385    |3072     |2009-07-13 19:27:58|C:\Windows\System32\                                                                                            |
|0000000076D70000|user32.dll                               |Multi-User Windows USER API Client DLL                          |6.1.7601.23594    |1009152  |2016-11-10 10:32:41|C:\Windows\System32\                                                                                            |
|0000000076E70000|kernel32.dll                             |Windows NT BASE API Client DLL                                  |6.1.7601.24000    |1163264  |2017-12-31 20:18:22|C:\Windows\System32\                                                                                            |
|0000000076F90000|ntdll.dll                                |NT Layer DLL                                                    |6.1.7601.24000    |1665384  |2017-12-31 20:19:59|C:\Windows\System32\                                                                                            |
|0000000077130000|psapi.dll                                |Process Status Helper                                           |6.1.7600.16385    |9216     |2009-07-13 19:41:53|C:\Windows\System32\                                                                                            |
|0000000077140000|normaliz.dll                             |Unicode Normalization DLL                                       |6.1.7600.16385    |2560     |2009-07-13 19:31:40|C:\Windows\System32\                                                                                            |
|0000000180000000|oraclient11.dll                          |Oracle RDBMS Client Library                                     |11.2.0.1          |4765184  |2010-03-30 05:12:50|C:\app\David\product\11.2.0\client_1\bin\                                                                       |
|000007FEDA340000|api-ms-win-crt-utility-l1-1-0.dll        |ApiSet Stub DLL                                                 |10.0.10586.1171   |12128    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEDA350000|api-ms-win-crt-environment-l1-1-0.dll    |ApiSet Stub DLL                                                 |10.0.10586.1171   |12128    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEDA360000|api-ms-win-crt-filesystem-l1-1-0.dll     |ApiSet Stub DLL                                                 |10.0.10586.1171   |13664    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEDA370000|api-ms-win-crt-time-l1-1-0.dll           |ApiSet Stub DLL                                                 |10.0.10586.1171   |14176    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEDA380000|api-ms-win-crt-multibyte-l1-1-0.dll      |ApiSet Stub DLL                                                 |10.0.10586.1171   |19808    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEDA390000|api-ms-win-crt-math-l1-1-0.dll           |ApiSet Stub DLL                                                 |10.0.10586.1171   |20832    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEDA3A0000|api-ms-win-crt-locale-l1-1-0.dll         |ApiSet Stub DLL                                                 |10.0.10586.1171   |12128    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEDA3B0000|msvcp140.dll                             |Microsoft® C Runtime Library                                    |14.12.25810.0     |687240   |2017-10-10 19:52:00|C:\Windows\System32\                                                                                            |
|000007FEDA4A0000|api-ms-win-crt-convert-l1-1-0.dll        |ApiSet Stub DLL                                                 |10.0.10586.1171   |15712    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEDA4B0000|api-ms-win-crt-stdio-l1-1-0.dll          |ApiSet Stub DLL                                                 |10.0.10586.1171   |17760    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEDA4C0000|api-ms-win-crt-string-l1-1-0.dll         |ApiSet Stub DLL                                                 |10.0.10586.1171   |17760    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEDA4D0000|ucrtbase.dll                             |Microsoft® C Runtime Library                                    |10.0.10586.1171   |995272   |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEDA5D0000|VCRUNTIME140.dll                         |Microsoft® C Runtime Library                                    |14.12.25810.0     |89752    |2017-10-10 19:52:00|C:\Windows\System32\                                                                                            |
|000007FEDAA70000|msvcp60.dll                              |Windows NT C++ Runtime Library DLL                              |7.0.7600.16385    |597504   |2009-07-13 19:41:32|C:\Windows\System32\                                                                                            |
|000007FEDCEA0000|ShellTools.dll                           |SmartFTP Shell Tools                                            |1.0.73.0          |274400   |2018-01-31 21:23:52|C:\Program Files\SmartFTP Client\                                                                               |
|000007FEDDCE0000|api-ms-win-crt-heap-l1-1-0.dll           |ApiSet Stub DLL                                                 |10.0.10586.1171   |12640    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEDE7A0000|MSOXMLMF.DLL                             |Microsoft Office XML MIME Filter                                |14.0.4750.1000    |56192    |2010-02-28 01:24:28|C:\Program Files\Common Files\Microsoft Shared\OFFICE14\                                                        |
|000007FEE67C0000|api-ms-win-core-processthreads-l1-1-1.dll|ApiSet Stub DLL                                                 |10.0.10586.1171   |12128    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEE84E0000|cscdll.dll                               |Offline Files Temporary Shim                                    |6.1.7601.17514    |30208    |2010-11-20 21:23:51|C:\Windows\System32\                                                                                            |
|000007FEE84F0000|cscui.dll                                |Client Side Caching UI                                          |6.1.7601.17514    |498688   |2010-11-20 21:24:41|C:\Windows\System32\                                                                                            |
|000007FEE8570000|GrooveIntlResource.dll                   |                                                                |14.0.6009.1000    |8801632  |2010-10-20 14:23:54|C:\Program Files\Microsoft Office\Office14\1033\                                                                |
|000007FEE8DE0000|OFFICE.ODF                               |                                                                |14.0.7109.5000    |4300456  |2013-09-05 00:17:48|C:\Program Files\Common Files\Microsoft Shared\OFFICE14\Cultures\                                               |
|000007FEE9390000|GROOVEEX.DLL                             |Microsoft SharePoint Workspace Extensions                       |14.0.7113.5005    |6671064  |2013-12-19 00:44:34|C:\Program Files\Microsoft Office\Office14\                                                                     |
|000007FEE9A00000|EhStorShell.dll                          |Windows Enhanced Storage Shell Extension DLL                    |6.1.7600.16385    |203264   |2009-07-13 19:40:36|C:\Windows\System32\                                                                                            |
|000007FEEA950000|api-ms-win-core-file-l1-2-0.dll          |ApiSet Stub DLL                                                 |10.0.10586.1171   |11616    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEEA980000|browcli.dll                              |Browser Service Client DLL                                      |6.1.7601.17887    |59392    |2012-07-04 16:13:27|C:\Windows\System32\                                                                                            |
|000007FEEA9A0000|dssenh.dll                               |Microsoft Enhanced DSS and Diffie-Hellman Cryptographic Provider|6.1.7600.16385    |190880   |2009-07-13 19:43:36|C:\Windows\System32\                                                                                            |
|000007FEEA9E0000|oledlg.dll                               |OLE User Interface Support                                      |6.1.7600.16385    |128000   |2009-07-13 19:41:53|C:\Windows\System32\                                                                                            |
|000007FEEAA40000|wdmaud.drv                               |Winmm  audio system driver                                      |6.1.7601.17514    |217088   |2010-11-20 21:24:32|C:\Windows\System32\                                                                                            |
|000007FEEAA80000|authui.dll                               |Windows Authentication UI                                       |6.1.7601.24000    |1942016  |2017-12-31 20:18:17|C:\Windows\System32\                                                                                            |
|000007FEEBED0000|api-ms-win-core-file-l2-1-0.dll          |ApiSet Stub DLL                                                 |10.0.10586.1171   |11616    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEEC260000|api-ms-win-core-localization-l1-2-0.dll  |ApiSet Stub DLL                                                 |10.0.10586.1171   |14176    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEEC3F0000|unidrvui.dll                             |UniDriver User Interface                                        |0.3.7601.17514    |884224   |2010-11-20 21:23:47|C:\Windows\System32\spool\drivers\x64\3\                                                                        |
|000007FEEC6F0000|api-ms-win-downlevel-advapi32-l2-1-0.dll |ApiSet Stub DLL                                                 |6.2.9200.16492    |3584     |2013-03-30 11:29:11|C:\Windows\System32\                                                                                            |
|000007FEEC8F0000|api-ms-win-core-timezone-l1-1-0.dll      |ApiSet Stub DLL                                                 |10.0.10586.1171   |11616    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEECFA0000|npmproxy.dll                             |Network List Manager Proxy                                      |6.1.7600.16385    |31744    |2009-07-13 19:41:53|C:\Windows\System32\                                                                                            |
|000007FEF12B0000|ntshrui.dll                              |Shell extensions for sharing                                    |6.1.7601.17755    |509952   |2012-01-04 04:44:20|C:\Windows\System32\                                                                                            |
|000007FEF1330000|api-ms-win-downlevel-shlwapi-l2-1-0.dll  |ApiSet Stub DLL                                                 |6.2.9200.16492    |5632     |2013-03-30 11:29:11|C:\Windows\System32\                                                                                            |
|000007FEF23D0000|netprofm.dll                             |Network List Manager                                            |6.1.7600.16385    |459776   |2009-07-13 19:41:52|C:\Windows\System32\                                                                                            |
|000007FEF3440000|winrnr.dll                               |LDAP RnR Provider DLL                                           |6.1.7600.16385    |28672    |2009-07-13 19:41:56|C:\Windows\System32\                                                                                            |
|000007FEF3450000|pnrpnsp.dll                              |PNRP Name Space Provider                                        |6.1.7600.16385    |86016    |2009-07-13 19:41:53|C:\Windows\System32\                                                                                            |
|000007FEF35B0000|NapiNSP.dll                              |E-mail Naming Shim Provider                                     |6.1.7600.16385    |68096    |2009-07-13 19:41:52|C:\Windows\System32\                                                                                            |
|000007FEF3850000|cscapi.dll                               |Offline Files Win32 API                                         |6.1.7601.17514    |46080    |2010-11-20 21:23:51|C:\Windows\System32\                                                                                            |
|000007FEF4CE0000|rasadhlp.dll                             |Remote Access AutoDial Helper                                   |6.1.7600.16385    |16384    |2009-07-13 19:41:53|C:\Windows\System32\                                                                                            |
|000007FEF4EE0000|mpr.dll                                  |Multiple Provider Router DLL                                    |6.1.7600.16385    |80896    |2009-07-13 19:41:26|C:\Windows\System32\                                                                                            |
|000007FEF5790000|dbghelp.dll                              |Windows Image Helper                                            |6.1.7601.17514    |1087488  |2010-11-20 21:24:00|C:\Windows\System32\                                                                                            |
|000007FEF5D40000|SciLexer.dll                             |Scintilla.DLL - a Source Editing Component                      |3.6.1.2           |675328   |2016-12-09 13:34:40|C:\Program Files\Quest Software\Toad for Oracle 2017 R2 Edition\Toad for Oracle 12.12\                          |
|000007FEF6750000|hhctrl.ocx                               |Microsoft® HTML Help Control                                    |6.1.7600.16385    |701952   |2009-07-13 19:38:53|C:\Windows\System32\                                                                                            |
|000007FEF6810000|qwave.dll                                |Windows NT                                                      |6.1.7600.16385    |242688   |2009-07-13 19:41:53|C:\Windows\System32\                                                                                            |
|000007FEF69E0000|unidrv.dll                               |Unidrv Printer Driver                                           |0.3.7601.17514    |479232   |2010-11-20 21:23:47|C:\Windows\System32\spool\drivers\x64\3\                                                                        |
|000007FEF7950000|wsock32.dll                              |Windows Socket 32-Bit DLL                                       |6.1.7600.16385    |18432    |2009-07-13 19:41:58|C:\Windows\System32\                                                                                            |
|000007FEF7F90000|mscms.dll                                |Microsoft Color Matching System DLL                             |6.1.7601.23971    |625664   |2017-12-05 11:36:41|C:\Windows\System32\                                                                                            |
|000007FEF89B0000|msacm32.dll                              |Microsoft ACM Audio Filter                                      |6.1.7600.16385    |83456    |2009-07-13 19:41:27|C:\Windows\System32\                                                                                            |
|000007FEF8C30000|winspool.drv                             |Windows Spooler Driver                                          |6.1.7601.17514    |442368   |2010-11-20 21:23:55|C:\Windows\System32\                                                                                            |
|000007FEF8D50000|msxml6.dll                               |MSXML 6.0 SP3                                                   |6.30.7601.24000   |2004480  |2017-12-31 20:18:24|C:\Windows\System32\                                                                                            |
|000007FEF9020000|dhcpcsvc6.DLL                            |DHCPv6 Client                                                   |6.1.7601.17970    |55296    |2012-10-09 12:17:13|C:\Windows\System32\                                                                                            |
|000007FEF9040000|dhcpcsvc.dll                             |DHCP Client Service                                             |6.1.7600.16385    |87040    |2009-07-13 19:40:28|C:\Windows\System32\                                                                                            |
|000007FEF9070000|FWPUCLNT.DLL                             |FWP/IPsec User-Mode API                                         |6.1.7601.24000    |324096   |2017-12-31 20:18:20|C:\Windows\System32\                                                                                            |
|000007FEF94C0000|midimap.dll                              |Microsoft MIDI Mapper                                           |6.1.7600.16385    |20480    |2009-07-13 19:41:23|C:\Windows\System32\                                                                                            |
|000007FEF9580000|oleacc.dll                               |Active Accessibility Core Component                             |7.0.0.0           |331776   |2011-08-26 23:37:48|C:\Windows\System32\                                                                                            |
|000007FEF9660000|AudioSes.dll                             |Audio Session                                                   |6.1.7601.23471    |295936   |2016-06-14 11:16:23|C:\Windows\System32\                                                                                            |
|000007FEF9720000|msacm32.drv                              |Microsoft Sound Mapper                                          |6.1.7600.16385    |25600    |2009-07-13 19:38:50|C:\Windows\System32\                                                                                            |
|000007FEF9760000|slc.dll                                  |Software Licensing Client Dll                                   |6.1.7600.16385    |30720    |2009-07-13 19:41:54|C:\Windows\System32\                                                                                            |
|000007FEF9770000|winmm.dll                                |MCI API DLL                                                     |6.1.7600.16385    |217600   |2009-07-13 19:41:56|C:\Windows\System32\                                                                                            |
|000007FEF9960000|nlaapi.dll                               |Network Location Awareness 2                                    |6.1.7601.24000    |70656    |2017-12-31 20:18:24|C:\Windows\System32\                                                                                            |
|000007FEF9C40000|msftedit.dll                             |Rich Text Edit Control, v4.1                                    |5.41.21.2510      |799744   |2010-11-20 21:24:01|C:\Windows\System32\                                                                                            |
|000007FEF9D10000|WinSCard.dll                             |Microsoft Smart Card API                                        |6.1.7601.17514    |217600   |2010-11-20 21:24:11|C:\Windows\System32\                                                                                            |
|000007FEF9D70000|tiptsf.dll                               |Tablet PC Input Panel Text Services Framework                   |6.1.7601.18984    |503296   |2015-09-01 12:14:28|C:\Program Files\Common Files\microsoft shared\ink\                                                             |
|000007FEF9F40000|samcli.dll                               |Security Accounts Manager Client DLL                            |6.1.7601.17514    |67584    |2010-11-20 21:24:28|C:\Windows\System32\                                                                                            |
|000007FEF9F70000|credui.dll                               |Credential Manager User Interface                               |6.1.7601.18276    |197120   |2013-10-03 20:25:17|C:\Windows\System32\                                                                                            |
|000007FEFA2A0000|IPHLPAPI.DLL                             |IP Helper API                                                   |6.1.7601.17514    |145920   |2010-11-20 21:24:16|C:\Windows\System32\                                                                                            |
|000007FEFA2E0000|msimg32.dll                              |GDIEXT Client DLL                                               |6.1.7600.16385    |8192     |2009-07-13 19:41:29|C:\Windows\System32\                                                                                            |
|000007FEFA3E0000|dui70.dll                                |Windows DirectUI Engine                                         |6.1.7600.16385    |976896   |2009-07-13 19:40:34|C:\Windows\System32\                                                                                            |
|000007FEFA680000|wkscli.dll                               |Workstation Service Client DLL                                  |6.1.7601.17514    |71680    |2010-11-20 21:24:26|C:\Windows\System32\                                                                                            |
|000007FEFA6A0000|api-ms-win-crt-runtime-l1-1-0.dll        |ApiSet Stub DLL                                                 |10.0.10586.1171   |16224    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEFA710000|winnsi.dll                               |Network Store Information RPC interface                         |6.1.7601.23889    |25600    |2017-08-11 00:35:06|C:\Windows\System32\                                                                                            |
|000007FEFA720000|netutils.dll                             |Net Win32 API Helpers DLL                                       |6.1.7601.17514    |29184    |2010-11-20 21:24:03|C:\Windows\System32\                                                                                            |
|000007FEFA730000|netapi32.dll                             |Net Win32 API DLL                                               |6.1.7601.17887    |73216    |2012-07-04 16:16:43|C:\Windows\System32\                                                                                            |
|000007FEFA750000|traffic.dll                              |Microsoft Traffic Control 1.0 DLL                               |6.1.7601.24000    |39424    |2017-12-31 20:18:31|C:\Windows\System32\                                                                                            |
|000007FEFA770000|avrt.dll                                 |Multimedia Realtime Runtime                                     |6.1.7600.16385    |18432    |2009-07-13 19:40:05|C:\Windows\System32\                                                                                            |
|000007FEFA780000|powrprof.dll                             |Power Profile Helper DLL                                        |6.1.7600.16385    |167424   |2009-07-13 19:41:53|C:\Windows\System32\                                                                                            |
|000007FEFAB40000|WindowsCodecs.dll                        |Microsoft Windows Codecs Library                                |6.2.9200.21830    |1424896  |2016-04-08 21:52:25|C:\Windows\System32\                                                                                            |
|000007FEFACB0000|xmllite.dll                              |Microsoft XmlLite Library                                       |1.3.1001.0        |199680   |2011-06-15 23:49:32|C:\Windows\System32\                                                                                            |
|000007FEFACF0000|dwmapi.dll                               |Microsoft Desktop Window Manager API                            |6.1.7601.18917    |82944    |2015-07-09 11:58:26|C:\Windows\System32\                                                                                            |
|000007FEFAD10000|MMDevAPI.dll                             |MMDevice API                                                    |6.1.7600.16385    |284160   |2009-07-13 19:41:26|C:\Windows\System32\                                                                                            |
|000007FEFAD80000|duser.dll                                |Windows DirectUser Engine                                       |6.1.7600.16385    |260608   |2009-07-13 19:40:34|C:\Windows\System32\                                                                                            |
|000007FEFAF00000|GdiPlus.dll                              |Microsoft GDI+                                                  |6.1.7601.23894    |2171904  |2017-08-16 09:29:12|C:\Windows\winsxs\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.23894_none_145eb2808b8d6928\        |
|000007FEFB120000|uxtheme.dll                              |Microsoft UxTheme Library                                       |6.1.7600.16385    |332288   |2009-07-13 19:41:56|C:\Windows\System32\                                                                                            |
|000007FEFB180000|propsys.dll                              |Microsoft Property System                                       |7.0.7601.17514    |1212416  |2010-11-20 21:23:55|C:\Windows\System32\                                                                                            |
|000007FEFB2B0000|samlib.dll                               |SAM Library DLL                                                 |6.1.7601.23677    |106496   |2017-02-09 10:32:03|C:\Windows\System32\                                                                                            |
|000007FEFB300000|comctl32.dll                             |User Experience Controls Library                                |6.10.7601.18837   |2030592  |2015-04-24 12:12:05|C:\Windows\winsxs\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.18837_none_fa3b1e3d17594757\|
|000007FEFB500000|cryptui.dll                              |Microsoft Trust UI Provider                                     |6.1.7601.23471    |1068544  |2016-06-14 11:16:25|C:\Windows\System32\                                                                                            |
|000007FEFB620000|IconCodecService.dll                     |Converts a PNG part of the icon to a legacy bmp icon            |6.1.7600.16385    |14336    |2009-07-13 19:41:05|C:\Windows\System32\                                                                                            |
|000007FEFBAC0000|ntmarta.dll                              |Windows NT MARTA provider                                       |6.1.7600.16385    |162304   |2009-07-13 19:41:53|C:\Windows\System32\                                                                                            |
|000007FEFBBB0000|WSHTCPIP.DLL                             |Winsock2 Helper DLL (TL/IPv4)                                   |6.1.7600.16385    |13312    |2009-07-13 19:41:58|C:\Windows\System32\                                                                                            |
|000007FEFBC70000|version.dll                              |Version Checking and File Installation Libraries                |6.1.7600.16385    |29184    |2009-07-13 19:41:56|C:\Windows\System32\                                                                                            |
|000007FEFBCE0000|api-ms-win-core-synch-l1-2-0.dll         |ApiSet Stub DLL                                                 |10.0.10586.1171   |12128    |2017-09-07 07:05:27|C:\Windows\System32\                                                                                            |
|000007FEFBE60000|wtsapi32.dll                             |Windows Remote Desktop Session Host Server SDK APIs             |6.1.7600.16385    |54272    |2009-07-13 19:41:58|C:\Windows\System32\                                                                                            |
|000007FEFBFD0000|winsta.dll                               |Winstation Library                                              |6.1.7601.18540    |235520   |2014-07-16 20:07:58|C:\Windows\System32\                                                                                            |
|000007FEFC090000|credssp.dll                              |Credential Delegation Security Package                          |6.1.7601.24000    |22016    |2017-12-31 20:18:18|C:\Windows\System32\                                                                                            |
|000007FEFC190000|rsaenh.dll                               |Microsoft Enhanced Cryptographic Provider                       |6.1.7600.16385    |281256   |2009-07-13 19:43:15|C:\Windows\System32\                                                                                            |
|000007FEFC280000|logoncli.dll                             |Net Logon Client DLL                                            |6.1.7601.17514    |186880   |2010-11-20 21:24:07|C:\Windows\System32\                                                                                            |
|000007FEFC2B0000|dnsapi.dll                               |DNS Client API DLL                                              |6.1.7601.17570    |357888   |2011-03-03 00:24:15|C:\Windows\System32\                                                                                            |
|000007FEFC3C0000|msv1_0.dll                               |Microsoft Authentication Package v1.0                           |6.1.7601.24000    |316928   |2017-12-31 20:18:24|C:\Windows\System32\                                                                                            |
|000007FEFC420000|wship6.dll                               |Winsock2 Helper DLL (TL/IPv6)                                   |6.1.7600.16385    |13824    |2009-07-13 19:41:58|C:\Windows\System32\                                                                                            |
|000007FEFC430000|mswsock.dll                              |Microsoft Windows Sockets 2.0 Service Provider                  |6.1.7601.23451    |327168   |2016-05-11 11:02:42|C:\Windows\System32\                                                                                            |
|000007FEFC490000|cryptsp.dll                              |Cryptographic Service Provider API                              |6.1.7601.23471    |81920    |2016-06-14 11:16:25|C:\Windows\System32\                                                                                            |
|000007FEFC5E0000|bcrypt.dll                               |Windows Cryptographic Primitives Library                        |6.1.7601.24000    |123904   |2017-12-31 20:18:17|C:\Windows\System32\                                                                                            |
|000007FEFC710000|srvcli.dll                               |Server Service Client DLL                                       |6.1.7601.17514    |128000   |2010-11-20 21:24:03|C:\Windows\System32\                                                                                            |
|000007FEFC740000|cryptdll.dll                             |Cryptography Manager                                            |6.1.7600.16385    |66048    |2009-07-13 19:40:24|C:\Windows\System32\                                                                                            |
|000007FEFC8A0000|secur32.dll                              |Security Support Provider Interface                             |6.1.7601.24000    |28160    |2017-12-31 20:18:28|C:\Windows\System32\                                                                                            |
|000007FEFCA70000|sspicli.dll                              |Security Support Provider Interface                             |6.1.7601.24000    |135680   |2017-12-31 20:18:30|C:\Windows\System32\                                                                                            |
|000007FEFCAA0000|apphelp.dll                              |Application Compatibility Client Library                        |6.1.7601.19050    |342016   |2015-10-29 11:50:30|C:\Windows\System32\                                                                                            |
|000007FEFCB00000|CRYPTBASE.dll                            |Base cryptographic API DLL                                      |6.1.7601.24000    |43520    |2017-12-31 20:18:18|C:\Windows\System32\                                                                                            |
|000007FEFCBB0000|RpcRtRemote.dll                          |Remote RPC Extension                                            |6.1.7601.17514    |65536    |2010-11-20 21:24:01|C:\Windows\System32\                                                                                            |
|000007FEFCC60000|msasn1.dll                               |ASN.1 Runtime APIs                                              |6.1.7601.17514    |46592    |2010-11-20 21:24:22|C:\Windows\System32\                                                                                            |
|000007FEFCC70000|profapi.dll                              |User Profile Basic API                                          |6.1.7600.16385    |44032    |2009-07-13 19:41:53|C:\Windows\System32\                                                                                            |
|000007FEFCC80000|api-ms-win-downlevel-normaliz-l1-1-0.dll |ApiSet Stub DLL                                                 |6.2.9200.16492    |2560     |2013-03-30 11:29:11|C:\Windows\System32\                                                                                            |
|000007FEFCC90000|cfgmgr32.dll                             |Configuration Manager DLL                                       |6.1.7601.17514    |207872   |2010-11-20 21:24:00|C:\Windows\System32\                                                                                            |
|000007FEFCCD0000|crypt32.dll                              |Crypto API32                                                    |6.1.7601.23769    |1483776  |2017-04-12 09:32:10|C:\Windows\System32\                                                                                            |
|000007FEFCE40000|KERNELBASE.dll                           |Windows NT BASE API Client DLL                                  |6.1.7601.24000    |419840   |2017-12-31 20:18:22|C:\Windows\System32\                                                                                            |
|000007FEFCEB0000|api-ms-win-downlevel-user32-l1-1-0.dll   |ApiSet Stub DLL                                                 |6.2.9200.16492    |4096     |2013-03-30 11:29:11|C:\Windows\System32\                                                                                            |
|000007FEFCF70000|api-ms-win-downlevel-advapi32-l1-1-0.dll |ApiSet Stub DLL                                                 |6.2.9200.16492    |10752    |2013-03-30 11:29:11|C:\Windows\System32\                                                                                            |
|000007FEFCF80000|api-ms-win-downlevel-version-l1-1-0.dll  |ApiSet Stub DLL                                                 |6.2.9200.16492    |3072     |2013-03-30 11:29:11|C:\Windows\System32\                                                                                            |
|000007FEFCF90000|api-ms-win-downlevel-shlwapi-l1-1-0.dll  |ApiSet Stub DLL                                                 |6.2.9200.16492    |9728     |2013-03-30 11:29:11|C:\Windows\System32\                                                                                            |
|000007FEFCFA0000|devobj.dll                               |Device Information Set DLL                                      |6.1.7600.16385    |93184    |2009-07-13 19:40:28|C:\Windows\System32\                                                                                            |
|000007FEFD000000|userenv.dll                              |Userenv                                                         |6.1.7601.17514    |109056   |2010-11-20 21:24:03|C:\Windows\System32\                                                                                            |
|000007FEFD020000|wininet.dll                              |Internet Extensions for Win32                                   |11.0.9600.18894   |3241472  |2017-12-29 01:50:14|C:\Windows\System32\                                                                                            |
|000007FEFD350000|clbcatq.dll                              |COM+ Configuration Catalog                                      |2001.12.8530.16385|607744   |2009-07-13 19:40:15|C:\Windows\System32\                                                                                            |
|000007FEFD3F0000|msctf.dll                                |MSCTF Server DLL                                                |6.1.7601.23915    |1068544  |2017-09-13 09:28:01|C:\Windows\System32\                                                                                            |
|000007FEFD500000|oleaut32.dll                             |                                                                |6.1.7601.23775    |876544   |2017-04-17 09:37:29|C:\Windows\System32\                                                                                            |
|000007FEFD5E0000|imagehlp.dll                             |Windows NT Image Helper                                         |6.1.7601.18288    |81408    |2013-10-18 20:18:57|C:\Windows\System32\                                                                                            |
|000007FEFD600000|imm32.dll                                |Multi-User Windows IMM32 API Client DLL                         |6.1.7600.16385    |167424   |2009-07-13 19:41:09|C:\Windows\System32\                                                                                            |
|000007FEFD630000|sechost.dll                              |Host for SCM/SDDL/LSA Lookup APIs                               |6.1.7601.18869    |113664   |2015-05-25 12:19:09|C:\Windows\System32\                                                                                            |
|000007FEFD650000|lpk.dll                                  |Language Pack                                                   |6.1.7601.23974    |41472    |2017-12-13 10:27:52|C:\Windows\System32\                                                                                            |
|000007FEFD660000|shlwapi.dll                              |Shell Light-weight Utility Library                              |6.1.7601.17514    |448512   |2010-11-20 21:24:22|C:\Windows\System32\                                                                                            |
|000007FEFD6E0000|shell32.dll                              |Windows Shell Common Dll                                        |6.1.7601.24000    |14183936 |2017-12-31 20:18:30|C:\Windows\System32\                                                                                            |
|000007FEFE470000|comdlg32.dll                             |Common Dialogs DLL                                              |6.1.7601.17514    |594432   |2010-11-20 21:24:22|C:\Windows\System32\                                                                                            |
|000007FEFE510000|Wldap32.dll                              |Win32 LDAP API DLL                                              |6.1.7601.23889    |313856   |2017-08-11 00:35:06|C:\Windows\System32\                                                                                            |
|000007FEFE5F0000|ole32.dll                                |Microsoft OLE for Windows                                       |6.1.7601.24000    |2066432  |2017-12-31 20:18:27|C:\Windows\System32\                                                                                            |
|000007FEFE7F0000|urlmon.dll                               |OLE32 Extensions for Win32                                      |11.0.9600.18894   |1545728  |2017-12-29 01:39:08|C:\Windows\System32\                                                                                            |
|000007FEFE980000|msvcrt.dll                               |Windows NT CRT DLL                                              |7.0.7601.17744    |634880   |2011-12-16 02:46:06|C:\Windows\System32\                                                                                            |
|000007FEFEA20000|advapi32.dll                             |Advanced Windows 32 Base API                                    |6.1.7601.24000    |880640   |2017-12-31 20:18:16|C:\Windows\System32\                                                                                            |
|000007FEFEB00000|rpcrt4.dll                               |Remote Procedure Call Runtime                                   |6.1.7601.24000    |1212928  |2017-12-31 20:18:28|C:\Windows\System32\                                                                                            |
|000007FEFEC30000|usp10.dll                                |Uniscribe Unicode script processor                              |1.626.7601.23894  |806912   |2017-08-16 09:29:31|C:\Windows\System32\                                                                                            |
|000007FEFED00000|setupapi.dll                             |Windows Setup API                                               |6.1.7601.17514    |1900544  |2010-11-20 21:24:28|C:\Windows\System32\                                                                                            |
|000007FEFEEE0000|gdi32.dll                                |GDI Client DLL                                                  |6.1.7601.23914    |405504   |2017-09-08 09:30:44|C:\Windows\System32\                                                                                            |
|000007FEFEF50000|iertutil.dll                             |Run time utility for Internet Explorer                          |11.0.9600.18894   |2900480  |2017-12-29 02:52:03|C:\Windows\System32\                                                                                            |
|000007FEFF220000|nsi.dll                                  |NSI User-mode interface DLL                                     |6.1.7601.23889    |13312    |2017-08-11 00:35:01|C:\Windows\System32\                                                                                            |
|000007FEFF230000|ws2_32.dll                               |Windows Socket 2.0 32-Bit DLL                                   |6.1.7601.23451    |296448   |2016-05-11 11:02:50|C:\Windows\System32\                                                                                            |
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Processes Information:
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|ID   |Name                                 |Description                                                           |Version        |Memory   |Priority    |Threads|Path                                                                                  |User  |Session|
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|744  |csrss.exe                            |Client Server Runtime Process                                         |6.1.7600.16385 |0        |High        |16     |C:\Windows\System32\                                                                  |      |1      |
|992  |winlogon.exe                         |Windows Logon Application                                             |6.1.7601.24000 |10756096 |High        |3      |C:\Windows\System32\                                                                  |SYSTEM|1      |
|1040 |IAAnotif.exe                         |Event Monitor User Notification Tool                                  |8.9.0.1023     |8601600  |Normal      |4      |C:\Program Files (x86)\Intel\Intel Matrix Storage Manager\                            |David |1      |
|1504 |RAVCpl64.exe                         |Realtek HD Audio Manager                                              |1.0.0.482      |13602816 |Normal      |11     |C:\Program Files\Realtek\Audio\HDA\                                                   |David |1      |
|1524 |iTunesHelper.exe                     |iTunesHelper                                                          |12.6.1.25      |16195584 |Normal      |9      |C:\Program Files\iTunes\                                                              |David |1      |
|1528 |NVDisplay.Container.exe              |NVIDIA Container                                                      |1.2.0.0        |42180608 |Normal      |15     |C:\Program Files\NVIDIA Corporation\Display.NvContainer\                              |SYSTEM|1      |
|1780 |dwm.exe                              |Desktop Window Manager                                                |6.1.7600.16385 |179363840|High        |6      |C:\Windows\System32\                                                                  |David |1      |
|1784 |HD-Agent.exe                         |BlueStacks Agent                                                      |2.0.0.1011     |46264320 |Normal      |26     |C:\Program Files (x86)\BlueStacks\                                                    |David |1      |
|1808 |LightScribeControlPanel.exe          |                                                                      |1.18.14.1      |12369920 |Normal      |1      |C:\Program Files (x86)\Common Files\LightScribe\                                      |David |1      |
|1832 |msseces.exe                          |Microsoft Security Client User Interface                              |4.10.209.0     |63029248 |Normal      |5      |C:\Program Files\Microsoft Security Client\                                           |David |1      |
|2260 |iexplore.exe                         |Internet Explorer                                                     |11.0.9600.18894|102236160|Normal      |20     |C:\Program Files (x86)\Internet Explorer\                                             |David |1      |
|2576 |BCU.exe                              |Browser Configuration Utility                                         |1.0.10.0       |53141504 |Normal      |4      |C:\Program Files (x86)\DeviceVM\Browser Configuration Utility\                        |David |1      |
|2800 |TurboV.exe                           |                                                                      |1.0.0.10       |36495360 |Normal      |1      |C:\Program Files\ASUS\TurboV\                                                         |David |1      |
|2808 |QfinderPro.exe                       |Qfinder Pro                                                           |6.4.0.1220     |46436352 |Normal      |13     |C:\Program Files (x86)\QNAP\Qfinder\                                                  |David |1      |
|3288 |NetBak.exe                           |NetBak Replicator Application                                         |4.5.4.1110     |24928256 |Below-Normal|12     |C:\Program Files\QNAP\NetBak\                                                         |David |1      |
|3428 |ipoint.exe                           |IPoint.exe                                                            |2.3.188.0      |18649088 |Normal      |10     |C:\Program Files\Microsoft Mouse and Keyboard Center\                                 |David |1      |
|3516 |hpwuschd2.exe                        |hpwuSchd Application                                                  |80.1.1.0       |4284416  |Normal      |1      |C:\Program Files (x86)\HP\HP Software Update\                                         |David |1      |
|3520 |visicom_antiphishing.exe             |Visicom Media Anti-phishing Domain Advisor (Powered by Panda Security)|1.0.1.30       |39202816 |Normal      |7      |C:\ProgramData\Anti-phishing Domain Advisor\                                          |David |1      |
|4000 |sidebar.exe                          |Windows Desktop Gadgets                                               |6.1.7601.17514 |166371328|Normal      |78     |C:\Program Files\Windows Sidebar\                                                     |David |1      |
|4016 |PMBVolumeWatcher.exe                 |Media Check Tool                                                      |9.1.0.12152    |19144704 |Normal      |6      |C:\Program Files (x86)\Sony\PlayMemories Home\                                        |David |1      |
|4136 |taskhost.exe                         |Host Process for Windows Tasks                                        |6.1.7601.18010 |23973888 |Normal      |11     |C:\Windows\System32\                                                                  |David |1      |
|4396 |iSCSIAgent.exe                       |iSCSIAgent Application                                                |1.0.0.1        |9515008  |Below-Normal|3      |C:\Program Files (x86)\QNAP\Qfinder\                                                  |David |1      |
|4668 |taskmgr.exe                          |Windows Task Manager                                                  |6.1.7601.17514 |23662592 |High        |6      |C:\Windows\System32\                                                                  |David |1      |
|4700 |taskeng.exe                          |Task Scheduler Engine                                                 |6.1.7601.17514 |9261056  |Normal      |8      |C:\Windows\System32\                                                                  |David |1      |
|4728 |MotoHelperAgent.exe                  |MotoHelperAgent                                                       |2.3.7.0        |12320768 |Normal      |3      |C:\Program Files (x86)\Motorola Mobility\Motorola Device Manager\                     |David |1      |
|4768 |brs.exe                              |brs                                                                   |3.2010.1.4113  |4550656  |Normal      |1      |C:\Program Files (x86)\Cyberlink\Shared files\                                        |David |1      |
|4972 |itype.exe                            |IType.exe                                                             |2.3.188.0      |2342912  |Normal      |7      |C:\Program Files\Microsoft Mouse and Keyboard Center\                                 |David |1      |
|5040 |nvcontainer.exe                      |NVIDIA Container                                                      |1.6.2250.7081  |47460352 |Normal      |24     |C:\Program Files (x86)\NVIDIA Corporation\NvContainer\                                |David |1      |
|5076 |Fitbit Connect.exe                   |Fitbit Connect Desktop Client RC                                      |2.0.1.6742     |23891968 |Normal      |20     |C:\Program Files (x86)\Fitbit Connect\                                                |David |1      |
|5164 |jusched.exe                          |Java Update Scheduler                                                 |2.8.144.1      |18030592 |Normal      |6      |C:\Program Files (x86)\Common Files\Java\Java Update\                                 |David |1      |
|5240 |MSOSYNC.EXE                          |Microsoft Office Document Cache                                       |14.0.7159.5000 |13651968 |Normal      |12     |E:\Program Files (x86)\Microsoft Office\Office14\                                     |David |1      |
|5268 |nusb3mon.exe                         |USB 3.0 Monitor                                                       |2.0.0.0        |6475776  |Normal      |4      |C:\Program Files (x86)\Renesas Electronics\USB 3.0 Host Controller Driver\Application\|David |1      |
|5352 |uedit64.exe                          |UltraEdit Professional Text/Hex Editor                                |23.20.0.28     |83775488 |Normal      |12     |C:\Program Files\IDM Computer Solutions\UltraEdit\                                    |David |1      |
|5452 |VCDDaemon.exe                        |Virtual CloneDrive Daemon                                             |5.4.3.3        |6152192  |Normal      |3      |E:\Program Files (x86)\Elaborate Bytes\VirtualCloneDrive\                             |David |1      |
|5524 |jucheck.exe                          |Java Update Checker                                                   |2.8.144.1      |17690624 |Normal      |7      |C:\Program Files (x86)\Common Files\Java\Java Update\                                 |David |1      |
|5556 |Pulse.exe                            |Pulse Secure User Interface                                           |5.3.4.1183     |36417536 |Normal      |9      |C:\Program Files (x86)\Common Files\Pulse Secure\JamUI\                               |David |1      |
|5672 |explorer.exe                         |Windows Explorer                                                      |6.1.7601.23537 |170569728|Normal      |32     |C:\Windows\                                                                           |David |1      |
|5808 |ScanToPCActivationApp.exe            |ScanToPCActivationApp                                                 |28.0.1315.0    |16252928 |Normal      |5      |C:\Program Files\HP\HP Officejet 6600\Bin\                                            |David |1      |
|6404 |taskhost.exe                         |Host Process for Windows Tasks                                        |6.1.7601.18010 |13262848 |Normal      |6      |C:\Windows\System32\                                                                  |David |1      |
|7276 |PulseSetupClient.exe                 |Pulse Secure Setup Client                                             |8.3.4.1183     |11005952 |Normal      |5      |C:\Users\David\AppData\Roaming\Pulse Secure\Setup Client\                             |David |1      |
|7300 |GalaxyClient.exe                     |GOG Galaxy                                                            |1.2.37.7       |65564672 |Normal      |59     |C:\Program Files (x86)\GalaxyClient\                                                  |David |1      |
|7556 |GalaxyClient Helper.exe              |GalaxyClient Helper Application                                       |1.2.37.7       |85860352 |Normal      |27     |C:\Program Files (x86)\GalaxyClient\                                                  |David |1      |
|7596 |GOG Galaxy Notifications Renderer.exe|GOG Galaxy Notifications Renderer                                     |1.2.37.7       |69058560 |Normal      |38     |C:\Program Files (x86)\GalaxyClient\                                                  |David |1      |
|7604 |GalaxyClient Helper.exe              |GalaxyClient Helper Application                                       |1.2.37.7       |82087936 |Normal      |20     |C:\Program Files (x86)\GalaxyClient\                                                  |David |1      |
|8496 |iexplore.exe                         |Internet Explorer                                                     |11.0.9600.18894|74932224 |Normal      |18     |C:\Program Files\Internet Explorer\                                                   |David |1      |
|8668 |HPNetworkCommunicator.exe            |HPNetworkCommunicator                                                 |28.0.1315.0    |14655488 |Normal      |7      |C:\Program Files\HP\HP Officejet 6600\Bin\                                            |David |1      |
|9088 |NVIDIA Web Helper.exe                |NVIDIA Web Helper Service                                             |6.9.5.0        |26451968 |Below-Normal|85     |C:\Program Files (x86)\NVIDIA Corporation\NvNode\                                     |David |1      |
|9096 |conhost.exe                          |Console Window Host                                                   |6.1.7601.24000 |5185536  |Normal      |1      |C:\Windows\System32\                                                                  |David |1      |
|9660 |prevhost.exe                         |Preview Handler Surrogate Host                                        |6.1.7601.17562 |10981376 |Normal      |4      |C:\Windows\System32\                                                                  |David |1      |
|10280|iexplore.exe                         |Internet Explorer                                                     |11.0.9600.18894|659152896|Normal      |73     |C:\Program Files (x86)\Internet Explorer\                                             |David |1      |
|11064|BCompare.exe                         |Beyond Compare                                                        |3.3.13.18981   |28409856 |Normal      |3      |C:\Program Files (x86)\Beyond Compare 3\                                              |David |1      |
|11224|SmartFTP.exe                         |SmartFTP Client                                                       |8.0.2356.4     |95268864 |Normal      |25     |C:\Program Files\SmartFTP Client\                                                     |David |1      |
|12296|Toad.exe                             |Toad® for Oracle                                                      |12.12.0.39     |509399040|Normal      |8      |C:\Program Files\Quest Software\Toad for Oracle 2017 R2 Edition\Toad for Oracle 12.12\|David |1      |
|12360|mstsc.exe                            |Remote Desktop Connection                                             |6.3.9600.16415 |87617536 |Normal      |17     |C:\Windows\System32\                                                                  |David |1      |
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Assembler Information:
---------------------------------------------------------------------------------------------------------------------------------
; Base Address: $9AC9000, Allocation Base: $4190000, Region Size: 2613248
; Allocation Protect: PAGE_EXECUTE_WRITECOPY, Protect: PAGE_EXECUTE_READ
; State: MEM_COMMIT, Type: MEM_IMAGE
;
;
; OraClasses.TOraLob.IsTemporary (Line=16116 - Offset=0)
; ------------------------------------------------------
0000000009AC9DB0  55            PUSH RBP
0000000009AC9DB1  56            PUSH RSI
0000000009AC9DB2  53            PUSH RBX
0000000009AC9DB3  4883EC30      SUB  RSP, $30
0000000009AC9DB7  488BEC        MOV  RBP, RSP
0000000009AC9DBA  4889CB        MOV  RBX, RCX
;
; Line=16118 - Offset=13
; ----------------------
0000000009AC9DBD  488B4340      MOV  RAX, [RBX+$40]
0000000009AC9DC1  488B4010      MOV  RAX, [RAX+$10]
;
; Line=16118 - Offset=21
; ----------------------
0000000009AC9DC5  66817870A41F  CMP  WORD PTR [RAX+$70], $1FA4  ; <-- EXCEPTION
0000000009AC9DCB  723C          JB   +$3C                       ; ($0000000009AC9E09) OraClasses.TOraLob.IsTemporary (Line=16121)
;
; Line=16119 - Offset=29
; ----------------------
0000000009AC9DCD  4889D9        MOV  RCX, RBX
0000000009AC9DD0  E83B0F0000    CALL +$0F3B                     ; ($0000000009ACAD10) OraClasses.TOraLob.GethOCILobLocator
0000000009AC9DD5  4889C6        MOV  RSI, RAX
0000000009AC9DD8  4889D9        MOV  RCX, RBX
0000000009AC9DDB  E840F9FFFF    CALL -$06C0                     ; ($0000000009AC9720) OraClasses.TOraLob.GetOCI8
0000000009AC9DE0  488B4B40      MOV  RCX, [RBX+$40]
0000000009AC9DE4  488B4930      MOV  RCX, [RCX+$30]
0000000009AC9DE8  488B5340      MOV  RDX, [RBX+$40]
0000000009AC9DEC  488B5240      MOV  RDX, [RDX+$40]
0000000009AC9DF0  4989F0        MOV  R8, RSI
0000000009AC9DF3  4C8D4D2C      LEA  R9, [RBP+$2C]
0000000009AC9DF7  FF9008020000  CALL QWORD PTR [RAX+$00000208]
0000000009AC9DFD  4889D9        MOV  RCX, RBX
0000000009AC9E00  89C2          MOV  EDX, EAX
0000000009AC9E02  E829FBFFFF    CALL -$04D7                     ; ($0000000009AC9930) OraClasses.TOraLob.Check

Registers:
---------------------------------------------
RAX: 0000000000000000   RDI: 000000000042E750
RBX: 0000000033C173F0   RSI: 0000000009AFB701
RCX: 0000000033C173F0   RBP: 000000000042E590
RDX: 0000000009AFB701   RSP: 000000000042E590
R8 : 000000000042E702   R9 : 000000000042E9B0
R10: 0000000000000000   R11: 0000000000000203
R12: 0000000000000000   R13: 00000000FFFFFFFF
R14: 0000000009A5EFE8   R15: 00000000000E2626
RIP: 0000000009AC9DC5   FLG: 0000000000010206
EXP: 0000000009AC9DC5   STK: 000000000042E590

Stack:                               Memory Dump:
----------------------------------   -----------------------------------------------------------------------------------
00000000339ECBA8: 0000000009AFB701   0000000009AC9DC5: 66 81 78 70 A4 1F 72 3C 48 89 D9 E8 3B 0F 00 00  f.xp..r<H...;...
00000000339ECBA0: 0000000009A8EE28   0000000009AC9DD5: 48 89 C6 48 89 D9 E8 40 F9 FF FF 48 8B 4B 40 48  H..H...@...H.K@H
00000000339ECB98: 000000000042E540   0000000009AC9DE5: 8B 49 30 48 8B 53 40 48 8B 52 40 49 89 F0 4C 8D  .I0H.S@H.R@I..L.
00000000339ECB90: 000000000042E4F0   0000000009AC9DF5: 4D 2C FF 90 08 02 00 00 48 89 D9 89 C2 E8 29 FB  M,......H.....).
00000000339ECB88: 0000000026817318   0000000009AC9E05: FF FF EB 07 C7 45 2C 00 00 00 00 8B 45 2C 48 8D  .....E,.....E,H.
00000000339ECB80: 000000000042E4F0   0000000009AC9E15: 65 30 5B 5E 5D C3 CC CC CC CC CC 55 56 53 48 83  e0[^]......UVSH.
00000000339ECB78: 0000000009AC9888   0000000009AC9E25: EC 30 48 8B EC 48 89 CB 48 89 D9 E8 2B FC FF FF  .0H..H..H...+...
00000000339ECB70: 000000000042E5E0   0000000009AC9E35: 48 89 D9 E8 D3 0E 00 00 48 89 C6 48 89 D9 E8 D8  H.......H..H....
00000000339ECB68: 0000000009AFB701   0000000009AC9E45: F8 FF FF 48 8B 4B 40 48 8B 49 30 48 8B 53 40 48  ...H.K@H.I0H.S@H
00000000339ECB60: 0000000033C173F0   0000000009AC9E55: 8B 52 40 49 89 F0 4C 8D 4D 2C FF 90 78 02 00 00  .R@I..L.M,..x...
00000000339ECB58: 00000000206E9778   0000000009AC9E65: 48 89 D9 89 C2 E8 C1 FA FF FF 83 7D 2C 00 0F 95  H..........},...
00000000339ECB50: 0000000000000000   0000000009AC9E75: C0 48 8D 65 30 5B 5E 5D C3 CC CC 55 56 53 48 83  .H.e0[^]...UVSH.
00000000339ECB48: 000000002687DED8   0000000009AC9E85: EC 30 48 8B EC 48 89 CB 48 89 D9 E8 CB FB FF FF  .0H..H..H.......
00000000339ECB40: 00000000000006E8   0000000009AC9E95: 48 89 D9 E8 33 FC FF FF 48 89 D9 E8 7B FF FF FF  H...3...H...{...
00000000339ECB38: 0000000000000000   0000000009AC9EA5: 84 C0 74 47 48 89 D9 E8 5F 0E 00 00 48 89 C6 48  ..tGH..._...H..H
00000000339ECB30: 00000000206E0708   0000000009AC9EB5: 89 D9 E8 64 F8 FF FF 48 8B 4B 40 48 8B 49 38 48  ...d...H.K@H.I8H

RE: SQL Recall missing many successful executions

$
0
0

> For starters, I did not filter in the SQL recall window

A filter may be automatically applied to limit shown SQL to those executed against the active session. This is controlled by the option on Editor|Code Assist page to "Filter statements by active session." This is the renamed equivalent of the old "Show only statements for the active session" option if you had that set. The filter button also has a dropdown surfacing that same option as well as showing a set of suggested filters based on the properties of SQL gathered, but those require manual activation.

> Additionally, the filtering mechanism in previous versions used to be much more straight forward and visible with the SQL contains textbox right there that was clear and easy to see.

True, the old surfaced simple filtering very easily. A couple of points that may help going forward as you familiarize yourself with the new. 

  1. Filtering is more powerful
  2. The button image shows in red to indicate active filter, similar to other areas of Toad where you may have seen the same. Also, the status bar indicates that a filter is in use and what the criteria is.
  3. Filters can be saved.
  4. Filtering can be set using CTRL+F - think "Find" in text editors.

Michael

RE: SQL Recall missing many successful executions

$
0
0

Hi Michael, thanks for the reply as well as the tips.  I had previously made sure that the option to limit to active session only was disabled and had applied a filter against the Saved SQL, but because that was a while back and I hadn't set it against the Recent SQL, I was surprised to find that it had been applied to both.  It sounds like this new filtering system could be more robust and I'm sure I'll adjust to it.  That said, I'm really hoping they bring back the former SQL Recall layout which, to me, was much clearer and more user friendly.

Thanks again,

Christine

RE: SQL Recall missing many successful executions

$
0
0

> that was a while back and I hadn't set it against the Recent SQL

Ah, yes. Filter applies to both tabs.

> new filtering system could be more robust

If you are a regex fan like myself the new filtering supports regex searching. Super powerful. The regex engine used is PCRE (Perl compatible regex). There are also case sensitive and whole word options that are useful for non-regex searches. Similarly date range options as well. Be sure to check out the filter suggestions from that dropdown.

Michael


RE: SQL Recall missing many successful executions

$
0
0

Yes, I did notice the additional options (case sensitive, whole word options, etc.)  Thanks again for the additional info.

RE: a way to ensure formatted code ends with a newline

$
0
0

I queued it as QP-2830.

Option name = "Ensure formatted text ends with a newline"'. Checkbox.
Default value = unchecked (this is the current behavior).
Behavior when checked: if formatted text does not end with a newline then a newline will be appended.

Andre

RE: Team Coding Error Message - Parameter 'config_id' not found

Team Coding Error Message - Parameter 'config_id' not found

$
0
0

We are using Toad for Oracle v12.10.0.30 against an Oracle 12c R1 database. (32 bit Oracle client, 32 bit Toad, Windows 7 Enterprise 64 bit)

We use Team Coding and Serena PVCS Version Manager for source control.

I checked out several objects successfully (function, package spec, package body, etc.).

Whenever I try to check any of them in I receive the following error:

The hyperlink provides a lot of debug information for you all, but I didn't include it since it's a large amount of text.

Has anyone encountered this type of error?  If so, were you able to resolve it?  if you need to debug information I will be glad to post it.

Thanks in advance.

Unable to see instant client and connect in TOAD

$
0
0

TOAD 12.12.0.39

DBaas 12.2

Instant Client: 12.2 for 64bit

We are connecting to our Oracle Cloud database, using Instant Client.

This has been working well for months since I installed Instant Client and suddenly this morning, I get the error message: "c:\oracle\instantclient_12_2" does not exist  (see image below)

  • Instant client has been installed appropriately C:\Oracle\instantclient_12_2
  • PATH variable has been set up appropriately

I've already removed and re-installed Instant Client. I'm hoping I won't have to re-install Toad. Is there anything else that I should be checking that might have got corrupted? 

Thanks for the help

Annelize

    

Viewing all 4385 articles
Browse latest View live


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