Really basic - need help with interpreting the result autotrace

I am reviewing tunning of database to verify the effectiveness of my sql statements and I think AUTOTRACE is the first thing to look into.

I created two identical tables containing 250,000 lines. First of all, there is no evidence of a fact

SET AUTOTRACE ON
SELECT * FROM TEST_250000
WHERE CUSTOMER_NO > 241000.

Hash value of plan: 4257243307

---------------------------------------------------------------------------------
| ID | Operation | Name | Lines | Bytes | Cost (% CPU). Time |
---------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | 15353 | 2623K | 750 (2) | 00:00:10 |
|* 1 | TABLE ACCESS FULL | TEST_250000 | 15353 | 2623K | 750 (2) | 00:00:10 |
---------------------------------------------------------------------------------


Statistics
-----------------------------------------------------------
0 recursive calls
0 db block Gets
2687 gets coherent
0 physical reads
0 redo size
390398 bytes sent via SQL * Net to client
427 bytes received via SQL * Net from client
12 SQL * Net back and forth to and from the client
1 sorts (memory)
0 sorts (disk)


Hash value of plan: 174749588
-------------------------------------------------------------------------------------------------
| ID | Operation | Name | Lines | Bytes | Cost (% CPU). Time |
-------------------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | 9000 | 606K | 121 (1) | 00:00:02 |
| 1. TABLE ACCESS BY INDEX ROWID | TEST_250000_INDEX | 9000 | 606K | 121 (1) | 00:00:02 |
|* 2 | INDEX RANGE SCAN | TEST_250000 | 9000 | 22 (0) | 00:00:01 |
-------------------------------------------------------------------------------------------------

Statistics
-----------------------------------------------------------
0 recursive calls
0 db block Gets
Gets 89 consistent
0 physical reads
0 redo size
390399 bytes sent via SQL * Net to client
433 bytes received via SQL * Net from client
12 SQL * Net back and forth to and from the client
1 sorts (memory)
0 sorts (disk)

My questions are the following:

(1) I am assuming that the right time to run the first query is 0.2 sec and costs 1500, while the other is 0.05 second and 164. You simply add to the top?
2.) which means the cost? I mean what is the unit of it?
3.) there is a substantial difference in gets consistent. I found a definition (Gets the number of times that a consistent read was requested for a block). Could someone explain what it means to me and why is it so different in the two queries.
4.) what is the hash value of Plan on?

Know that it's a lot, but any help appreciated.

PS: I am posting this in general, but y at - it a forum specializing in the tunning?

Jana Kralova wrote:
I am reviewing tunning of database to verify the effectiveness of my sql statements and I think AUTOTRACE is the first thing to look into.

Uitilities TRACE and TKPROF are even better.

My questions are the following:

(1) I am assuming that the right time to run the first query is 0.2 sec and costs 1500, while the other is 0.05 second and 164. You simply add to the top?
2.) which means the cost? I mean what is the unit of it?

By comparing the cost of two queries is not something that you should focus.
See: http://asktom.oracle.com/pls/apex/f?p=100:11:0:P11_QUESTION_ID:313416745628
http://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:956029960417

3.) there is a substantial difference in gets consistent. I found a definition (Gets the number of times that a consistent read was requested for a block). Could someone explain what it means to me and why is it so different in the two queries.

http://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:6643159615303

4.) what is the hash value of Plan on?

"The NUMBER of PLAN_HASH_VALUE digital representation of the SQL plan for this cursor. Comparing a PLAN_HASH_VALUE to another easily identifies whether two plans are the same (rather than comparing two plans line by line). »
http://download.Oracle.com/docs/CD/B19306_01/server.102/b14237/dynviews_2113.htm#REFRN30246

Oracle Performance Tuning Guide can be found here:
http://download.Oracle.com/docs/CD/B19306_01/server.102/b14211/TOC.htm

Know that it's a lot, but any help appreciated.

Refer to the documentation (according to the version of your database) @
http://www.Oracle.com/pls/db102/homepage
http://www.Oracle.com/pls/db112/homepage
or start @.
http://Tahiti.Oracle.com
and your own research on http://asktom.oracle.com, you will find many examples and explanations.

PS: I am posting this in general, but y at - it a forum specializing in the tunning?

I think that you are in the right forum ;)

Tags: Database

