Performance-to-many problem (using the model of the FAQ)

After reading "HOW TO: post a request for tuning SQL - model showing statement" I gathered:

I have included some general information at the bottom of the post

The following SQL statement has been identified as a bad performance. It takes ~ 160 seconds to run, but similar (indicated below first statement) SQL statements run in ~ 1 second.

SQL taking 160 seconds:
SELECT
a.*
FROM
table_a a
INNER JOIN table_a_b ab ON a.id = ab.media_fk
WHERE
ab.channel_fk IN (7, 1);
SQL in ~ 1 second or less
...
ab.channel_fk IN (7);
Or:
...
ab.channel_fk IN (6, 9, 170, 89);
The purpose of the SQL is to return lines from table_a associated table_b (not in SQL) through the junction table table_a_b.

The version of the database is 10.2.0.4.0

These are the parameters relevant for the optimizer:
show parameter optimizer;

NAME                                               TYPE        VALUE
-------------------------------------------------- ----------- -----------------------------------------
optimizer_dynamic_sampling                         integer     2
optimizer_features_enable                          string      10.2.0.4
optimizer_index_caching                            integer     0
optimizer_index_cost_adj                           integer     100
optimizer_mode                                     string      ALL_ROWS
optimizer_secure_view_merging                      boolean     TRUE

show parameter db_file_multi;

NAME                                               TYPE        VALUE
-------------------------------------------------- ----------- -----------------------------------------
db_file_multiblock_read_count                      integer     16

show parameter db_block_size;

NAME                                               TYPE        VALUE
-------------------------------------------------- ----------- -----------------------------------------
db_file_multiblock_read_count                      integer     16

select sname, pname, pval1, pval2 from sys.aux_stats$;

SNAME                          PNAME                          PVAL1                  PVAL2
------------------------------ ------------------------------ ---------------------- -------------------
SYSSTATS_INFO                  STATUS                                                COMPLETED
SYSSTATS_INFO                  DSTART                                                07-18-2006 23:19
SYSSTATS_INFO                  DSTOP                                                 07-25-2006 23:19
SYSSTATS_INFO                  FLAGS                          0
SYSSTATS_MAIN                  SREADTIM                       5.918
SYSSTATS_MAIN                  MREADTIM                       7.889
SYSSTATS_MAIN                  CPUSPEED                       1383
SYSSTATS_MAIN                  MBRC                           8
SYSSTATS_MAIN                  MAXTHR                         1457152
SYSSTATS_MAIN                  SLAVETHR                       -1
Here is the output of the EXPLAIN PLAN of:
PLAN_TABLE_OUTPUT
Plan hash value: 3781163428

----------------------------------------------------------------------------------------------------
| Id  | Operation             | Name               | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
----------------------------------------------------------------------------------------------------
|   0 | SELECT STATEMENT      |                    |  1352K|   771M|       | 60042   (3)| 00:05:56 |
|*  1 |  HASH JOIN            |                    |  1352K|   771M|    27M| 60042   (3)| 00:05:56 |
|*  2 |   INDEX FAST FULL SCAN| SYS_IOT_TOP_316310 |  1352K|    11M|       |  1816   (4)| 00:00:11 |
|   3 |   TABLE ACCESS FULL   | TABLE_A            |  2190K|  1230M|       | 32357   (4)| 00:03:12 |
----------------------------------------------------------------------------------------------------

Predicate Information (identified by operation id):
---------------------------------------------------

   1 - access(""AB"".""MEDIA_FK""=""A"".""ID"")
   2 - filter(""AB"".""CHANNEL_FK""=1 OR ""AB"".""CHANNEL_FK""=7)

Note
-----
   - 'PLAN_TABLE' is old version
For reference, the EXPLAIN PLAN when using
...
ab.channel_fk IN (6, 9, 170, 89);
that runs in ~ 1 second is:
PLAN_TABLE_OUTPUT
Plan hash value: 794334170

