LIO/PIO and redo size

Hi,
I have the query below:
with D_FLO_PTN as (SELECT   *
            FROM   FLO_PTN
           WHERE   FLO_PTN.ID_ETU IN (SELECT   id_etu
                                        FROM   music_adm.adm_users_rights
                                       WHERE   user_name = UPPER ('SALG_CB'))
                   OR FLO_PTN.PDTETU IN
                           (SELECT   id_pdtetu
                              FROM   music_adm.adm_users_rights
                             WHERE   user_name = UPPER ('SALG_CB'))
                   OR EXISTS
                        (SELECT   1
                           FROM   music_adm.adm_users_rights
                          WHERE       id_etu = 0
                                  AND id_pdtetu = '0'
                                  AND user_name = UPPER ('SALG_CB'))),
D_FAI_VIS as (SELECT   *
            FROM   FAI_VIS
           WHERE   FAI_VIS.ID_ETU IN (SELECT   id_etu
                                        FROM   music_adm.adm_users_rights
                                       WHERE   user_name = UPPER ('SALG_CB'))
                   OR FAI_VIS.PDTETU IN
                           (SELECT   id_pdtetu
                              FROM   music_adm.adm_users_rights
                             WHERE   user_name = UPPER ('SALG_CB'))
                   OR EXISTS
                        (SELECT   1
                           FROM   music_adm.adm_users_rights
                          WHERE       id_etu = 0
                                  AND id_pdtetu = '0'
                                  AND user_name = UPPER ('SALG_CB'))),
d_dim_etu as (SELECT   *
            FROM   DIM_ETU
           WHERE   DIM_ETU.ID_ETU IN (SELECT   id_etu
                                        FROM   music_adm.adm_users_rights
                                       WHERE   user_name = UPPER ('SALG_CB'))
                   OR DIM_ETU.PDTETU IN
                           (SELECT   id_pdtetu
                              FROM   music_adm.adm_users_rights
                             WHERE   user_name = UPPER ('SALG_CB'))
                   OR EXISTS
                        (SELECT   1
                           FROM   music_adm.adm_users_rights
                          WHERE       id_etu = 0
                                  AND id_pdtetu = '0'
                                  AND user_name = UPPER ('SALG_CB')))                                
