Htmldb_collection and db read

Is there a way to force sequential read over scattered read when using htmldb_collection.add_member?
I have traced an issue with response time to the following section of my code:
if length(dcg) > 1 then
          htmldb_collection.add_member(
               p_collection_name => 'DCGCOLLECTION',
               p_c001 => shuttle_rec.obt_seq_id,
               p_c002 => dcg,
               p_generate_md5 => 'NO');
end if;
Here is what I am seeing in TKPROF (sorry I can not get the execution report section formatted better). I attempted to recreate the same flow each time, but because I can not predict when the different reads will happen it is difficult. Therefore I have cut and pasted the corresponding sections of the two trace and tkprof output files below.
You will see that when the system responds as desired, it is using “INDEX RANGE SCAN WWV_FLOW_COLLECTION_MEMBERS_PK” and “db file sequential read”. When response time is slow it uses “INDEX FAST FULL SCAN WWV_FLOW_COLLECTION_MEMBERS_PK” and “db file scattered read”.
FAST RESPONSE:
TRACE FILE – just enough to show the collection name (value=)
SELECT NVL(MAX(SEQ_ID),0) MAXSEQ FROM WWV_FLOW_COLLECTIONS$ C, WWV_FLOW_COLLECTION_MEMBERS$ M WHERE C.SESSION_ID = V('SESSION') AND C.USER_ID = :B4 AND C.SECURITY_GROUP_ID = :B3 AND C.FLOW_ID = :B2 AND C.ID = M.COLLECTION_ID AND C.COLLECTION_NAME = UPPER(:B1 )
END OF STMT
PARSE #53:c=0,e=81,p=0,cr=0,cu=0,mis=0,r=0,dep=2,og=1,tim=4046522821
BINDS #53:
bind 0: dty=1 mxl=2000(255) mal=00 scl=00 pre=00 oacflg=03 oacfl2=206001 size=2080 offset=0
bfp=091722d4 bln=2000 avl=04 flg=05
value="RICH"
bind 1: dty=2 mxl=22(21) mal=00 scl=00 pre=00 oacflg=03 oacfl2=206001 size=0 offset=2000
bfp=09172aa4 bln=22 avl=09 flg=01
value=1807302131050935
bind 2: dty=2 mxl=22(21) mal=00 scl=00 pre=00 oacflg=03 oacfl2=206001 size=0 offset=2024
bfp=09172abc bln=22 avl=03 flg=01
value=106
bind 3: dty=1 mxl=32(13) mal=00 scl=00 pre=00 oacflg=03 oacfl2=206001 size=0 offset=2048
bfp=09172ad4 bln=32 avl=13 flg=01
value="DCGCOLLECTION"
TKPROF –
SELECT NVL(MAX(SEQ_ID),0) MAXSEQ
FROM
WWV_FLOW_COLLECTIONS$ C, WWV_FLOW_COLLECTION_MEMBERS$ M WHERE C.SESSION_ID =
V('SESSION') AND C.USER_ID = :B4 AND C.SECURITY_GROUP_ID = :B3 AND
C.FLOW_ID = :B2 AND C.ID = M.COLLECTION_ID AND C.COLLECTION_NAME =
UPPER(:B1 )
call count cpu elapsed disk query current rows
Parse 2 0.00 0.00 0 0 0 0
Execute 226 0.03 0.07 0 0 0 0
Fetch 226 0.01 0.03 3 1145 0 226
total 454 0.04 0.10 3 1145 0 226
Misses in library cache during parse: 1
Misses in library cache during execute: 1
Optimizer mode: ALL_ROWS
Parsing user id: 67 (recursive depth: 2)
Rows Row Source Operation
2 SORT AGGREGATE (cr=10 pr=3 pw=0 time=18198 us)
0 NESTED LOOPS (cr=10 pr=3 pw=0 time=18167 us)
2 TABLE ACCESS BY INDEX ROWID WWV_FLOW_COLLECTIONS$ (cr=4 pr=0 pw=0 time=277 us)
2 INDEX UNIQUE SCAN WWV_FLOW_COLLECTIONS_UK (cr=2 pr=0 pw=0 time=238 us)(object id 52046)
0 INDEX RANGE SCAN WWV_FLOW_COLLECTION_MEMBERS_PK (cr=6 pr=3 pw=0 time=17876 us)(object id 52050)
Elapsed times include waiting on following events:
Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
db file sequential read 3 0.00 0.01
INSERT INTO WWV_FLOW_COLLECTION_MEMBERS$( COLLECTION_ID, SEQ_ID, C001, C002,
C003, C004, C005, C006, C007, C008, C009, C010, C011, C012, C013, C014,
C015, C016, C017, C018, C019, C020, C021, C022, C023, C024, C025, C026,
C027, C028, C029, C030, C031, C032, C033, C034, C035, C036, C037, C038,
C039, C040, C041, C042, C043, C044, C045, C046, C047, C048, C049, C050,
MD5_ORIGINAL )
VALUES
( :B53 , :B52 , :B51 , :B50 , :B49 , :B48 , :B47 , :B46 , :B45 , :B44 , :B43 ,
:B42 , :B41 , :B40 , :B39 , :B38 , :B37 , :B36 , :B35 , :B34 , :B33 , :B32
, :B31 , :B30 , :B29 , :B28 , :B27 , :B26 , :B25 , :B24 , :B23 , :B22 ,
:B21 , :B20 , :B19 , :B18 , :B17 , :B16 , :B15 , :B14 , :B13 , :B12 , :B11 ,
:B10 , :B9 , :B8 , :B7 , :B6 , :B5 , :B4 , :B3 , :B2 , :B1 )
call count cpu elapsed disk query current rows
Parse 1 0.01 0.00 0 0 0 0
Execute 59 0.12 0.12 7 30 311 59
Fetch 0 0.00 0.00 0 0 0 0
total 60 0.14 0.13 7 30 311 59
Misses in library cache during parse: 1
Misses in library cache during execute: 1
Optimizer mode: ALL_ROWS
Parsing user id: 67 (recursive depth: 2)
Elapsed times include waiting on following events:
Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
db file sequential read 6 0.00 0.02
UPDATE WWV_FLOW_COLLECTIONS$ SET COLLECTION_CHANGED = 'Y'
WHERE
ID = :B1 AND COLLECTION_CHANGED = 'N'
call count cpu elapsed disk query current rows
Parse 2 0.01 0.00 0 0 0 0
Execute 226 0.01 0.02 0 452 18 6
Fetch 0 0.00 0.00 0 0 0 0
total 228 0.03 0.03 0 452 18 6
Misses in library cache during parse: 1
Misses in library cache during execute: 1
Optimizer mode: ALL_ROWS
Parsing user id: 67 (recursive depth: 2)
Rows Row Source Operation
2 UPDATE (cr=4 pr=0 pw=0 time=476 us)
2 TABLE ACCESS BY INDEX ROWID WWV_FLOW_COLLECTIONS$ (cr=4 pr=0 pw=0 time=66 us)
2 INDEX UNIQUE SCAN WWV_FLOW_COLLECTIONS_PK (cr=2 pr=0 pw=0 time=38 us)(object id 52045)
SLOW RESPONSE:
TRACE FILE – just enough to show the collection name (value=)
SELECT NVL(MAX(SEQ_ID),0) MAXSEQ FROM WWV_FLOW_COLLECTIONS$ C, WWV_FLOW_COLLECTION_MEMBERS$ M WHERE C.SESSION_ID = V('SESSION') AND C.USER_ID = :B4 AND C.SECURITY_GROUP_ID = :B3 AND C.FLOW_ID = :B2 AND C.ID = M.COLLECTION_ID AND C.COLLECTION_NAME = UPPER(:B1 )
END OF STMT
PARSE #39:c=0,e=89,p=0,cr=0,cu=0,mis=0,r=0,dep=2,og=1,tim=1298905691
BINDS #39:
bind 0: dty=1 mxl=2000(255) mal=00 scl=00 pre=00 oacflg=03 oacfl2=206001 size=2080 offset=0
bfp=06250cb8 bln=2000 avl=04 flg=05
value="RICH"
bind 1: dty=2 mxl=22(21) mal=00 scl=00 pre=00 oacflg=03 oacfl2=206001 size=0 offset=2000
bfp=06251488 bln=22 avl=09 flg=01
value=1807302131050935
bind 2: dty=2 mxl=22(21) mal=00 scl=00 pre=00 oacflg=03 oacfl2=206001 size=0 offset=2024
bfp=062514a0 bln=22 avl=03 flg=01
value=106
bind 3: dty=1 mxl=32(13) mal=00 scl=00 pre=00 oacflg=03 oacfl2=206001 size=0 offset=2048
bfp=062514b8 bln=32 avl=13 flg=01
value="DCGCOLLECTION"
TKPROF –
SELECT NVL(MAX(SEQ_ID),0) MAXSEQ
FROM
WWV_FLOW_COLLECTIONS$ C, WWV_FLOW_COLLECTION_MEMBERS$ M WHERE C.SESSION_ID =
V('SESSION') AND C.USER_ID = :B4 AND C.SECURITY_GROUP_ID = :B3 AND
C.FLOW_ID = :B2 AND C.ID = M.COLLECTION_ID AND C.COLLECTION_NAME =
UPPER(:B1 )
call count cpu elapsed disk query current rows
Parse 1 0.00 0.00 0 0 0 0
Execute 224 0.10 0.06 0 0 0 0
Fetch 224 32.37 603.54 1916959 1923042 0 224
total 449 32.48 603.61 1916959 1923042 0 224
Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: 67 (recursive depth: 2)
Rows Row Source Operation
224 SORT AGGREGATE (cr=1923042 pr=1916959 pw=0 time=603553959 us)
6160 NESTED LOOPS (cr=1923042 pr=1916959 pw=0 time=73040535 us)
224 TABLE ACCESS BY INDEX ROWID WWV_FLOW_COLLECTIONS$ (cr=448 pr=0 pw=0 time=21810 us)
224 INDEX UNIQUE SCAN WWV_FLOW_COLLECTIONS_UK (cr=224 pr=0 pw=0 time=18572 us)(object id 52046)
6160 INDEX FAST FULL SCAN WWV_FLOW_COLLECTION_MEMBERS_PK (cr=1922594 pr=1916959 pw=0 time=73009271 us)(object id 52050)
Elapsed times include waiting on following events:
Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
db file scattered read 124352 0.03 588.32
INSERT INTO WWV_FLOW_COLLECTION_MEMBERS$( COLLECTION_ID, SEQ_ID, C001, C002,
C003, C004, C005, C006, C007, C008, C009, C010, C011, C012, C013, C014,
C015, C016, C017, C018, C019, C020, C021, C022, C023, C024, C025, C026,
C027, C028, C029, C030, C031, C032, C033, C034, C035, C036, C037, C038,
C039, C040, C041, C042, C043, C044, C045, C046, C047, C048, C049, C050,
CLOB001, MD5_ORIGINAL )
VALUES
( :B54 , :B53 , :B52 , :B51 , :B50 , :B49 , :B48 , :B47 , :B46 , :B45 , :B44 ,
:B43 , :B42 , :B41 , :B40 , :B39 , :B38 , :B37 , :B36 , :B35 , :B34 , :B33
, :B32 , :B31 , :B30 , :B29 , :B28 , :B27 , :B26 , :B25 , :B24 , :B23 ,
:B22 , :B21 , :B20 , :B19 , :B18 , :B17 , :B16 , :B15 , :B14 , :B13 , :B12 ,
:B11 , :B10 , :B9 , :B8 , :B7 , :B6 , :B5 , :B4 , :B3 , :B2 , :B1 )
call count cpu elapsed disk query current rows
Parse 1 0.00 0.00 0 0 0 0
Execute 224 0.39 0.57 190 11 1319 224
Fetch 0 0.00 0.00 0 0 0 0
total 225 0.39 0.57 190 11 1319 224
Misses in library cache during parse: 1
Misses in library cache during execute: 1
Optimizer mode: ALL_ROWS
Parsing user id: 67 (recursive depth: 2)
Elapsed times include waiting on following events:
Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
db file sequential read 188 0.00 0.06
UPDATE WWV_FLOW_COLLECTIONS$ SET COLLECTION_CHANGED = 'Y'
WHERE
ID = :B1 AND COLLECTION_CHANGED = 'N'
call count cpu elapsed disk query current rows
Parse 1 0.00 0.00 0 0 0 0
Execute 224 0.01 0.03 0 448 12 4
Fetch 0 0.00 0.00 0 0 0 0
total 225 0.01 0.03 0 448 12 4
Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: 67 (recursive depth: 2)
Rows Row Source Operation
4 UPDATE (cr=448 pr=0 pw=0 time=9004 us)
4 TABLE ACCESS BY INDEX ROWID WWV_FLOW_COLLECTIONS$ (cr=448 pr=0 pw=0 time=7205 us)
224 INDEX UNIQUE SCAN WWV_FLOW_COLLECTIONS_PK (cr=224 pr=0 pw=0 time=4003 us)(object id 52045)
Thanks for any help.