----------------------------------------------------------------------------------------
| Id  | Operation          | Name      | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
----------------------------------------------------------------------------------------
|   0 | SELECT STATEMENT   |           |   143K|    81M|       | 58982   (3)| 00:05:50 |
|*  1 |  HASH JOIN         |           |   143K|    81M|  2952K| 58982   (3)| 00:05:50 |
|   2 |   INLIST ITERATOR  |           |       |       |       |            |          |
|*  3 |    INDEX RANGE SCAN| C_M_INDEX |   143K|  1262K|       |  1264   (1)| 00:00:08 |
|   4 |   TABLE ACCESS FULL| TABLE_A   |  2190K|  1230M|       | 32357   (4)| 00:03:12 |
----------------------------------------------------------------------------------------

Predicate Information (identified by operation id):
---------------------------------------------------

   1 - access(""AB"".""MEDIA_FK""=""A"".""ID"")
   3 - access(""AB"".""CHANNEL_FK""=6 OR ""AB"".""CHANNEL_FK""=9 OR
              ""AB"".""CHANNEL_FK""=89 OR ""AB"".""CHANNEL_FK""=170)

Note
-----
   - 'PLAN_TABLE' is old version
Here is the output of SQL * Plus AUTOTRACE, including CALENDAR information:
SQL> set autotrace traceonly arraysize 100;
SQL> SELECT
  2  a.*
  3  FROM
  4  table_a a
  5  INNER JOIN table_a_b ab ON a.id = ab.media_fk
  6  WHERE
  7  ab.channel_fk IN (7, 1);

1336148 rows selected.


Execution Plan
----------------------------------------------------------
Plan hash value: 3781163428
----------------------------------------------------------------------------------------------------
| Id  | Operation             | Name               | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
----------------------------------------------------------------------------------------------------
|   0 | SELECT STATEMENT      |                    |  1352K|   771M|       | 60042   (3)| 00:05:56 |
|*  1 |  HASH JOIN            |                    |  1352K|   771M|    27M| 60042   (3)| 00:05:56 |
|*  2 |   INDEX FAST FULL SCAN| SYS_IOT_TOP_316310 |  1352K|    11M|       |  1816   (4)| 00:00:11 |
|   3 |   TABLE ACCESS FULL   | TABLE_A            |  2190K|  1230M|       | 32357   (4)| 00:03:12 |
----------------------------------------------------------------------------------------------------


Predicate Information (identified by operation id):
---------------------------------------------------

   1 - access("AB"."MEDIA_FK"="A"."ID")
   2 - filter("AB"."CHANNEL_FK"=1 OR "AB"."CHANNEL_FK"=7)

Note
-----
   - 'PLAN_TABLE' is old version


Statistics
----------------------------------------------------------
      10586  recursive calls
          0  db block gets
     200457  consistent gets
     408343  physical reads
          0  redo size
  498740848  bytes sent via SQL*Net to client
     147371  bytes received via SQL*Net from client
      13363  SQL*Net roundtrips to/from client
         49  sorts (memory)
          0  sorts (disk)
    1336148  rows processed
The TKPROF output for that statement looks like the following:
TKPROF: Release 10.2.0.4.0 - Production on Mon Oct 1 12:23:21 2012

Copyright (c) 1982, 2007, Oracle.  All rights reserved.

Trace file: ..._ora_4896.trc
Sort options: default

********************************************************************************
count    = number of times OCI procedure was executed
cpu      = cpu time in seconds executing
elapsed  = elapsed time in seconds executing
disk     = number of physical reads of buffers from disk
query    = number of buffers gotten for consistent read
current  = number of buffers gotten in current mode (usually for update)
rows     = number of rows processed by the fetch or execute call
********************************************************************************

ALTER SYSTEM SET TIMED_STATISTICS = TRUE


call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        1      0.00       0.00          0          0          0           0
Execute      1      0.00       0.03          0          0          0           0
Fetch        0      0.00       0.00          0          0          0           0
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total        2      0.00       0.03          0          0          0           0