Similar Questions

  • Need help with a query result

    Oracle Version: 11.2.0.2.0

    I need assistance with the output of the query. Here is the table.

    With Tbl_Nm as

    (

    Select 'ABC1' SYSTEM_ID, REGION 'US', 'CHI' SUB_REGION 4000 BALANCE, to_date('1-JUN-2012 10:45:00 am', 'dd-mon-yyyy hh:mi:ss am') LAST_UPD_TIME, 'A' FLAG of union double all the

    Select 'PQR2', 'UK', 'LN', 2000, To_Date('1-JUL-2012 10:46:00 am', 'dd-mon-yyyy hh:mi:ss am'), has ' starting from dual Union All

    Select 'ABC1', 'IND","MAMA", 3500, To_Date('1-AUG-2012 11:47:00 am', 'dd-mon-yyyy hh:mi:ss am'), 'A' from dual Union All

    Select "LMN3", "US", "NJ", 2500, To_Date('1-SEP-2012 09:49:00 am', 'dd-mon-yyyy hh:mi:ss am'), 'A' from dual Union All

    Select "PQR2", "UK", "MC", 2600, To_Date('1-OCT-2012 04:45:00 am', 'dd-mon-yyyy hh:mi:ss am'), 'A' from dual Union All

    Select 'ABC1', 'US', 'NY', 3200, To_Date('1-OCT-2012 06:45:00 am', 'dd-mon-yyyy hh:mi:ss am'), has ' starting from dual Union All

    Select "LMN3", "UK", "BT", 2400, To_Date('1-NOV-2012 07:45:00 am', 'dd-mon-yyyy hh:mi:ss am'), has ' From Dual

    )

    Select * from tbl_nm

    I need the output below.

    PQR2 UK MC 2600 1 OCTOBER 2012 04:45

    ABC1 US NY 3500 October 1, 2012 06:45

    LMN3 UK BT 2500 November 1, 2012 07:45

    The need the disc according to this system_id flagged as "A". But if the last disc of 'd' then it must show that the amount, but the file should be displayed in 'A '.

    I've tried a few and got stuck. Help, please. Not able to get a balance '.

    This question is a bit similar to needing help with a query result

    With Tbl_Nm as

    (

    Select 'ABC1' System_Id, region 'US', 'CHI' Sub_Region, 4000 balance, To_Date('1-JUN-2012 10:45:00 am', 'dd-mon-yyyy hh:mi:ss am') Last_Upd_Time, 'A' flag of double Union All

    Select 'PQR2', 'UK', 'LN', 2000, To_Date('1-JUL-2012 10:46:00 am', 'dd-mon-yyyy hh:mi:ss am'), has ' starting from dual Union All

    Select 'ABC1', 'IND","MAMA", 3500, To_Date('1-AUG-2012 11:47:00 am', 'dd-mon-yyyy hh:mi:ss am'), 'A' from dual Union All

    Select "LMN3", "US", "NJ", 2500, To_Date('1-SEP-2012 09:49:00 am', 'dd-mon-yyyy hh:mi:ss am'), 'A' from dual Union All

    Select "PQR2", "UK", "MC", 2600, To_Date('1-OCT-2012 04:45:00 am', 'dd-mon-yyyy hh:mi:ss am'), 'A' from dual Union All

    Select 'ABC1', 'US', 'NY', 3200, To_Date('1-OCT-2012 06:45:00 am', 'dd-mon-yyyy hh:mi:ss am'), has ' starting from dual Union All

    Select "LMN3", "UK", "BT", 2400, To_Date('1-NOV-2012 07:45:00 am', 'dd-mon-yyyy hh:mi:ss am'), has ' From Dual

    )

    Select System_Id, region, Sub_Region, Balance, Last_Upd_Time of Tbl_Nm T1

    where t1. Last_Upd_Time = (select max (Last_Upd_Time) in the Tbl_Nm T2 where T1.) SYSTEM_ID = T2. SYSTEM_ID)

    So maybe you'd then

    ORDER BY DECODE(flag,'D',9,1) ASC...

    to get the Ds at the end of the list.

    or

    ORDER BY CASE WHAT flag = has ' (your other filters) AND then 9 or 1 end CSA,...

    HTH

  • Can someone help me interpret the results of a log cbs.log file?

    My laptop worked little strange - gel sometimes and only excessively slow.  I ran chkdsk /f checks and / r.  Both went well.  I then ran sfc/scannow.  The results of this analysis are displayed below.  I'm not a pc expert, so I don't know if I'm all together or if there is something else, I have to do.  Specifically, the last line of the cbs.log file says, "Verify and Repair Transaction completed. All of the files and registry keys listed in the framework of this operation were properly repaired".

    Any help would be appreciated!  Sorry for the text copy/pasted for a long time.  I cut about 99% of the out and about 1% of the folder (due to a limit of 60 000 characters) just left.  I couldn't find a way to attach a file.

    Thank you!

    POQ 64 ends.

    2012-10-09 22:06:25, Info CSI 00000171 [SR] check complete

    2012-10-09 22:06:26, info CSI 00000172 [SR] components check 100 (0 x 0000000000000064)

    2012-10-09 22:06:26, transaction Info CSI 00000173 [SR] beginning verify and repair

    2012-10-09 22:06:37, info CSI 00000174 Member \SystemRoot\WinSxS\amd64_microsoft-windows-sidebar_31bf3856ad364e35_6.0.6002.18005_none_2ce6c04cdc275758\settings.ini file hashes are not actual file [l:24 {12}] "settings.ini": "

    Found: {l:32 b:sKFy6962 + 2YBWdYMZ6Z/UOVMGpEOdEczYmmYd2o9CE4 =} expected: {l:32 = b:v6OQf2AJO5FVbRBJuIwXxkdkCoOaSk3y0ol6uTH491o}

    2012-10-09 22:06:37, info CSI 00000175 [SR] cannot repair the military record [l:24 {12}] "settings.ini" Microsoft-Windows-Sidebar, Version = 6.0.6002.18005, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), the Culture neutral, VersionScope is 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, type neutral, TypeName neutral, neutral to the public key in the store, hash mismatch "

    2012-10-09 22:06:40, info CSI 00000176 Member \SystemRoot\WinSxS\amd64_microsoft-windows-sidebar_31bf3856ad364e35_6.0.6002.18005_none_2ce6c04cdc275758\settings.ini file hashes are not actual file [l:24 {12}] "settings.ini": "

    Found: {l:32 b:sKFy6962 + 2YBWdYMZ6Z/UOVMGpEOdEczYmmYd2o9CE4 =} expected: {l:32 = b:v6OQf2AJO5FVbRBJuIwXxkdkCoOaSk3y0ol6uTH491o}

    2012-10-09 22:06:40, info CSI 00000177 [SR] cannot repair the military record [l:24 {12}] "settings.ini" Microsoft-Windows-Sidebar, Version = 6.0.6002.18005, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), the Culture neutral, VersionScope is 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, type neutral, TypeName neutral, neutral to the public key in the store, hash mismatch "

    2012-10-09 22:06:40, info CSI 00000178 [SR] this element is referenced by [l:162 {81}] "' Package_17_for_KB948465 ~ 31bf3856ad364e35 ~ amd64 ~ ~ 6.0.1.18005.948465 - 60_neutral_GDR" "

    2012-10-09 22:06:41, Info CSI 00000179 repair results created:

    POQ 65 begins:

    2012-10-09 22:17:24, info CSI 00000301 [SR] cannot repair the military record [l:24 {12}] "settings.ini" Microsoft-Windows-Sidebar, Version = 6.0.6002.18005, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), the Culture neutral, VersionScope is 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, type neutral, TypeName neutral, neutral to the public key in the store, hash mismatch "

    2012-10-09 22:17:24, info CSI 00000302 Member \SystemRoot\WinSxS\amd64_microsoft-windows-sidebar_31bf3856ad364e35_6.0.6002.18005_none_2ce6c04cdc275758\settings.ini file hashes are not actual file [l:24 {12}] "settings.ini": "

    Found: {l:32 b:sKFy6962 + 2YBWdYMZ6Z/UOVMGpEOdEczYmmYd2o9CE4 =} expected: {l:32 = b:v6OQf2AJO5FVbRBJuIwXxkdkCoOaSk3y0ol6uTH491o}

    2012-10-09 22:17:24, info CSI 00000303 [SR] cannot repair the military record [l:24 {12}] "settings.ini" Microsoft-Windows-Sidebar, Version = 6.0.6002.18005, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), the Culture neutral, VersionScope is 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, type neutral, TypeName neutral, neutral to the public key in the store, hash mismatch "

    2012-10-09 22:17:24, Info CSI 00000304 [SR] this element is referenced by [l:162 {81}] "' Package_17_for_KB948465 ~ 31bf3856ad364e35 ~ amd64 ~ ~ 6.0.1.18005.948465 - 60_neutral_GDR" "

    2012-10-09 22:17:24, info CSI 00000305 hashes for Member file? \C:\Windows\PolicyDefinitions\inetres.ADMX are not real file [l:24 {12}] "inetres.admx": "

    Found: {l:32 b:DjclSPQ + c3ju7E53XXW47eR94SH7ICruHSUKg8YAkO0 =} expected: {l:32 b:3 T / Xc + 0 k/wBxJ4k/vlPd86jLOYtWOjRsHrz0hHH9H8s =}

    2012-10-09 22:13:42, CSI 0000027e Info [SR] repair corrupted file [ml:520 {260}, l:64 {32}] '------? \C:\windows\policydefinitions"\[l:24{12}]"Inetres.ADMX' of the store

    2012-10-09 22:13:42, CSI Info 0000027f WARNING: file [l:24 {12}] "inetres.admx" in [l:64 {32}] '-? ' "" \C:\windows\policydefinitions' switching property

    Old: Microsoft-Windows-InetRes-Adm, Version = 9.1.8112.16421, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral

    New: Microsoft-Windows-InetRes-Adm, Version = 8.0.6001.18702, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral

    2012-10-09 22:13:44, info CSI 00000280 hashes for Member file? \C:\Windows\PolicyDefinitions\en-US\InetRes.adml are not real file [l:24 {12}] "InetRes.adml": "

    Found: {l:32 b:8uqfOni5TmKQ2 + wymJKX9uLDOmUV2H1RKpYV3gacaRw =} expected: {l:32 = b:f2Ca02GHu2Yr3ccXiLvfpdfLkfeeDX2UExmZb6pQm2U}

    2012-10-09 22:13:44, info CSI 00000281 [SR] repair file corrupted [ml:520 {260}, l:76 {38}] '------? \C:\Windows\PolicyDefinitions\en-us"\[l:24{12}]"InetRes.adml' of the store

    2012-10-09 22:13:44, info CSI 00000282 WARNING: file [l:24 {12}] "InetRes.adml" in [l:76 {38}] '-? ' "" \C:\Windows\PolicyDefinitions\en-us' switching property

    Old: Microsoft-Windows-InetRes - Adm.Resources, Version = 9.1.8112.16421, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10 {5}] 'en-US', VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral

    New: Microsoft-Windows-InetRes - Adm.Resources, Version = 8.0.6001.18702, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10 {5}] 'en-US', VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral

    2012-10-09 22:17:25, 00000306 CSI info [SR] repair corrupted file [ml:520 {260}, l:64 {32}] '------? \C:\windows\policydefinitions"\[l:24{12}]"Inetres.ADMX' of the store

    2012-10-09 22:17:25, info CSI 00000307 WARNING: file [l:24 {12}] "inetres.admx" in [l:64 {32}] '-? ' "" \C:\windows\policydefinitions' switching property

    Old: Microsoft-Windows-InetRes-Adm, Version = 9.1.8112.16421, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral

    New: Microsoft-Windows-InetRes-Adm, Version = 8.0.6001.18702, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral

    2012-10-09 22:17:25, info CSI 00000308 hashes for Member file? \C:\Windows\PolicyDefinitions\en-US\InetRes.adml are not real file [l:24 {12}] "InetRes.adml": "

    Found: {l:32 b:8uqfOni5TmKQ2 + wymJKX9uLDOmUV2H1RKpYV3gacaRw =} expected: {l:32 = b:f2Ca02GHu2Yr3ccXiLvfpdfLkfeeDX2UExmZb6pQm2U}

    2012-10-09 22:17:25, 00000309 CSI info [SR] repair corrupted file [ml:520 {260}, l:76 {38}] '------? \C:\Windows\PolicyDefinitions\en-us"\[l:24{12}]"InetRes.adml' of the store

    2012-10-09 22:17:25, CSI Info 0000030a WARNING: file [l:24 {12}] "InetRes.adml" in [l:76 {38}] '-? ' "" \C:\Windows\PolicyDefinitions\en-us' switching property

    Old: Microsoft-Windows-InetRes - Adm.Resources, Version = 9.1.8112.16421, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture = [l:10 {5}] 'en-US', VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral

    New: Microsoft-Windows-InetRes - Adm.Resources, Version = 8.0.6001.18702, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10 {5}] 'en-US', VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral

    2012-10-09 22:17:25, created results CSI 0000030b repair Info:

    POQ 127 ends.
    2012-10-09 22:17:25, all repairs [SR] CSI Info 0000030 c
    2012-10-09 22:17:25, CSI Info 0000030 d [SR] validation of transaction
    2012-10-09 22:17:25, transaction CSI Info 0000030e Creating NT (seq 1), objectname [6] "(null) '"
    2012-10-09 22:17:25, CSI Info 0000030f NT created transaction (seq 1) result 0x00000000, manage @0x14c4
    2012-10-09 22:17:25, Info CSI 00000310@2012/10/10:02:17:25.662 CSI perf trace:
    CSIPERF:TXCOMMIT; 143298
    2012-10-09 22:17:25, Info CSI 00000311 [SR] check and complete repair operation. All of the files and registry keys listed in this operation were repaired successfully

    Hello

    As noted at the end of your message SFC/scannow points out that there is no rest
    questions that he can fix.

    More information on how to easily read the important information as SFC/scannow
    adds to the cbs.log.

    Many files that SFC cannot resolve are not important.

    Start - type in the search box-> find CMD in top - click right on - RUN AS ADMIN

    put the command from below (copy and paste) in this box and her and then press ENTER.

    findstr/c: "[SR]" %windir%\logs\cbs\cbs.log > sfcdetails.txt

    who creates the sfcdetails.txt file in the folder that you are in when you run it.

    So if you're in C:\Windows\System32 > then you will need to look in that folder for the file.

    How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe) program
    in Windows Vista
    http://support.Microsoft.com/kb/928228

    This creates sfcdetails.txt in C:\Windows\System32 find and you can post the errors in a message
    here. NOTE: there are probably duplicates so please only post once each section error.

    You can read the newspaper/txt files easier if you right click on Notepad or Wordpad then RUN AS ADMIN - then
    You can navigate to sfcdetails.txt (in C:\Windows\System32) or cbs.log (in C:\Windows\Logs) as needed.
    (You may need to search sfcdetails.txt if it is not created in the default folders.)

    =======================================================

    Troubleshooting:

    Use the startup clean and other methods to try to determine the cause of and eliminate
    the questions.

    ---------------------------------------------------------------

    What antivirus/antispyware/security products do you have on the machine? Be one you have NEVER
    on this machine, including those you have uninstalled (they leave leftovers behind which can cause
    strange problems).

    ----------------------------------------------------

    Follow these steps:

    Start - type this in the search box-> find COMMAND at the top and RIGHT CLICK – RUN AS ADMIN

    Enter this at the command prompt - sfc/scannow

    How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe) program
    generates in Windows Vista cbs.log
    http://support.Microsoft.com/kb/928228

    Also run CheckDisk, so we cannot exclude as much as possible of the corruption.

    How to run the check disk at startup in Vista
    http://www.Vistax64.com/tutorials/67612-check-disk-Chkdsk.html

    ==========================================

    After the foregoing:

    How to troubleshoot a problem by performing a clean boot in Windows Vista
    http://support.Microsoft.com/kb/929135
    How to troubleshoot performance issues in Windows Vista
    http://support.Microsoft.com/kb/950685

    Optimize the performance of Microsoft Windows Vista
    http://support.Microsoft.com/kb/959062
    To see everything that is in charge of startup - wait a few minutes with nothing to do - then right-click
    Taskbar - the Task Manager process - take a look at stored by - Services - this is a quick way
    reference (if you have a small box at the bottom left - show for all users, then check that).

    How to check and change Vista startup programs
    http://www.Vistax64.com/tutorials/79612-startup-programs-enable-disable.html

    A quick check to see that load method 2 is - using MSCONFIG then put a list of
    those here.
    --------------------------------------------------------------------

    Tools that should help you:

    Process Explorer - free - find out which files, key of registry and other objects processes have opened.
    What DLLs they have loaded and more. This exceptionally effective utility will show you even who has
    each process.
    http://TechNet.Microsoft.com/en-us/Sysinternals/bb896653.aspx

    Autoruns - free - see what programs are configured to start automatically when you start your system
    and you log in. Autoruns also shows you the full list of registry and file locations where applications can
    Configure auto-start settings.
    http://TechNet.Microsoft.com/en-us/sysinternals/bb963902.aspx
    Process Monitor - Free - monitor the system files, registry, process, thread and DLL real-time activity.
    http://TechNet.Microsoft.com/en-us/Sysinternals/bb896645.aspx

    There are many excellent free tools from Sysinternals
    http://TechNet.Microsoft.com/en-us/Sysinternals/default.aspx

    -Free - WhatsInStartUP this utility displays the list of all applications that are loaded automatically
    When Windows starts. For each request, the following information is displayed: Type of startup (registry/Startup folder), Command - Line String, the product name, Version of the file, the name of the company;
    Location in the registry or the file system and more. It allows you to easily disable or remove unwanted
    a program that runs in your Windows startup.
    http://www.NirSoft.NET/utils/what_run_in_startup.html

    There are many excellent free tools to NirSoft
    http://www.NirSoft.NET/utils/index.html

    Window Watcher - free - do you know what is running on your computer? Maybe not. The window
    Watcher says it all, reporting of any window created by running programs, if the window
    is visible or not.
    http://www.KarenWare.com/PowerTools/ptwinwatch.asp

    Many excellent free tools and an excellent newsletter at Karenware
    http://www.KarenWare.com/

    ===========================================

    Vista and Windows 7 updated drivers love then here's how update the most important.

    This is my generic how updates of appropriate driver:

    This utility, it is easy see which versions are loaded:

    -Free - DriverView utility displays the list of all device drivers currently loaded on your system.
    For each driver in the list, additional useful information is displayed: load address of the driver,
    Description, version, product name, company that created the driver and more.
    http://www.NirSoft.NET/utils/DriverView.html

    For drivers, visit manufacturer of emergency system and of the manufacturer of the device that are the most common.
    Control Panel - device - Graphics Manager - note the brand and complete model
    your video card - double - tab of the driver - write version information. Now, click on update
    Driver (this can do nothing as MS is far behind the certification of drivers) - then right-click.
    Uninstall - REBOOT it will refresh the driver stack.

    Repeat this for network - card (NIC), Wifi network, sound, mouse, and keyboard if 3rd party
    with their own software and drivers and all other main drivers that you have.

    Now in the system manufacturer (Dell, HP, Toshiba as examples) site (in a restaurant), peripheral
    Site of the manufacturer (Realtek, Intel, Nvidia, ATI, for example) and get their latest versions. (Look for
    BIOS, Chipset and software updates on the site of the manufacturer of the system here.)

    Download - SAVE - go to where you put them - right click - RUN AD ADMIN - REBOOT after
    each installation.

    Always check in the Device Manager - drivers tab to be sure the version you actually install
    presents itself. This is because some restore drivers before the most recent is installed (sound card drivers
    in particular that) so to install a driver - reboot - check that it is installed and repeat as
    necessary.

    Repeat to the manufacturers - BTW in the DO NOT RUN THEIR SCANNER device - check
    manually by model.

    Look at the sites of the manufacturer for drivers - and the manufacturer of the device manually.
    http://pcsupport.about.com/od/driverssupport/HT/driverdlmfgr.htm

    How to install a device driver in Vista Device Manager
    http://www.Vistax64.com/tutorials/193584-Device-Manager-install-driver.html

    If you update the drivers manually, then it's a good idea to disable the facilities of driver under Windows
    Updates, that leaves about Windows updates but it will not install the drivers that will be generally
    older and cause problems. If updates offers a new driver and then HIDE it (right click on it), then
    get new manually if you wish.

    How to disable automatic driver Installation in Windows Vista - drivers
    http://www.AddictiveTips.com/Windows-Tips/how-to-disable-automatic-driver-installation-in-Windows-Vista/
    http://TechNet.Microsoft.com/en-us/library/cc730606 (WS.10) .aspx

    ===========================================

    Refer to these discussions because many more excellent advice however don't forget to check your antivirus
    programs, the main drivers and BIOS update and also solve the problems with the cleanboot method
    first.

    Problems with the overall speed of the system and performance
    http://support.Microsoft.com/GP/slow_windows_performance/en-us

    Performance and Maintenance Tips
    http://social.answers.Microsoft.com/forums/en-us/w7performance/thread/19e5d6c3-BF07-49ac-a2fa-6718c988f125

    Explorer Windows stopped working
    http://social.answers.Microsoft.com/forums/en-us/w7performance/thread/6ab02526-5071-4DCC-895F-d90202bad8b3

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • BlackBerry Smartphones need help with resetting the voice message counter

    Recently, I moved the United States in India and brought with me my favorite Storm 9530. In the United States, I had Verizon as my career and I went to Vodafone in India. Prior to joining Vodafone, he had 5 posts not read/unheard voices and so my Storm showed o_o 5 on the home screen. After that I went to Vodafone, this count is reset. I tried all over the web for a solution to remove this notification of my camera, but can't find a viable solution. According to my understanding, I thought that the count resets automatically once I have activate my voicemail to Vodafone, but after I signed, I realized that the Vodafone India use no method of "Notification of device" for voice messages, but sends an SMS whenever you have a virtual machine. With this result, the number of old was put in my camera never gets reset or reset.

    Y at - there someone who can give me a solution for this reset? Is there a way/software that will let me access the device's internal data structures and reset. My carrier, Vodafone India already has informed me that they cannot help me with this.

    Thanks in advance.

    The solution does not work. The only thing you need to keep in mind is to first take a full backup of the device via Device Manager and wiping the device, DO NOT remove the third-party applications.

    I had to reinstall all applications that a lot of time.

  • Need help to send the result of the query via utl_stmp

    11.2.0.3
    got the code of http://www.oracle-base.com/articles/misc/email-from-oracle-plsql.php#multiline send e-mail
    CREATE OR REPLACE PROCEDURE send_mail (p_to        IN VARCHAR2,
                                           p_from      IN VARCHAR2,
                                           p_subject   IN VARCHAR2,
                                           p_message   IN VARCHAR2,
                                           p_smtp_host IN VARCHAR2,
                                           p_smtp_port IN NUMBER DEFAULT 25)
    AS
      l_mail_conn   UTL_SMTP.connection;
    BEGIN
      l_mail_conn := UTL_SMTP.open_connection(p_smtp_host, p_smtp_port);
      UTL_SMTP.helo(l_mail_conn, p_smtp_host);
      UTL_SMTP.mail(l_mail_conn, p_from);
      UTL_SMTP.rcpt(l_mail_conn, p_to);
    
      UTL_SMTP.open_data(l_mail_conn);
      
      UTL_SMTP.write_data(l_mail_conn, 'Date: ' || TO_CHAR(SYSDATE, 'DD-MON-YYYY HH24:MI:SS') || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_mail_conn, 'To: ' || p_to || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_mail_conn, 'From: ' || p_from || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_mail_conn, 'Subject: ' || p_subject || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_mail_conn, 'Reply-To: ' || p_from || UTL_TCP.crlf || UTL_TCP.crlf);
      
      UTL_SMTP.write_data(l_mail_conn, p_message || UTL_TCP.crlf || UTL_TCP.crlf);
      UTL_SMTP.close_data(l_mail_conn);
    
      UTL_SMTP.quit(l_mail_conn);
    END;
    /
    I want to call send_mail to pass a query result to "p_message":
    as an example:
    Select the sid, program, module, session machine $ v where program = 'XXX ';

    And have struggled with the lack of experience in PLSQL.
    Give advice.
    TIA

    The simplest possible thing would be something like

    DECLARE
      l_message VARCHAR2(32000);
    BEGIN
      FOR i IN (your_query)
      LOOP
        l_message := l_message || i.col1 || ' ' || i.col2 || ' ' || ... || i.col3 || utl_tcp.crlf;
      END LOOP;
    
      <>
    END
    

    This assumes that the total amount of data we're talking about is reasonably low (which is small enough that you can use a VARCHAR2). And you want a text with a data dump email basically unformatted. You may be better served with an HTML message that includes the appropriate in the body HTML formatting. And you might need your procedure send_mail to accept a CLOB rather than a VARCHAR2.

    Justin

  • Need help with installing the drivers for Satellite

    Help, please! One day, I restarted my pc I would normally, and it came with a code error on something in the sense of "we need to reboot your pc" so after days that I did get it back and actually log on windows.

    Now when I go into Device Manager, there are 4 things with yellow exclamation points.

    (1) network controller, which does not allow me to go on the internet.
    (2) PCI device
    (3) PCI Simple Communications Controller
    4-SM Bus controller

    Please tell me how I can fix or install these without going on the internet because I can't!

    Thanks in advance

    I don't know what model of laptop you have, but if you can not download the necessary drivers, I recommend you to reinstall the original recovery image and start using your laptop with 'presets' again.

  • Need help with editing the channels from document information

    I am trying to create a string based on information from the active document, which is then saved as text delimited by tabs for use in spreadsheets.

    I'm new to the script but I was able to get the info from Photoshop, but now I need to deal with some of them.

    Here's the info I want in the order I want: name of file, the file size (actual work or size), width in pixels, height in pixels, inches of width, height inches, image resolution, color mode.

    example: 5.3 MB 3810 3810 5 5 762 RGB CoolPicture_LYRD.psd

    Here is the info I got in return:

    CoolPicture_LYRD.psd3810 px3810 px5 px5 px762 DPIDocumentMode.RGB

    I need to make these changes:

    1. Add the size of the document
    2. Cut the shape px string OR convert the "px" in the chain of inches to the 'in '.
    3. short 6-digit numbers (for a number like 5.33333333333333 px)
    4. trim theDocumentMode. info from the color mode

    I tried using substrings which gets an error about the functions

    I tried ToString() and beach setting, but without success.

    any help would be appreciated. Thanks for the research.

    Here is my script so far

    //get the info from document that I need for my excel sheet
    var imageHeightPixels = activeDocument.height
    var imageWidthPixels = activeDocument.width
    var fileResolution = activeDocument.resolution
    var imageMode = activeDocument.mode
    // get size in inches from pixel based measurement
    var imageHeightInches = imageHeightPixels / fileResolution
    var imageWidthInches = imageWidthPixels  / fileResolution
    
    
    var imageName = activeDocument.name.toString()
    var imageDimensions = new File ("~/desktop/File Info Report.txt")  
    
    
    app.preferences.rulerUnits = Units.PIXELS
    
    imageDimensions.open('a');  
    imageDimensions.write(imageName + "\t" + imageHeightPixels + "\t" + imageWidthPixels + "\t" + imageWidthInches + "\t" + imageHeightInches + "\t" + fileResolution + " DPI" + "\t" + imageMode + "\n");  
    activeDocument.close(SaveOptions.DONOTSAVECHANGES)  
      
    imageDimensions.close(); 
    

    There you go Buddy:

    var doc = app.activeDocument;
    var currentUnits = app.preferences.rulerUnits;
    
    app.preferences.rulerUnits = Units.PIXELS;
    
    var fileName = doc.name;
    var fileSize = (File(doc.fullName).length / (1024 * 1024)).toFixed(2);
    var fileWidthPx   = doc.width.value;
    var fileHeightPx = doc.height.value;
    var fileResolution = doc.resolution;
    var fileWidthInch = (fileWidthPx  / fileResolution).toFixed(6);
    var fileHeigthInch = (fileHeightPx / fileResolution).toFixed(6);
    var colorMode = doc.mode.toString().split(".")[1];
    
    app.preferences.rulerUnits = currentUnits;
    
    var outputString = fileName + "\t" +
      fileSize + " mb\t" +
      fileWidthPx + "\t" +
      fileHeightPx + "\t" +
      fileWidthInch + "\t" +
      fileHeigthInch + "\t" +
      fileResolution + " DPI\t" +
      colorMode + "\n";  
    
    var logFile = new File ("~/desktop/File Info Report.txt");
      logFile.open('a');
      logFile.write(outputString);
      logFile.close();
    
    doc.close(SaveOptions.DONOTSAVECHANGES);
    
  • Need help with scaling the text

    I need to make a text vertically taller, but seem to have a problem with the scale tool. That's what I'm starting with:

    Screen Shot 2015-09-25 at 9.50.15 AM.png

    And when I try to step up that I end up with this:

    Screen Shot 2015-09-25 at 9.50.49 AM.png

    Any help would be greatly appreciated. Thank you!

    Use the scale options in the character, as in this case Panel

  • Need help with installing the driver Vista for Satellite A200-23U

    INSTALL THE

    WINDOWS VISTA
    N ° Version of the component name
    1 Windows Vista RTM
    2 native Intel ICH7M Chipset utility
    3 945GM Intel display driver
    or
    3 nVIDIA Display Driver G72MV-A3/NB7P-GS
    Realtek Audio driver ALC861D 4
    5 Realtek 8101E 10/100 / Driver LAN Gigabit 8111
    6 Synaptics Touch Pad Driver (with LuxPad)
    7 ALPS Touch Pad Driver
    8 card reader TI Multiple digital media
    9 TOSHIBA software modem
    10 Golan Intel Wireless LAN Driver
    11 Kedron Intel Wireless LAN Driver
    12 Atheros Wireless LAN Driver
    Camera Chicony 13 software
    14 Bluetooth Stack for Windows by Toshiba
    15 Bluetooth monitor
    16 TOSHIBA Value Added Package
    17 TOSHIBA Flash Cards Support utility
    TOSHIBA 18 hardware configuration utility
    19 TOSHIBA supervisor password
    20 TOSHIBA SD Memory utilities
    21 TOSHIBA ConfigFree
    22 TOSHIBA Assist
    TOSHIBA Speech System 23
    24 TOSHIBA Extended tiles for Mobility Center Windows V1.01
    TOSHIBA Fingerprint Utility V5.6.0.3221 25

    But the [code] http://eu.computers.toshiba-europe.com/cgi-bin/ToshibaCSG/download_drivers_bios.jsp?service=EU&mode=allMachi nes & action = search & teddProduct = 738 & selShortMod = 532 [/ code] I don't know what connection is No2 chipset driver (I use vista 32 bit), similar what link is No3 display driver.

    Can you help me to download 25 entry because I'm bad at computing :(
    Sorry because of my English... THX

    Hey Buddy

    You have a machine with the ATI graphics card. Am I wrong?
    If Yes, then the Chipset driver is ALREADY included in the ATI graphics driver that is available on the European driver Toshiba page!

    The order of installation displays the instructions step by step for all THE portable Satellite A200 PSAE6E but the fact is that devices were equipped with different material parts and that's why some single drivers do not appear or are not available.

    Once again; Utility/driver chipset is available/included in the ATI graphics driver

    Good bye

  • Need help with using the tool pen

    Hello

    I'm drawing a pretty BOW winding with the pen tool.

    How can I draw a nice winding line using the pen with thickness control.

    Can someone help me?

    Steve

    Steve,

    You can not; but you can create a mixture corresponding to the slope. Is a simple way with an essentially horizontal form symmetrical of (having the Center reference Point in the palette/Panel processing selected):

    (1) create the outside shape of color on the Board;

    (2) Ctrl / Cmd + C + F to copy it to the front.

    (3) reduce the H value of the copy by an appropriate value (10 or other) and apply the center color.

    (4) select the two and object > blend > (have smooth and align on the path selected in Options to mix).

  • PS Newb needs help with resizing the image and print several sheet

    Hi, I am using PS CS3 to resize an image, I have so I can print to use as a map for a miniatures game.  I have no problem of scaling of the image to the appropriate size, but I can't understand how to print multiple image 8.5 x 11 sheets.  I thought I saw an option for such a procedure before, but maybe it was in another editing program.  If anyone has any ideas on how I could do this I would really appreciate hearing about them.  Thank you!

    Illustrator and InDesign are tiled printing, like CorelDraw. Photoshop, this title is not, but may be a few script for this. In your case, the simplest solution would be to save the file in PDF format and have Acrobat print a tiled (Page scaling of parameter in Acro print dialog box). You just need to make sure that your page corresponds to several pages. Unliek AI and ID, Acro chop only stuff based on standard paper sizes...

    Mylenium

  • need help with loading the icon

    can I get help about icon loading in oracle forms?

    OK make a folder name it icons and copy all you are gif icons and paste into the same folder (icons), and then copy the icons folder and paste in
    D:\DevSuiteHome_1\forms\java\oracle\forms

    When you want to display the icon, then do not use .gif (Note: sometimes also works with .gif) and something more Stéphane on capital letter of gif - icons.it should be in letter.i hope that you understand.

    Sarah

  • Need help with installing the drivers on the laptop Satellite Pro

    I reinstalled windows xp with drivers Utiity chip, Lan, sound Driver realtic, ATI Display Driver, I can't put my computer on standby, which driver should I for this.
    Also, I went into the Device Manager and the following drivers are highlighted in yellow with a question mark.
    Ethernet controller (2)
    Mass storage,
    Bus modem device high definition audio.
    Video contoller, Vidio contoller vga compatible.

    What should I do to correct this? I'm a novice so would appreciate the answer explained in its entirety because I don't know computer Lingo

    Hi jeyjey2,

    Before starting the discussion on installing the drivers for your problems, post your model mobile exact. This is important because laptops are equipped with different hardware/drivers.

    Additionally, make sure that XP SP2 is installed at least.

  • Need help with syncing the iphone

    I am tryng to download music on my iphone to my laptop (windows media player) 5s... I plugged by his charger to the computer but its still not appear as a portable device. Anyone know what could be the problem? or how can I fix this? I appreciate very much all the advice you can give me.

    Thank you very much

    Andy

    I don't have an iPhone of any sort, but see if this - helps http://support.apple.com/kb/TS1538 , esp "Apple Mobile Device" sections. Have you tried iTunes?

    BUT is this relevant - http://answers.microsoft.com/en-us/windows/forum/windows_7-pictures/why-wont-my-new-iphone-5s-sync-to-my-widows-7/df341ea0-f909-4bf9-b6e4-064cb59be5e0

  • Need help with setting the value of the variable in the callable statement in the OPS

    Hi all

    I use a callable statement in my code, I put the value as below.

    String updateStmt = "BEGIN TEST_PKG. MAIN_PROCEDURE ("+

    ":1)" +

    "; END; « ;

    CallableStatement cstmt is getDBTransaction (.createCallableStatement(updateStmt,1));.

    cstmt.setString (1, empRow.getLinenum () m:System.NET.SocketAddress.ToString ());

    but the problem is when the value of 1 is NULL, I'm not able to call the procedure, it is not inserting data into the table, but when the value of 1 is not null, it is able to call the procedure and inserting the data correctly.

    Please help me urgent.

    Hello

    Please make changes as below

    If (empRow.getLinenum (). ToString ()! = null)

    {

    String updateStmt = "BEGIN TEST_PKG. MAIN_PROCEDURE ('+': 1) «+»; END; « ;

    CallableStatement cstmt is getDBTransaction (.createCallableStatement(updateStmt,1));.

    cstmt.setString (1, empRow.getLinenum () m:System.NET.SocketAddress.ToString ());

    }

    Also check out the link Oracle Application Framework Dilip Articles: education prepared - controller

    Thank you

    Dilip

Maybe you are looking for

  • How to solve this problem?

    Whenever I open a new tab and add an address, only 2 to 3 seconds later the address disappears. And when I type in a form, the cursor automatically goes to the address bar. I tried to start Firefox in safe mode or even reset it but it doesn't work.

  • Example: Pavilion 15-ba015na: disable touchpad on 15-ba015na

    Hi, naoual bought HP laptop laptop 15-ba015na. I am more comfortable with an external mouse and a trendy. I work but does the touchpad, I want to turn off. With my old Toshiba Satellite phone is simple with the fn keys. Does anyone have a solution fo

  • my windows mail stop receiving mail - but I can send - last to enter was 18/07/11

    I went from quest to comcast feb.11 - everything was going well until 18/07/11

  • Pavilion dv7-4295us start problem

    Hello I put my machine on sleep or hibernation, I have come back to try to restart and I got the message that there is an abnormal termination of the machine, I want to start the machine mode without failure, etc, etc. The black screen with white let

  • Report on the health system, access is denied.

    Any new computer that is running Windows 7 Home Premium 64-bit. When I try to run the system health report, I get an error: " Error: An error occurred while trying to generate the report. Access denied. " I tried running sfc / scannow, however no pro