Vikas,
     pga_aggregate_target = 25165824
     workarea_size_policy = AUTO
I have not run statistics on all tables in my development database, so I believe I am operating in Rules Based Optimization.
However, all pages running against tables in my database operate fine. It is not until I create an htmldb_collection by running a query against another htmldb_collection that I see slow response times.
Here is an overview of the process, and the steps I went through when tracing:
User logs in and is brought to the main page.
User selects “Locate Agreements” from a sidebar menu and is sent to a page with reports region built on the AGREEMENTS table (currently 450 rows in development).
User selects “Costa Rica” from a select list of terminating countries and the page is submitted and refreshed showing only Costa Rica agreements.
User clicks on the ‘Edit’ link for an agreement and is sent to the details page for the selected record.
     Now that a specific agreement has been selected, this page fires the on-demand process “load tier collections” on load, after footer. This process is viewable by going to http://htmldb.oracle.com/pls/otn/f?p=23228:2:218044503435049191::::: and downloading. Processing time to this point is fine.
User selects “Tiers” from the sidebar menu and is sent to a page built on the htmldb_collection OBTCOLLECTION which was created by the load tier collections process.
     Here is where the delay occurs. This page fires the on-demand process “load shuttle collections” on load, after footer. This process is viewable by going to http://htmldb.oracle.com/pls/otn/f?p=23228:2:218044503435049191::::: and downloading. This process creates multiple htmldb_collections for use on the next page. Using a cursor to move through the OBTCOLLECTION (created earlier), four fields, each containing semi-colon delimited strings, are parsed and the values are inserted into the appropriate collections (DCGCOLLECTION, CITYCOLLECTION, PRODCOLLECTION, PRDCOLLECTION). It would appear, after looking at the trace files, that the creation of the DCGCOLLECTION is causing the biggest delay. This page will load in seconds when operating correctly, but takes as much as 10 minutes when it is not. I have seen this happen at all times of the day, and there is nothing else (nor anyone else) running on the server.