Misses in library cache during parse: 0
Parsing user id: 21
********************************************************************************

SELECT
a.*
FROM
table_a a
INNER JOIN table_a_b ab ON a.id = ab.media_fk
WHERE
ab.channel_fk IN (7, 1)

call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        1      0.01       0.00          0          0          0           0
Execute      1      0.00       0.00          0          0          0           0
Fetch        2     27.23     163.57     179906     198394          0          16
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total        4     27.25     163.58     179906     198394          0          16

Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 21



********************************************************************************

OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS

call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        2      0.01       0.00          0          0          0           0
Execute      2      0.00       0.03          0          0          0           0
Fetch        2     27.23     163.57     179906     198394          0          16
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total        6     27.25     163.62     179906     198394          0          16

Misses in library cache during parse: 1


OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS

call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        0      0.00       0.00          0          0          0           0
Execute      0      0.00       0.00          0          0          0           0
Fetch        0      0.00       0.00          0          0          0           0
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total        0      0.00       0.00          0          0          0           0

Misses in library cache during parse: 0

    2  user  SQL statements in session.
    0  internal SQL statements in session.
    2  SQL statements in session.
********************************************************************************
Trace file: ..._ora_4896.trc
Trace file compatibility: 10.01.00
Sort options: default

       1  session in tracefile.
       2  user  SQL statements in trace file.
       0  internal SQL statements in trace file.
       2  SQL statements in trace file.
       2  unique SQL statements in trace file.
      46  lines in trace file.
     187  elapsed seconds in trace file.
DBMS_XPLAN. Output DISPLAY_CURSOR:
select * from table(dbms_xplan.display_cursor('474frsqbc1n4d', null, 'ALLSTATS LAST'));

PLAN_TABLE_OUTPUT
SQL_ID  474frsqbc1n4d, child number 0
-------------------------------------
SELECT /*+ gather_plan_statistics */ c.* FROM table_a c INNER JOIN table_a_b ab ON c.id = ab.media_fk WHERE ab.channel_fk IN (7, 1)

Plan hash value: 3781163428

---------------------------------------------------------------------------------------------------------------------------------------------------
| Id  | Operation             | Name               | Starts | E-Rows | A-Rows |   A-Time   | Buffers | Reads  | Writes |  OMem |  1Mem | Used-Mem |
---------------------------------------------------------------------------------------------------------------------------------------------------
|*  1 |  HASH JOIN            |                    |      1 |   1352K|   1050 |00:00:40.93 |     198K|    182K|    209K|    29M|  5266K| 3320K (1)|
|*  2 |   INDEX FAST FULL SCAN| SYS_IOT_TOP_316310 |      1 |   1352K|   1336K|00:00:01.34 |   10874 |      0 |      0 |       |       |          |
|   3 |   TABLE ACCESS FULL   | TABLE_A            |      1 |   2190K|   2267K|00:02:45.56 |     187K|    182K|      0 |       |       |          |
---------------------------------------------------------------------------------------------------------------------------------------------------

Predicate Information (identified by operation id):
---------------------------------------------------

   1 - access(""AB"".""MEDIA_FK""=""C"".""ID"")
   2 - filter((""AB"".""CHANNEL_FK""=1 OR ""AB"".""CHANNEL_FK""=7))
Thank you for reading I'm waiting for suggestions to improve the performance of this statement.

-----

H3. Backgroud