SELECT   TRIM (TO_CHAR (D_FLO_PTN.PTNNUMETU, '00000')),
         FLO_ITM.FMLNOMPAP,
         FLO_ITM.ITMNOMPAP,
         FLO_ITM.ITMVALCHR,
         FLO_ITM.ITMVALNUM,
         D_FAI_VIS.VISCOD,
         TRIM (TO_CHAR (D_FLO_PTN.NBRCEN, '0000')),
         TRIM (TO_CHAR (D_FAI_VIS.ID_ETU, '000')) || '-'
         || TRIM(TO_CHAR (
                    SUBSTR (D_FAI_VIS.ID_PTN,
                            1,
                            LENGTH (D_FAI_VIS.ID_PTN) - 5),
                    '00000'
         || '-'
         || D_FAI_VIS.VISCOD,
         D_DIM_ETU.NUMETU,
         D_FLO_PTN.LIBPAY,
         FLO_ITM.ITMVALNUM,
         D_FAI_VIS.VISDATTXT,
         FLO_ITM.ITMVALNUM,
         FLO_ITM.FMLKEYVAL
  FROM  
         D_FLO_PTN,
         FLO_ITM,
         D_FAI_VIS,
         D_DIM_ETU
WHERE       (FLO_ITM.ID_VIS = D_FAI_VIS.ID_VIS)
         AND (D_FLO_PTN.ID_PTN = D_FAI_VIS.ID_PTN)
         AND (D_DIM_ETU.ID_ETU = D_FLO_PTN.ID_ETU)
         AND (    D_DIM_ETU.NUMETU IN ('CL2-38093-011')
              AND FLO_ITM.FMLNOMPAP IN ('MMS')
              AND (D_FLO_PTN.INDSLC = 'YES')
              AND TRIM (TO_CHAR (D_FLO_PTN.PTNNUMETU, '00000')) IN
                       (SELECT   TRIM (
                                    TO_CHAR (D_FLO_PTN.PTNNUMETU, '00000')
                          FROM    D_FLO_PTN,
                                 FLO_ITM,
                                 D_FAI_VIS
                         WHERE   (FLO_ITM.ID_VIS = D_FAI_VIS.ID_VIS)
                                 AND (D_FLO_PTN.ID_PTN = D_FAI_VIS.ID_PTN)
                                 AND (    FLO_ITM.ITMNOMPAP IN ('TMMS_D')
                                      AND FLO_ITM.ITMVALNUM <= 20
                                      AND D_FAI_VIS.VISCOD IN ('ASSE'))))2 things I don't understand
- almost LIO ~ PIO but I have 2.5GB for the buffer cache
- redo size, I know about delayed block cleanout
but the second execution should return redo size =0 no ?
I am the only user on the database
11.2.0.1
1st execution
       1879  recursive calls
        332  db block gets
     250090  consistent gets
     248221  physical reads
       1804  redo size
     631470  bytes sent via SQL*Net to client
      14706  bytes received via SQL*Net from client
       1090  SQL*Net roundtrips to/from client
          1  sorts (memory)
          0  sorts (disk)
      16329  rows processed
2nd execution
       1879  recursive calls
        332  db block gets
     250423  consistent gets
     248220  physical reads
       1732  redo size
    1149536  bytes sent via SQL*Net to client
      14706  bytes received via SQL*Net from client
       1090  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
      16329  rows processed

user12045475 wrote:
2 things I don't understand
- almost LIO ~ PIO but I have 2.5GB for the buffer cache
- redo size, I know about delayed block cleanout
but the second execution should return redo size =0 no ?
I am the only user on the database
11.2.0.1
2nd execution
1879  recursive calls
332  db block gets
250423  consistent gets
248220  physical reads
1732  redo size
1149536  bytes sent via SQL*Net to client
14706  bytes received via SQL*Net from client
1090  SQL*Net roundtrips to/from client
0  sorts (memory)
0  sorts (disk)
16329  rows processed
Given the amount of work you're doing, the actual redo generated is not worth worrying about other than for reasons of curiosity.
LIO ~ PIO often indicates table scans or index fast full scans - and on 11.2 such scans can use serial direct reads; this would be sufficient to answer both your questions:
a) On direct path reads the blocks are read into the PGA, not the buffer cache, so you have to re-read them on the second execution
b) On direct path read you can do cleanout and generate redo, but the blocks are not in the cache so they don't get written back to the database, so you repeat the cleanout. (A small variation in redo could indicate some cleanout taking place on space management blocks which, I think, will go through the cache).
Regards
Jonathan Lewis

Similar Messages

  • Looking for average and max redo size generated per second

    Please,
    I'm implementing Dataguard physical standby on Oracle 10g R2 on Windows 2003.
    My issue is now how could I get redo size generated per second to compare with the actual bandwidth between primary and standby database.
    I know I can use the Database Console, but It wasn't installed at the database production.
    There's any link or script or view that I could use to resolve this issue?Thanks

    It depends on the statmemnst and the datatpyes that are inserted or update or deleted
    select b.name,a.value from v$sesstat a, v$statname b where a.statistic#=b.statistic# and b.name = 'redo size' and a.sid=<your SID>;
    courtesy to Daljit

  • Undo and redo optimal sizes

    Hi,
    I need to find an optimal size of a undo tablespace and redo log files... we are designing a new database as per the formulas that are given in many websites is "UndoSpace = [UR * (UPS * DBS)] + (DBS * 24)" .... but we still didn't build the database and not sure of those values... so how to design in that cases...
    Please help us at earliest..
    Regards,
    Ramu

    Ramu Jagini wrote:
    Hi,
    I need to find an optimal size of a undo tablespace and redo log files... we are designing a new database as per the formulas that are given in many websites is "UndoSpace = [UR * (UPS * DBS)] + (DBS * 24)" .... but we still didn't build the database and not sure of those values... so how to design in that cases...
    Please help us at earliest..
    Regards,
    RamuYou can only find it by empirical testing unless you know those values, which you can only find by empirical testing. The variance from certain feature usage alone can be orders of magnitude, and besides that programming style has a huge influence, as does actual user load. Beyond that, rare operations like massive loads and end of cycle processing may have much different needs. Tom Kyte makes a good case for saying you should leave large undo around for those cases, "wasted" disk is much cheaper than dealing with the lack of undo at critical times. Since you can tune redo log switching with timeouts, you might as well have redo sized for the rare cases too. You have to load the test data anyways, so that's a good first cut.
    Once you have a reasonable test going you can get advice from the db. Requirements can change over time, too.

  • How to recover database without controlfile and redo files?

    Hi all,
    If I just have datafiles using hot backup saving in another machine, and all files in current database were lost including data files,control files and redo log files .
    How can I recover database just using hot backup datafiles? without control file, without redo files.
    Your help is greatly appreciated.

    alter database backup control file to trace
    SQL> alter database backup controlfile to trace;
    Go to udump folder in oracle home folder check the trace file copy these lines
    CREATE CONTROLFILE REUSE DATABASE "O10G1” NORESETLOGS NOARCHIVELOG
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    MAXINSTANCES 8
    MAXLOGHISTORY 454
    LOGFILE
    GROUP 1 'E:\ORACLE2\PRODUCT\10.1.0\ORADATA\O10G1\REDO01.LOG' SIZE 10M,
    GROUP 2 'E:\ORACLE2\PRODUCT\10.1.0\ORADATA\O10G1\REDO02.LOG' SIZE 10M,
    GROUP 3 'E:\ORACLE2\PRODUCT\10.1.0\ORADATA\O10G1\REDO03.LOG' SIZE 10M
    -- STANDBY LOGFILE
    DATAFILE
    'E:\ORACLE2\PRODUCT\10.1.0\ORADATA\O10G1\SYSTEM01.DBF',
    'E:\ORACLE2\PRODUCT\10.1.0\ORADATA\O10G1\UNDOTBS01.DBF',
    'E:\ORACLE2\PRODUCT\10.1.0\ORADATA\O10G1\SYSAUX01.DBF',
    'E:\ORACLE2\PRODUCT\10.1.0\ORADATA\O10G1\USERS01.DBF'
    CHARACTER SET WE8MSWIN1252
    Change the new database name “abc
    ” and REUSE replaced by SET and NORESTLOGS replaced by RESTLOGS above lines.
    Save as C1.sql
    C:\ set oracle_sid=instance name
    C:\>sqlplus /nolog
    SQL*Plus: Release 10.1.0.2.0 - Production on Tue Apr
    11 06:44:28 2006
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> connect / as sysdba;
    Connected to an idle instance.
    SQL> startup nomount
    pfile='C:\oracle\product\10.1.0\admin\jeeno\pfile\jeenoinit.ora'
    ORACLE instance started.
    Total System Global Area 171966464 bytes
    Fixed Size 787988 bytes
    Variable Size 145750508 bytes
    Database Buffers 25165824 bytes
    Redo Buffers 262144 bytes
    SQL> @c1.sql
    Control file created.
    SQL> alter database open resetlogs;
    Database altered

  • Estimate Redo Size

    Hii All
    Is there any math to estimate how much redo a sql will generate ? I know redo size statistic shows but I am just asking for understand basic concept.
    For example I am updating LOC column on dept table that is the scoot schema and has not index on column so this dml generate about 200-300 byte redo
    Best Regards..

    >
    What purpose of the giving my user statistics ?
    >
    The purpose is to remind you that you appear to be violating forum etiquette by not marking your questions answered.
    You have 66 previous questions that you have not marked as ANSWERED and it is statistically unlikely that none of them have actually been answered.
    The likely reason is that you are not following forum etiquette and marking questions answered. See the FAQ (link in upper right corner of this page) for forum rules.
    >
    What is proper discussion forum etiquette?
    When asking a question, provide all the details that someone would need to answer it including your database version, e.g. Oracle 10.2.0.4.
    Format your code using code tags (see "How do I format code in my post?" below). Consulting documentation first is highly recommended. Furthermore, always be courteous; there are different levels of experience represented. A poorly worded question is better ignored than flamed - or better yet, help the poster ask a better question.
    Finally, it is good form to reward answerers with points (see "What are 'reward points'?" below) and also to mark the question answered when it has been.
    >
    When people review forum questions for possible answers they do NOT want to waste their time on questions that have already been answered. So when you do not mark your questions answered when they have been those questions just junk up the forum and waste people's time.
    No marking questions answered also suggests that you are not a team player; you want people to help you but you are unwilling to help them by keeping the forum clean.
    Please revisit those 66 previous questions, give HELPFUL or ANSWERED credit where credit is due and then mark them ANSWERED if they have been answered.

  • Audit dml vs noaudit dml - session stat huge difference in redo size DB 9.2

    Hi,
    I've just finished test ,where compared audit update table, delete table, insert table by user by access with noaudit dml statements.
    DB version is 9.2.0.8 , same test run twice on same configuration and data so its comparable .
    What concerns me the most is difference in redo size ,and redo entries , here goes table with results:
    noaudit            audit              statname
    486 439,00     878 484,00     calls to kcmgas
    40 005,00     137 913,00     calls to kcmgcs
    2 917 090,00     5 386 386,00     db block changes
    4 136 305,00     6 709 616,00     db block gets
    116 489,00     285 025,00     deferred (CURRENT) block cleanout applications
    1,00     3 729,00     leaf node splits
    361 723 368,00     773 737 980,00     redo size
    4 235,00     50 752,00     active txn count during cleanoutCould You explain that differences in statistics, especially in redo size.
    I'm suprissed because in 9.2 DB audit dml doesnt log actual sql statements, only indication of usage .
    Regards.
    Greg

    Hi,
    I've just finished test ,where compared audit update table, delete table, insert table by user by access with noaudit dml statements.
    DB version is 9.2.0.8 , same test run twice on same configuration and data so its comparable .
    What concerns me the most is difference in redo size ,and redo entries , here goes table with results:
    noaudit            audit              statname
    486 439,00     878 484,00     calls to kcmgas
    40 005,00     137 913,00     calls to kcmgcs
    2 917 090,00     5 386 386,00     db block changes
    4 136 305,00     6 709 616,00     db block gets
    116 489,00     285 025,00     deferred (CURRENT) block cleanout applications
    1,00     3 729,00     leaf node splits
    361 723 368,00     773 737 980,00     redo size
    4 235,00     50 752,00     active txn count during cleanoutCould You explain that differences in statistics, especially in redo size.
    I'm suprissed because in 9.2 DB audit dml doesnt log actual sql statements, only indication of usage .
    Regards.
    Greg

  • Redo size(KB) over the period from AWR

    Hi,
    Could anyone please let me know how to write an SQL query (involving AWR tables/views) to report the redo size(KB) generated for 1 hour interval over the last one week. My current AWR settings are 1 hr interval and the retention period is 7 days. Using EM DBConsole, when I click a particular snapshot id, it gives, among other metrics, the details of redo size(KB) generated during the corresponding snapshot interval but I don't know where this data is stored.
    Thanks,
    Sreekanth

    dba_hist_sysstat
    Sybrand Bakker
    Senior Oracle DBA

  • OEM Instance Activity/ Physical I/O / REDO Size

    This is Oracle 10g R2 running on zLinux.
    When I look at our Physical I/O activity, the most activity by far, is listed as REDO Size. Sometimes it shows we are doing 10,000 I/O per second. Yep, we can handle that. However, most other I/O activity is shown in the 50 - 100 per second range.
    It seems to me that I have something, rather inefficient going on. I haven't found any documentation that discusses what overhead factors relates to high redo activity. Yep, I see, from a query side, how that contributes to redo activity, but I don't see any reason for such high redo activity vs relatively low application activity.
    Any suggestions?
    Thanks
    Tom Duerbusch
    THD Consulting

    Dear Mr. Hunt,
    I'm an experienced Oracle DBA.
    The tech staff in organizing VLDB systems (very large databases) is quiet similar to what you have showed here.
    May I suggest, Perhaps, for your readers benefits ( especially those who do professional large scale editing projects) I think it will be a good idea to elaborate about some modern storage systems architectures like NetApp , EMC etc.
    Using a modern storage systems can solve much of the I/O problems, and it seems to me after reading this article that me and you are dealing with the same IO problems: large amounts of data who needs to be wriiten and accessed very fast.
    Thank you for your effort.
    Sincerely Yours,
    shimon.

  • Global Temporary table and REDO

    Dear Friends,
    In my production database we are facing problem of excessive redo generation. After initial analysis, we realised that we are using a lot global temporary tables for storing temp data/calculations and they are generating redo.
    I know that GTT doesn’t create redo but as it creates UNDO and undo is protected by redo therefore it creates some redo but lesser than normal table.
    Solution:
    I google and found that if I use direct path insertion (using APPEND hint) into Global temporary table the I can avoid this redo generation as specified in this link (http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:15826034070548)
    I tried this solution in my GTT but its not making any difference with APPEND clause. Please check following results. Could you please guide me if I am doing something wrong or any other way to avoid redo on GTT.
    JM@ORA10G>insert into JM_temp values(1,'aaaaaaaaaaaaaaaaaaaaaaa');
    1 row created.
    Elapsed: 00:00:00.00
    Execution Plan
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | INSERT STATEMENT | | 1 | 100 | 1 (0)| 00:00:01 |
    Statistics
    0 recursive calls
    2 db block gets
    1 consistent gets
    0 physical reads
    *280 redo size*
    918 bytes sent via SQL*Net to client
    967 bytes received via SQL*Net from client
    6 SQL*Net roundtrips to/from client
    1 sorts (memory)
    0 sorts (disk)
    1     rows processed
    JM@ORA10G>rollback ;
    Rollback complete.
    JM@ORA10G>insert * into JM_temp values(1,'aaaaaaaaaaaaaaaaaaaaaaa');
    1 row created.
    Elapsed: 00:00:00.00
    Execution Plan
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | INSERT STATEMENT | | 1 | 100 | 1 (0)| 00:00:01 |
    Statistics
    0 recursive calls
    2 db block gets
    1 consistent gets
    0 physical reads
    *280 redo size*
    917 bytes sent via SQL*Net to client
    981 bytes received via SQL*Net from client
    6 SQL*Net roundtrips to/from client
    1 sorts (memory)
    0 sorts (disk)
    1     rows processed

    Hi,
    I tried avoiding GTT in my code but I realised that they are so tightly integrated that i cannot remove them. Operations which I am perfroming on my GTT are
    1. Insertion of data
    2. Fetch data from main tables with joins on GTT
    3. Update GTT with calculated values.
    My understanding it Update steps are generating maximum redo.
    Please help me how can i reduce my redo generation in such scenarios.
    Thanks.

  • Filename and path sizes and characters

    I am failing to load 4000+ tracks to my Ipod from my XP machine using Itunes 7.50.0.20. This is an Ipod Clickwheel 20GB. I want to load 17.86GB in the now empty Ipod. However it gets so far then stops saying there is not enough space.
    I wonder if am I getting the wrong message?
    Some of my tracks have very long filenames/paths e.g 124 charactere filenames and 213 character paths. I also have some filenames with " (double quote) in.
    Could this be the reason?
    If so what characters must I avoid and what size should the filename and paths be limited to?

    Filenames and paths are irrelevant. They are renamed on the iPod anyway.
    20 GB is not really 20. It is a rounded number all HD manufacturers use. Plus you lose some space due to formatting and the iPod software. There is also meta data for the songs which takes some space.

  • Photoshop CC 2014 UI Menu Text And Icon Size?

    so i really like that adobe has added the "experimental" option to increase the ui menu text and icon size in photoshop cc 2014, it was almost unreadable on my 2560 x 1440 27" monitor with photoshop cs4 and illustrator cs4, but the lone 200% setting is too big... seems that 125%, 150%, or maybe even 175% would be much better solutions. in fact, for reasons i can't quite understand, the ui text and icon size in illustrator cc 2014 is spot on, absolutely perfect on my monitor, even tho there is no option for increased ui size as far as i can tell, it was spot on the moment i installed and launched it.
    in short, the photoshop cs4 and illustrator cs4 user interfaces were identical in size as far as i could tell, and far too small on my 2560 x 1440 27" monitor. in terms of cc 2014, the illustrator ui is perfect out of the box on my monitor, considerably larger than illustrator cs4, while the photoshop cc 2014 ui is identical to cs4, tiny, but can be enlarged 200% which makes the ui too big. why couldn't/didn't adobe just make the photoshop cc 2014 base ui the exact same size as the illustrator cc 2014 ui? it would have been perfect (for my monitor size).

    thanks... just wish illustrator cc 2014 wasn't so perfect in terms of ui size, i mean it's just great and, consequently, makes it seem as if the ball was dropped with photoshop cc 2014... i mean how can one be spot on while the other be so far off?

  • How to change DEFAULT font and font size on new Pages document

    When I open a new Page document, it always comes in with a default font and font size. I know how to change those settings on the open document.
    I want to know how to change the ~default~ font and font size so that a new Page document always opens with those default settings.
    -Thanks for your service to the community.

    Hi Lionate
    Welcome to the forum.
    Make a document to your liking.
    Change the Body style and any other styles in :
    +Menu > Show Styles Drawer > click on the little triangle next to Body > redefine Style from Selection+
    Capture the page:
    +Menu > Format > Advanced > Capture Pages… > Name it > OK+
    +Menu > Format > Advanced > Manage Pages… > Delete other Sections/Pages > OK+
    Save as a template:
    +Menu > File > Save as Template…+
    +Menu > Pages > Preferences > General Preferences > For New Documents > click Use template: > Choose > browse to the template above+
    Peter

  • Drag and Drop and Image Size

    I need to be able to drag and drop images but I need them to be a certain size when I drag them out of an Aperture project. For various reasons, I don't want to use the export function. Only drag and drop will be efficient for the workflow that I"m planning. Problem is, the pixel dimension is not wide enough when I test it by pulling an image on to the desktop.
    My ultimate goal is drag them, sized and ready to go, and drop them onto a web browser upload page. I don't want to fumble with the extra steps of exporting them to another folder on the desktop and then upload the images from that folder to the browser.
    So does anybody know how or if it's possible to control the drag and drop SIZE /DIMENSION of an image?

    The drag and drop size is determined by your preview settings. What actually gets "dragged & dropped" is the preview, not the master file. You can control the quality and size of the preview in the Aperture preferences.

  • I have many photos with file extension of .PDD and that Photo Deluxe 4 no longer will operate in Win 7. How can I open?  Next in Elements 11, how do I load and print different pictures and different sizes options on the same page?

    I have many photos with file extension of .PDD and that Photo Deluxe 4 no longer will operate in Win 7. How can I open?  Next in Elements 11, how do I load and print different pictures and different sizes options on the same page?
    Thanks,
    Shir

    sbmgrams wrote:
    I have many photos with file extension of .PDD and that Photo Deluxe 4 no longer will operate in Win 7. How can I open?
    See here:
    Reading PhotoDeluxe PDD Files

  • I just updated my iTunes and I do not like the newer version.....can I go back to the earlier version??  This new version does not have the iTunes DJ nor does is show at the bottom as in the earlier version how many songs and the size of my library.

    I just updated my iTunes on 12-7-2012 and I do not like the newer version.....can I go back to the earlier version??  This new version does not have the iTunes DJ nor does is show at the bottom as in the earlier version how many songs and the size of my library.

    To do this in iMovie 11. use the SHARE menu. Share your project using the Share menu and choose Export Using QuickTime.
    In the Dialog box that comes up, choose Sound to AIFF, or one of the other sound options. This will create a file that you can drag into iTubes.

Maybe you are looking for

  • Unable to print to oversize pages using Adobe FrameMaker 9 \ 7.2 and Distiller 9.0

    I am trying to print to PDF a publication that is full of oversize wiring diagrams from Adobe FrameMaker 9 and 7.2 with Distiller 9.0. The pages are all text and images ranging in size from standard A3 and A4 size sheets through to a foldout being 14

  • How do I prevent the Airport Extreme router from dropping with DSL when a call comes in?

    I just installed a new Aiport Extreme 802.11n router. I am using DSL and it works great until someone calls me. When the phone rings and my answering machine answers the call the router drops and start flashing amber.My old router did not have this p

  • Again about t.code MN05: number of copies of MM documents printed

    Hi all, by t.code MN05 I can set the number of copies of the MM documents printed the FIRST TIME. I can do it for doc.type or vendor. In particular, setting for document type, it doesn't work for all range of vendors. Setting for document type, in th

  • Time Machine deletes oldest backups?!

    So I'm starting to use Time Machine, now that my tape drive went south. I decided to rotate drives and use Time Machine. I'm reading threads about rotating drives and it seems straight forward. Swap drive, tell Time Machine to use the drive that you

  • 5 seats will not update to 2014.2

    Hi All, I have 5 machines that are stuck on 2014 and I can't seem to get them to update.  I usually build a deployment package and use that across the network but when I do it installs the same version.  I also tried just opening Creative Cloud on on