Richard

Similar Messages

  • Can you please put me in touch with the support  for the trial copy of adobe acrobat XI pro which I had tried out on March 15 for 30 days. I have  been trying to cancel since the cost is too much and Acrobat Reader is OK for me. I can't find uninstaller.

    Can you please put me in touch with the support  for the trial copy of adobe acrobat XI pro which I had tried out on March 15 for 30 days. I have  been trying to cancel since the cost is too much and Acrobat Reader is OK for me. I can't find uninstaller.
    I have had to erase my disk since then with trouble with Apple Store not recognising my machine and the reload from Time Machine has given complications . Can you please cancel my trial and return my Trial money.

    If you paid for what you used then it was not a trial.
    Look thru the following links and use the chat option if required for your situation:
    Cancel your membership or subscription | Creative Cloud
    https://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html
    https://forums.adobe.com/thread/1703848
    Chat support - For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Creative Cloud support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html ( http://adobe.ly/19llvMN )
    Phone support | Orders, returns exchanges
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Using join and batch reading in the same query

    Hi,
    I wonder if it is possible to use "Joining" and "batch reading" in the same query.
    For example I Have
    A -> 1-1 B
    A -> 1-1 B
    B -> 1-M C
    This is the case where I have two separate 1-1 relationships to the same class B from A. Toplink 10.0.3 can manage it nicely through joining.
    Now, I would like to read a set of As (with its 2 Bs) and all Cs for each B.
    It seems that the following configuration does not work:
    A -> 1-1 B (use joining)
    A -> 1-1 B (use joining)
    B -> 1-M C (Batch read)
    Any help would be greatly appreciated
    Tony.

    James,
    Would you be so kind to look at the following code?
    Am I formulating it correctly to achieve my desired behavior?
    Trip.class -> 1-1 PickupStop
    Trip.class -> 1-1 DropoffStop
    PickupStop and DropoffStop extend Stop and use same table (STOP)
    Stop -> 1-M StopEvents
    I would like to fetch all Trips, with their Stops and all StopEvents in 2 queries:
    1. Trip joined with Stop
    2. Batchread StopEvents
    Code:
    ReadAllQuery raq = new ReadAllQuery(Trip.class);
    Expression qexp1 = new ExpressionBuilder();
    Expression qexp2 = new ExpressionBuilder();
    raq.addJoinedAttribute("pickupStop");
    raq.addJoinedAttribute("dropoffStop");
    raq.addBatchReadAttribute(qexp1.get("pickupStop").get("vStopEvents"));
    raq.addBatchReadAttribute(qexp2.get("dropoffStop").get("vStopEvents"));

  • HT1695 I know nothing about how to use my new ipod and when reading the little bit of information in the folder that came with it, all I can do is turn it on, but it just powers down after a few seconds.  How do I work this thing?

    I know nothing about how to use my new ipod and when reading the little information that came with it, all I can do is turn it on.  Then in a few seconds it goes black, never having brought up a screen to do anything!  Help!  What do I do to get this thing going?

    You might consider connecting it to the charger and charging up the battery overnight.
    Please Get the iPod Touch User Manual for iOS 5

  • With OSX10.7.5 and Adobe Reader 11.0.02 when I try to open a PDF downloaded from the web I get 'There was an error opening this document. This file is damaged and could not be repaired. Preview will not open either. Older PDFs OK.

    I am running OS X 10.7.5 and Adobe Reader 11.0.02. In the last few days I have been unable to open PDF's downloaded from the web. Reader gives the error message 'There was an error opening this document. The file is damaged and could not be repaired'. Removing Reader and trying to use Preview to open these files give the error 'Preview cannot open this file. It may be damaged or use a file format that Preview doesn't recognise' (or something like that). Downloading the same files with Reader removed from my Mac Preview opens the files OK.
    I was recently prompted to update Adobe software but did not note exactly what the update was nor when it was done.
    Reader and Preview will both open PDFs I downloaded a week ago. Reader will also open files downloaded on another Mac running OS X 10.0.0 and copied to my Mac. Any ideas?

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • My Ipad has hung up on a book that I downloaded and was reading. I cannot turn the page or exit the book.  I can get to my ipad desktop but still cannot close the book.

    My iPad has hung up on a book that I downloaded and was reading. 
    I icannot turn the page or exit the book. I can still ge to my ipad desktop but
    still canno close out the book.

    Quit iBooks and restart the iPad and then try the book again.
    Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • How to share files in a network and allow read-and-write to a specific computer only?

    I have several computers in my network, and I want to share a folder and allow read-and-write from computer A to Computer B only, and omit computer C. How do I do that? Thanks.

    Thanks for the suggestion. I like this approach as Java is more familiar to me than other languages.
    Our DBA is out of touch today, so I could not grant the javauserpriv to my database user. I tried to run the script anyway in the chance that my user had the privs, and it seemed to have hung. I am now combing Oracle's site for more documentation so I can write some tests to see if I can get a basic Java object working. Under what heading would I find this?
    ajt

  • Selecting one cursor at a time and then reading its value

    I am a novice LabView user. I am trying to develop a program in which I have to select portions of a waveform and delete the outliers.  The problems I run into is selecting cursors at a time and then reading its value. I was using Active Cursor. Ideally what I need is to read read values of the first two cursors, cursor0 and cursor1 and remove outliers in the region and then move to region between cursor1 and cursor2 and so on. Is there a way to control which cursors are active, read its value and then move to the next set.

    Hi binc,
    I have attached a VI that should remove outliers. This may not be the best way to do it, but it is one possibility.
    Thanks,
    Paul B.
    Motion Control R&D
    Attachments:
    Remove_outliers.vi ‏20 KB

  • Windows vista, internet explorer 8 and adobe reader 9

    I have windows vista, internet explorer 8 and adobe reader 9.  When i open pdf files from a website i cannot save the document.  I don't get an error message, it just does not open.

    Have you tried capturing these application in separate packages?  I have been successful in capturing IE8 in one package and Adobe Reader XI in another package and then using the OptionalAppLinks option in the IE8 package to point to the Adobe Reader dat file.  Just make sure that both packages work outside of the applinking.  Also, you can try to install Adobe to the native machine and see if the embedded pdfs work in the virtual IE package. 
    These are just the troubleshooting steps that I would take to narrow down what is causing the issue you are seeing.
    Lance

  • Consistent gets and physical reads

    Hi all,
    I am tuning a DM SQL query, by comparing execution plans with STAR TRANSFORMATION enabled or disabled. I got the following results:
    STAR TRANSFORMATION ON
    74889 consistent gets
    254365 physical reads
    STAR TRANSFORMATION OFF
    1945892 consistent gets
    168028 physical reads
    I thought a physical read would be counted as a logical read as well, because the data block would be read from disk (1 physical IO), placed in the buffer cache and then read from there (1 more logical IO or consistent get).
    So, one physical IO does not cause a logical IO?
    Thanks!
    Edited by: user10634835 on 12-Jul-2011 08:40

    But shouldn't consistent gets be >= physical reads (Since, as per my understanding, 1 PIO causes at least 1 LIO)? In this case it is not.
    74889 consistent gets
    254365 physical readsJust clarifying for my knowledge.
    regards

  • Hi recently my MacBook pro has stopped connecting to our office Synology server automatically.  I now have to Go Connect to Server etc in order to browse the file server. Clearing key chain and then readding everything hasnt made any difference. HELP

    Hi recently my MacBook pro has stopped connecting to our office Synology server automatically.  I now have to Go > Connect to Server > etc in order to browse the file server. Clearing key chain and then readding everything hasnt made any difference. HELP

    Not sure what other tests they could run for me. I've pretty much run all the tests I can using Drive Genius and Tech Tool Pro 5. Is there anything they use that I don't know about??

  • Not able to open pdf and adobe reader on windows xp sp3.

    Hello,
    I am not able to open pdf and adobe reader on my windows xp sp3 computer. I have reinstalled adobe reader 11.0.3 twice, but, no luck. I would appreciate if you could help me in resolving this issue. Thanks in advance.
    Regards,
    Venkata

    You can try using this tool to first remove all traces of Reader from your computer:
    http://labs.adobe.com/downloads/acrobatcleaner.html
    Then, you can download the full offline Reader installer from
    http://get.adobe.com/reader/enterprise/
    After downloading, restart your computer and run the installer before doing anything else.

  • How to open pdf in Acrobat Reader in Firefox window/Tab when both Acrobat Pro and Acrobat REader are

    I would like to open pdf files in firefox using Adobe Acrobat Reader.
    I have both Acrobat Pro or whatever its called and Acrobat Reader installed.
    Presently going to firefox's tools, options, then selecting the file types option I cannot select any plugin to open my pdf's besides what's labeled as "adobe acrobat" but which executes an in-tab instance of Adobe Acrobat Pro, despite the ambiguous language on the plugin which I suspect stems from Adobe's evolving and confusing conventions regarding just what Adobe Reader, Adobe Acrobat, Adobe Acrobat Reader, and Adobe Acrobat Pro really is.
    Anyways, how to make pdfs open in-tab instances of Adobe Acrobat Reader while I have both the Reader and the Pro installed?
    Is there a sepperate plugin I need or something?
    Any help is very Appreciated

    eh,
    The problem w/ acrobat is that it takes forever to load
    I was going to just use reader to read documents, and acrobat to edit, so I could gut reader of all the plugins worthless for 99.9999 of pdfs I use and it'll load fast.
    foxit is nice, but won't open in-browser despite their continuing claims of supporting this feature.
    That's so bizarre that adobe won't allow you to choose which one you want to run. Its installed as sepperate programs on the uninstall list, on the "open with" context menu, and w/ file associations, so why would it not be possible to only open pdf links w/ one?
    Maybe its time to abandon acrobat and just use reader. There's much cheaper programs w/ all the same functionality as acrobat, so I guess I'll move on to those.
    If anyone else has suggestions feel free to make em.

  • I open the first pdf and can read it.  If I open a second pdf, the second one does not appear.

    Moving the cursor over the first pdf begins painting the second pdf in small blocks.  I'm running XP with all the latest MS updates.  I've also run the latest updates for Adobe Reader and checked the Adobe Add-ins are in IE 8.0.  This same issue occurs, running Adobe Pro.  No errors are logged in the Event Log.  Any idea where to start looking?

    Quit Safari.
    Open the Library folder in your home folder as follows:
    ☞ If running Mac OS X 10.7 or later, hold down the option key and select Go ▹ Library from the Finder menu bar.
    ☞ If running an older version of Mac OS X, select Go ▹ Go to Folder… from the Finder menu bar and enter “~/Library” (without the quotes) in the text box that opens.
    Delete the following items from the Library folder:
    Caches/com.apple.Safari/Cache.db
    Preferences/com.apple.quicktime.plugin.preferences.plist
    Preferences/QuickTime Preferences
    Relaunch Safari and test.

  • How do I uninstall Reader 9.1.3 and Update 9.1.3-CPSID_49522 and reinstall Reader 8.1.3?

    I know this sounds backwards but I have been encountering many computer problems when I realized that Adobe Reader updates 9.1.2 and 9.1.3 plus Reader 9.1.3-CPSID_49522 were installed on my computer but the system requirements for these programs are above my computer's capability. i.e. I only have a Pentium III processor with 863MHz, 512Mg of RAM. I've already used the Add/Remove program to uninstall 9.1.2, but after reading many of the installation problems here I am afraid to proceed any further without advice since the update 9.1.3-CPSID_49522 says that it cannot be uninstalled. Can anyone tell me how to safely uninstall these so that I can reinstall Reader 8.1.3?

    So Reader 9.1.2 is uninstalled, but the 9.1.3 update is still in Add/Remove Programs?
    Use the Windows Installer CleanUp Utility to remove this part from the installed programs, then go ahead and install Reader 8.1.  Note that the latest update for Reader 8.1 is 8.1.7.

Maybe you are looking for