There are many years my company made decided to maintain many-to-many relationships in our database using pipe delimited fields. An example of field value:
'|ABC|XYZ|VTR|DVD|'
Each delimited value refers to a unique "short" code TABLE_B (there is also a real digital foreign key to TABLE_B, which is what I use in the junction table). We are regularly using these columns with the next SQL style:
...
WHERE
INSTR(pipedcolumn, '|ABC|') > 0
OR INSTR(pipedcolumn, '|XYZ|' > 0
...
Appropriate indexes have been created over the years to make this process as soon a possible.

We now have an opportunity to correct some of these errors of design and implementation of junction tables to replace the current field. Before that, we have decided to take a copy of a database to a client with the largest set of records and test. I created a new junction table:
TABLE_A_B DDL:

    CREATE TABLE TABLE_A_B (
        media_fk NUMBER,
        channel_fk NUMBER,
        PRIMARY KEY (media_fk, channel_fk),
        FOREIGN KEY (media_fk) REFERENCES TABLE_A (ID),
        FOREIGN KEY (channel_fk) REFERENCES TABLE_B (ID)
    ) ORGANIZATION INDEX COMPRESS;

    CREATE INDEX C_M_INDEX ON TABLE_A_B (channel_fk, media_fk) COMPRESS;
And the analysis on a pipe delimited field, populated by this new table.

I then compared the performance of the following SQL:
SELECT
a.*
FROM
table_a a
INNER JOIN table_a_b ab ON a.id = ab.media_fk
WHERE
ab.channel_fk IN (x, y, n); -- Can be Many Minutes

--vs.

SELECT
a.*
FROM
table_a a
WHERE
INSTR(OWNERS,'|x|')    >0
OR INSTR(OWNERS,'|y|')    >0
OR INSTR(OWNERS,'|n|')    >0; -- About 1 second seemingly regardless
When x, y, n are values that occur less frequently in the TABLE_A_B.CHANNEL_FK performance are comparable. However once the frequency of x, y, n increases, performance suffers. Here is a summary of the data CHANNEL_FK in TABLE_A_B:
--SQL For Summary Data
SELECT channel_fk, count(channel_fk) FROM table_a_b GROUP BY channel_fk ORDER BY COUNT(channel_fk) DESC;

CHANNEL_FK             COUNT(CHANNEL_FK)
---------------------- ----------------------
7                      780741
1                      555407
2                      422493
3                      189493
169                    144663
9                      79457
6                      53051
171                    28401
170                    19857
49                     12603
...
I noticed that whenever I use any combination of values that occur over approximately 800 000 times (i.e. IN (7, 1) = 780741 + 555407 = 1336148) then I get performance problems.

I find it very difficult to accept that the old pipe delimited fields are a better solution (without taking into account any other than this search criterion!).

Thank you for reading this far. I really look forward to suggestions on how to improve the performance of this statement.

Published by: user1950227 on October 1, 2012 12:06
Table of link renamed in DDL.

davebcast wrote:

The following SQL statement has been identified as a bad performance. It takes ~ 160 seconds to run, but similar (indicated below first statement) SQL statements run in ~ 1 second.

Keep in mind that the enforcement timeframe has elapsed is a poor metric to use for benchmarking of SQL. The reason is that the same workload does not mean that the same elapsed execution time.

The workload for example shows a block of 1000 readings. There will be a difference marked by this workload reading data of the slow physical disks, or making this workload by reading data from memory in memory cache. And if it happens to be in memory or on disk is a kind of "random" thing (depends on many environment and factors of execution).

Thus, rather than measure the elapsed time and use it to compare, rather compare actual workloads. A workload of 500 block reading is faster and better than a block of 1000 DSL - despite the fact that a point of elapsed time can show the 500 read being slow (e/s physical) block a block of 1000 to read (e/s logic).

Tags: Database

Similar Questions

  • Too many problems with the latest version of Lightroom

    Hi all

    I have too many problems with the latest version of Lightroom (CC 2015.2.1 1046594)

    In fact, the latest version of 3 or 4 were bad: instead of doing better, I always had more problems.

    So I would like to go back to a previous version of lightroom

    Adobe customar care, in Italy, is unnecessary:

    they can just to:

    -looking for answer on this forum

    -saying "you solve your problems just with the de-insall and re-install it.

    stop, no more...

    in this way they create me a lot fo iusses...

    I use the English version of the PS and LR, but they made me reinstall the Italian version of CC because it has been blocked

    the result was that CC does not recognize software, due to a different language version

    so, I contacted again Adobe Customer Care... they said "no problem, uninstall LR, delete these files and install this...

    I did and I let go 2 years to develop the parameters on the correction of the colors for my clients because they told me to remove a folder, I need!

    so, I ask you now if there is a way to return to a previous version of lightroom, any previous version...

    I never found better performance in more recent versions...

    I've always found, performance slower, more problems...

    personal idea: I do not understand why adobe are boicotting itself, but I think he do!

    Thanks to you all

    Hi ramontillo,

    6.3/CC 2015.3 Lightroom is now available - try to update to this version which includes the previous import feature, bug fixes and new support for photo/target device profile: Lightroom CC 2015.3 / 6.3 now available

    Concerning

    Pete

  • Compaq Evo D5pM - problems using this model number, never find what he listed...

    Compaq Evo D5pM - (Pent4 - 1.7 GHz) problems using this model looking for parts or information number.  Serial number has not been useful.

    Someone said "aka Compaq D510." Trying to buy memory model (found on the case) my number wasn't so I tried to use D510 (it was listed). Apparently not the same computer / mine use 168 pins sticks and D - 510 came 188 pins. I did my 'upgrade' purchase by check the number of pins and using the already installed type.

    My computer is a vertical minitower - looks like D - 510-, but like I said the components are different.

    I was wondering if anyone knows a model Compaq Evo w / same components (P4 1.7 GHz; 168 pin memory) I could use for research purposes. The smallest horizontal model Evo often uses different (smaller) maps, etc..

    Tried the Ctrl-Alt-S keyboard shortcut to bring up the model number (etc.), but my keyboard shortcuts do not work on this computer. Run a search for edge came up with nothing to tune.

    I tried HP support and drivers.  With the help of several model numbers and found that absolutely nothing for HP Compaq or "Compaq" is in the list.

    It is a great 3rd computer that I've updated w / spare parts, use it remotely, especially for music. Only problem was the dark model number. If anyone has something useful to add would be most appreciated. Thanks in advance...

    PS I'm currently trying to identify MB for what it's worth, but a number of alternative model that works would be great.

    Hello:

    Your model is a d500 CMT HP.

    1 GB 128 x 64-133 MHz PC133, 168P DIMM, 3.3V, sync

    Type of memory: , (non - ECC)
    Maximum memory: 3 GB
    Slots: 3

    This is the page for support and drivers for your PC.

    http://h20566.www2.HP.com/portal/site/hpsc/public/PSI/home/?cc=us & lang = in & sp4ts. OID = 96294 & Task = & AC.admitted = 1389381517647.876444892.199480143

    QuickSpecs:

    http://h18000.www1.HP.com/products/QuickSpecs/productbulletin.html#spectype=North_America & type = HTML & docid = 10946

    Because nobody does more than the memory, it will be hard to find and very expensive.

    You can plan on paying more $ $70 / 1 GB chip if you do not find the specification above used on a place like eBay.

    You can buy a newer, faster CMT from HP on eBay for less than $70 delivered.  Memory is much cheaper to buy as well.

    http://www.eBay.com/ITM/HP-DC7600-Pentium-4-3-0GHz-40Gb-512MB-DVDRW-XPPRO-30-day-warranty-/281231108334?PT=Desktop_PCs & Hash = item417aae28ee

  • Performing a Firmware Upgrade using the built-in Web server

    This video provides step by step instructions to perform a firmware update using the integrated Web (EWS) server for single function of HP LaserJet and multifunction printers.

    For other helpful videos, go to hp.com/supportvideos or youtube.com/hpsupport. Several support options for your printer are available at hp.com support.

    This video was produced by HP.

    I hope you find this information useful.

  • problems using the snap have amd, playback of Jpeg files

    Original title: I'm having problems using the component feature snap-in.

    Sometimes a single document disappears. When this happens while the document program is managed by then will not work. The document seems to be flying around the office. The last time this happened I had a doc JPEG upward and now I can't see what is JPEG. I don't know why the document wants to fly around, and I don't know how to get my use of the JPEG back.

    Hey Graham,.

    To view all jpeg images in the Viewer Windows photo or any other photo software visualization, you must configure this software as a default value in the default programs.

    Check out the link that allows you to configure the program as default.

    http://Windows.Microsoft.com/en-in/Windows7/change-which-programs-Windows-uses-by-default

    You can try to run the Aero Troubleshooter and see if that makes a difference.

    http://Windows.Microsoft.com/en-in/Windows7/open-the-Aero-Troubleshooter

    If the problem persists, provide us newspapers observer of events, as well as the error message if you receive a message.

    http://Windows.Microsoft.com/en-in/Windows7/open-Event-Viewer

  • Performing a Firmware Upgrade using the integrated HP printers Web server

    Hi all

    This video provides step by step instructions to perform a firmware update using the integrated Web (EWS) server for single function of HP LaserJet and multifunction printers.

    Hope that the information contained in my previous post are useful if you are in the need to update the firmware on your Laserjet.

  • I'm having a problem using the slideshow module in LR 6.3. The slideshow contains the background image as one of the images to display. Earlier, I had created a slideshow of practice and the background image was not displayed as an image in itself. How to

    I'm having a problem using the slideshow module in LR 6.3. The slideshow contains the background image as one of the images to display. Earlier, I have created a slideshow of practice and the background image was not displayed as an image in itself. How to make it behave?

    Another approach, perhaps a little more elegant (?). Create a collection that includes images for the slideshow. Include the background image in the collection. Drag the background image in the Panel to designate. Then, remove this image from the collection and create the slide show. I just tried and it works, too.

  • I had many problems with the first cc 2014 so I reinstalled it and now it says that I can not open my project because it was recorded on a newer version. Is there something I can do?

    I had many problems with the first cc 2014 so I reinstalled it and now it says that I can not open my project because it was recorded on a newer version. Is there something I can do?

    Hi Gemma,

    It seems that after reinstalling, Premiere Pro no has not been updated to the latest version. Check your application creative cloud for updates. If she says Premiere Pro is up to date, try to update Premiere Pro through help > updates... option in Premiere Pro.

    Thank you

    Regalo

  • Problems using the local test on a Mac server

    I defined a local test for my website server: connect you using Local/network; file server: / Users /... / FPPATesting /; Web URL: http://localhost/FPPATesting/; For model server: No.  The site is hosted on a server of InMotion.

    I see that my local server folder was automatically filled with site files, but there are many missing, although the index.shtml file is there. If I drag the index.shtml file in the test folder in the field URL of Safari, it shows pretty much as it should, except that my Include files were not loaded. the Include files are in the folder test, but they aren't repeated. I get the same result if I choose Preview in Safari. And in this case, the files are all taken from the test folder; If the test server seems to be recognized by Dreamweaver.

    Curiously, if in the test folder, I open the file index.shtml, in Dreamweaver, Live View in Dreamweaver displays a seemingly complete site - almost. It is not complete because there not all the image files for the site. But the Include files have been included.

    So my problem is from my test server. I thought that call for a preview in one of the browsers show me the full site. Would it because I chose a server model "None"? I didn't know what else to use, as I am not including any content database. What should I do now?

    This can help working with server-side includes in Dreamweaver.

  • Many problems with the Camileo X 100

    I have a Camileo X 100 (nice and fantastic image quality) and the files are not edit from any conversion or editing software, I tried several times with all software codec
    My PC configuration is:

    Win VISTA Home Premium SP2 32 bits, ACER 9420 17 ", Intel Core 2 CPU T5500, 1.66 GHz, RAM 2 GB, 160 GB HARD drive, NVIDIA G... eForce Go 7300, K-Lite Codec Pack 5.8.3, etc..).
    0 is sufficient or not, for family movies to watch on DIVX player (on Plasma 42 '' HD Ready TV)?

    Issues related to the:
    1. How can I manage these files?
    2. I to convert before (but without the quality loss)?
    3 Please someone explain 'step by step' what I need to do (and with what software) to make simple movies (divx), without quality loss?
    4. when I connect my X 100 to the TV and I watch a movie, always remain above a boring bunch of icon that it does not disappear. Is only my X 100 or other people has the same problem?
    5. I have a lot of problem also with remote control, it's very crazy (bad firmware, zoom not working,...)?
    6 is it better me to return the camera, or these problems have all and that they can be resolved?
    7. is there someone who does not have problems with x 100? How is possible?
    8. when Toshiba updates the firmware?

    There are too many insects (ALL IS SLOW AND UNSTABLE).
    Only ARCSoft (software bundle) works, but it is not good (cheap).
    Please answer me all 9 questions.
    Sorry for my English (I prefer Italian).

    Thanks for the help.
    Antony

    0 configuration is fine, although I would not use Vista, but it's personal preference.
    1. the files can be managed without conversion with any video editing program, for example, Sony Vegas, Nero Vision, etc.
    2 - 3.Conversion is necessary to be able to view the DIVX player, as AVCHD is not supported usually. Unless you have a Blu - ray player. If you have one, you can prepare a BR disc on computer time, if you have a BR player that can burn discs BR. In this case the conversion will be done, but quality will remain. You can not divx without loss of quality. It is impossible.
    4. annoying iis band always on the screen, you cannot delete it.
    5. the remote control works well, with the only problem I've found, described in I opened. Zoom does not work? You mean during playback? It only works when you save.
    6. it of your decision if you return the camera or not. I think that for this price it is very good. Get you one, where there is no such problems for the triple price.
    7.i have a single problem (remote) with it, but at the moment I can live with, that I made my compromise.
    8 Toshiba support is terrible. I can not even a phone number or e-mail address in Hungary for Toshiba to support. The Web page for support is source of confusing and if you search for TV, you're not among the many companies, that takes the car from these products. Ridiculous. I don't know if they will update the firmware, I'm curious too.

    Good luck.

  • OfficeJet 6500 Wireless: Win 10 - Solution Center - scan not performed as another program using the imaging device

    I upgraded to 10 Windows on a laptop ASUS, then updated the software for a HP Officejet 6500 E709n Series printer HP solutions Center.

    I can print successfully to the printer but when I open the solution Center and then try to scan an image or a Document, I get the following error "Scan cannot be performed because another program or computer using the networked imaging device.

    Extended error information is 8, [(0.18,-2147467259)]

    When I look in device under imaging devices Manager, two devices are displayed ASUS USB2.0 WebCam (1) and (2) Officejet 6500 E709n.

    It would be much appreciated if someone could help me solve this problem.

    Hi midnight-anwrs,.

    Thanks for getting back to me.

    I looked into your link "Printer problems after upgrade to Windows 10" and 6 "Scan with a scanning application" stage, I found the solution.

    I downloaded the "HP Scan and capture App" and can now easily scan photos and documents.

    Thanks for your help.

    Much appreciated,

    KenRabs

  • Many problems with the runtime Adobe AIR for Android

    I created an application on Adobe AIR for Android platform, which requires for AIR. The app is very popular in the Android Market, but many users complain of problems with the installation of the Adobe Air runtime.

    For example, these users phones: LG LGE-P698, LG Pecan, HTC Wildfire. But judging by the fact that users have access to the installation of the Air, their phones are compatible with it.

    Tell me how to solve the problem?

    In addition, I have a few questions:

    1. Decides that the problem of demand for export with built-in AIR runtime?

    2. I have create my applications using ADT. In this case how do I seal AIR runtime?

    3. is it possible to invite the user to download and install older versions of AIR? Where can I find her?

    I hope I can help, because the problem is global.

    Hi Astraport,

    I think you should integrate the air in your application runtime,

    Some time ago I wrote a step by step guide, take a look at this post:

    http://forums.Adobe.com/message/3961579#3961579

    I hope it helps

  • There is a bar type to pass or web search that does not work after installation ver8. Meanwhile we for many sequence using the gogle search first, then go on the web that should be only type n with formla version before 8.

    I used a Firefox oldies until one day, she has been updated in the new version 8.0, then the access bar for research that has happened every time when I go to the website I do there and enter wasn't working more.
    I use Windows XP as an o/s, with Pentium dual core CPU.
    Finally, I used to tap on the Goggle search bar, entrance to enter the pint n research to go on the web I want.
    It make it difficult when in a hurry and make me upset.

    do not know who change the  search bar which is common to enter  web address on there and work excepted for this new Firefox 8.0.
    

    If any changes, please check and advice.
    Thank you
    Concerning

    Try Firefox SafeMode to see how it works there.

    A way of solving problems, which disables most of the modules.

    (If you use it, switch to the default theme).

    • You can open the mode without failure of Firefox 4.0 + by pressing the SHIFT key when you use the desktop Firefox or shortcut in the start menu.
    • Or use the Help menu option, click restart with the disabled... modules while Firefox is running.

    Do not choose anything at the moment, just use 'continue in safe mode.

    To exit safe mode of Firefox, simply close Firefox and wait a few seconds before using the shortcut of Firefox (without the Shift key) to open it again.

    If it's good in Firefox Safe mode, your problem is probably caused by an extension, and you need to understand that one.

    http://support.Mozilla.com/en-us/KB/troubleshooting+extensions+and+themes

    When find you what is causing that, please let us know. It might help others who have this problem.

  • Problems using the iPad Pro notes app

    I have a new iPad Pro (IOS 9.2), but the notes app doesn't seem to work properly with a pencil. There is no line doodle icon and I can't write with a pencil. Can I use the pencil to 'click' on the functions as "BOLD" and new, but not as a pencil. Someone at - it experience with this and how can I solve this problem?

    Have you updated the Notes app in the app itself.

  • Equium L40 problems using the recovery disk

    Hello

    I wonder if anyone can help me?

    I want to restore my computer but when I put the recovery disk in I select the cd/dvd rom drive by pressing f12 at startup.
    I also maintained pressed C when I lit. I select the disc I want to start the computer, it goes to a black screen, then it loads just windows up as usual.

    I phoned with Toshiba for help and all they could tell me was that as another drive worked on my computer, it isn't a problem with the disk drive, but a problem with the disc and it will cost me 30 quid for a new!

    Is anyone able to give me any help

    Thank you

    Hello

    If I understand your message, you are not able to recover the laptop using the Toshiba disc. Is this good?

    Well, in your case I recommend to start from another original Windows XP CD bootable disc or Vista DVD or a Linux drive to test if the CD/DVD drive can handle this drive.

    In this case, you can test if your CD/DVD drive is faulty or if the problem is related to the Toshiba DVD recovery.

    Welcome them

Maybe you are looking for

  • HP Pavilion 13x2pc - FOA05AV: System here Unhandled Exception

    Windows loaded 10 last fall and system works fine up until yesterday, it came with the blue screen 'System Thread Exception unhandled' without additional error message.  System tried to auto repair did not work.  I tried the PC reset option - returns

  • RESTORATION OF FULL SCREEN

    When I open certain programs I need to RESTORE to the TOP to get the full screen.  Is there a function I have to CLICK enable full screens.  Only some of the screens I opened (ie., IE) needs to full screen.

  • Connection WIFI mobile phone to the laptop, so I can access the web of the cell

    My laptop is connected to the internet by internet dongle, I want to connect my cell phone to the laptop via WIFI so I can access the Internet from the mobile phone, how to put in place on windows 7?

  • BlackBerry Smartphones BB Messenger

    What is the reasoning similarly have a BB Messenger if you have texting? What benefits do I have to have? He asks me to send/terminals, how am I supposed to enter his pin code, if I do not know, or simply e-mail address sufficient? I have unlimited d

  • Research problem quick blackBerry Smartphones Contact phone number

    Recently, my BB 8820 stopped to retrieve the contacts from the main view when I get the first letters of the name of my contact. Instead of that, he's now the call log which contains only the last names of called contacts. I did no change in system w