Use or not to use table compression in Oracle 11g (11.2)?

Hi All,
I was trying to explore the difference between COMPRESS FOR ALL OPERATIONS, COMPRESS FOR DIRECT_LOAD OPERATIONS and NOCOMPRESS, for a table in Oracle 11.2.
I know, we can go thru documentation and make a decision.
Still I have run some very simple tests here.
Case 1. Create table with COMPRESS FOR DIRECT_LOAD OPERATIONS and then update few records
Case 2. Create table with COMPRESS FOR ALL OPERATIONS and then update few records
Case 3. Create table with NOCOMPRESS and update few rows
I know, Case 1 is a real dummy, but still I did that to see difference between Case1 and Case2.
--  ---------- CASE 1 --------
SQL> create table aaa
  2  nologging
  3  compress for direct_load operations
  4  as
  5  select * from all_objects ;
Table created.
Elapsed: 00:00:02.00
SQL> select count(*) from aaa ;
  COUNT(*)
     50317
Elapsed: 00:00:00.11
SQL> update aaa set created=sysdate where owner='SYS' and object_type='VIEW';
3485 rows updated.
*Elapsed: 00:00:05.43*
SQL> commit;
Commit complete.
Elapsed: 00:00:00.04
SQL>
--  ---------- CASE 2 --------
SQL>
SQL> create table bbb
  2  nologging
  3  compress for all operations
  4  as
  5  select * from all_objects ;
Table created.
Elapsed: 00:00:02.01
SQL> select count(*) from bbb ;
  COUNT(*)
     50318
Elapsed: 00:00:00.20
SQL> update bbb set created=sysdate  where owner='SYS' and object_type='VIEW';
3485 rows updated.
*Elapsed: 00:00:05.31*
SQL> commit;
Commit complete.
Elapsed: 00:00:00.04
SQL>
SQL>
--  ---------- CASE 3 --------
SQL> create table ccc
  2  nologging
  3  nocompress
  4  as
  5  select * from all_objects ;
Table created.
Elapsed: 00:00:01.84
SQL> select count(*) from ccc ;
  COUNT(*)
     50319
Elapsed: 00:00:00.15
SQL> update ccc set created=sysdate  where owner='SYS' and object_type='VIEW';
3485 rows updated.
*Elapsed: 00:00:00.06*Case1 and Case2 took 5.43 and 5.31 seconds respectively. Case 3 took 0.06 seconds.
Difference is drastic.
Am I doing wrong kind of test (lets be honest)?
Should we not use compression for OLTP systems (or any systems with reasonable updates)?
Apart from allowing to drop a column, what is the difference between COMPRESS FOR ALL OPERATIONS and COMPRESS FOR DIRECT_LOAD OPERATIONS ? where/how can I see that difference?
Thoughts please.
Thanks in advance.

Hi,
I have realised that I am using the syntax which is deprecated in 11.2.
So I am doing the same test with
COMPRESS BASIC
COMPRESS FOR OLTP
instead of
COMPRESS FOR DIRECT_LOAD OPERATIONS (deprecated)
COMPRESS FOR ALL OPERATIONS (deprecated)
But the results are same. Even if I do COMPRESS FOR OLTP, my update is taking 5.4 seconds which is not very different from COMPRESS BASIC
-- --------- CASE 1 ---------------
SQL> create table aaa
  2  nologging
  3  compress basic
  4  as
  5  select * from all_objects ;
Table created.
Elapsed: 00:00:02.46
SQL>
SQL> select count(*) from aaa ;
  COUNT(*)
     50318
Elapsed: 00:00:00.11
SQL>
SQL> update aaa set created=sysdate where owner='SYS' and object_type='VIEW';
3485 rows updated.
Elapsed: 00:00:05.48
-- ---------- CASE 2 ---------------
SQL> create table bbb
  2  nologging
  3  compress for oltp
  4  as
  5  select * from all_objects ;
Table created.
Elapsed: 00:00:02.01
SQL>
SQL> select count(*) from bbb ;
  COUNT(*)
     50319
Elapsed: 00:00:00.12
SQL>
SQL> update bbb set created=sysdate  where owner='SYS' and object_type='VIEW';
3485 rows updated.
Elapsed: 00:00:05.25
-- ---------- CASE 3 ---------------
SQL> create table ccc
  2  nologging
  3  nocompress
  4  as
  5  select * from all_objects ;
Table created.
Elapsed: 00:00:01.81
SQL>
SQL> select count(*) from ccc ;
  COUNT(*)
     50320
Elapsed: 00:00:00.10
SQL>
SQL> update ccc set created=sysdate  where owner='SYS' and object_type='VIEW';
3485 rows updated.
Elapsed: 00:00:00.04Any thoughts??

Similar Messages

  • Existing table compression in oracle 11g

    Hi,
    We have a achema of 45gb in oracle 11g and need to compress the tables as it is rarely used,
    please can you tell me what are the option available to compress the tables.
    Thanks

    Thanks for the update.
    I was able to compress the other tables which are very less in size and i am able to find one lobsegment which is 37GB
    so how i can use compression on the LOBSEGMENT as i could not found any document for this
    i found one document in metalink says that
    "To achieve LOB compression, you need to specify LOB column storage as SECUREFILE.  With BASICFILE option, you can not use COMPRESSION for LOB column"
    SQL> select owner, segment_name,segment_type , bytes/1024/1024 MB from dba_segments where owner='WEBSPR' order by 4 desc ;
    OWNER                     SEGMENT_NAME              SEGMENT_TYPE                      MB
    WEBSPR                    SYS_LOB0000012869C00002$$ LOBSEGMENT                     37760
    and my existing lobsegment metadata is like below
    LOB ("DATA") STORE AS (
      TABLESPACE "WEBSPR_DATA" ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10
      NOCACHE LOGGING
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT))
    and my lob column is either SECUREFILE nor BASICFILE so is there any other method to compress the existing LOBSEGMENT
    Appreciated for the inputs.Thanks

  • Automatic table partitioning in Oracle 11g

    Hi All,
    I need to implement automatic table partitioning in Oracle 11g version, but partitioning interval should be on daily basis(For every day).
    I was able to perform this for Monthly and Yearly but not on daily basis.
    create table part
    (a date)PARTITION BY RANGE (a)
    INTERVAL (NUMTOYMINTERVAL(1,'*MONTH*'))
    (partition p1 values less than (TO_DATE('01-NOV-2007','DD-MON-YYYY'))
    Table created
    create table part
    (a date)PARTITION BY RANGE (a)
    INTERVAL (NUMTOYMINTERVAL(1,'*YEAR*'))
    (partition p1 values less than (TO_DATE('01-NOV-2007','DD-MON-YYYY'))
    Table createdBut if i use DD or DAY instead of YEAR or MONTH it fails......Please suggest me how to perform this on daily basis.
    SQL>
      1  create table part
      2  (a date)PARTITION BY RANGE (a)
      3  INTERVAL (NUMTOYMINTERVAL(1,'*DAY*'))
      4  (partition p1 values less than (TO_DATE('01-NOV-2007','DD-MON-YYYY'))
      5* )
    SQL> /
    INTERVAL (NUMTOYMINTERVAL(1,'DAY'))
    ERROR at line 3:
    ORA-14752: Interval expression is not a constant of the correct type
    SQL> create table part
    (a date)PARTITION BY RANGE (a)
    INTERVAL (NUMTOYMINTERVAL(1,'*DD*'))
    (partition p1 values less than (TO_DATE('01-NOV-2007','DD-MON-YYYY'))
    );  2    3    4    5
    INTERVAL (NUMTOYMINTERVAL(1,'DD'))
    ERROR at line 3:
    ORA-14752: Interval expression is not a constant of the correct typePlease suggest me to resolve this ORA-14752 error for using DAY or DD or HH24
    -Yasser

    Yes, for differenct partitions for different months.
    interval (numtoyminterval(1,'MONTH'))
    store in (TS1,TS2,TS3)
    This code will store data in partitions in tablespaces TS1, TS2, and TS3 in a round robin manner.
    for Day wise day yes you can store
    INTERVAL (NUMTODSINTERVAL(1,'day')) or
    INTERVAL (NUMTODSINTERVAL(2,'day')) or
    INTERVAL (NUMTODSINTERVAL(3,'day')) or
    INTERVAL (NUMTODSINTERVAL(4,'day')) or
    INTERVAL (NUMTODSINTERVAL(5,'day')) or
    INTERVAL (NUMTODSINTERVAL(n,'day'))

  • Dashboard Prompt using values not from the table

    Hi,
    I have a requirement from the client to design a dashboard report like the following.
    Dashboard prompt will have 4 filters, three filters come from the table, but the fourth filter will have 3 values not from the table. The fourth filter will have values like "Report with Sales Amount", "Report with Purchase Amount", "Report with both Purchase and Sales". I have three different Table reports designed for each of the fourth filter choices. But how do I implement it, both in the dashboard prompt as well as navigating to the rite report based on the selection.
    Is my approach correct.
    Thanks for your time and help.

    The fourth prompt where you have "Report with Sales Amount", "Report with Purchase Amount", "Report with both Purchase and Sales" you pull a dummy column into the prompt and write a sql in show.
    would be something like
    SELECT Case when 1=0 then "Dimension- Customer"."Cust Name" else 'Report with Sales Amount' end FROM Sales UNION SELECT Case when 1=0 then "Dimension- Customer"."Cust Name" else 'Report with Purchase Amount' end FROM Sales
    and in the prompt set a presentation variable say var_criteria
    Now create report2 for with a some randomn column and another column will have the values that you want to display for example 'Report with Sales Amount'
    Create a filter on the 2nd column and reference the presentation variable var_criteria and default it to 'Report with Sales Amount'
    On the dashboard page in the section place the report and enable guided navigatoin by selecting report 2.
    Please let me know if you have any questions.
    thanks,
    deep

  • How to find out locations whether it is in use or not in use

    Hi All,
    I want to delete all unused locations from my FDM application. Can you please help me, how to find the locations that are not in use?
    Regards,
    PB

    You can view the tdataseg(x) table that the location is associated with and sort by period key as needed.
    Select PartitionKey,Part Name,Partsegmentkey
    from tpovpartiton
    This will return the location, location id and segment key.  The segment key is the data segment that the location is associated with.
    You can then query this table and sorty by period key to see what periods the location has data imported for.
    This should give you an idea and you can then delete your locations from within the Metadata > Locations Menu in FDM.
    Keep in mind that once the location is deleted, and data associated with the location will also be deleted (Historical Data)
    Hope that answers your question.

  • I want to know why my phone gets really hot in use and not in use.

    I am using a iPhone 3GS 16GB, been using it for over a year now. Recently, it has been heating up regularly. I understand if it on charge. But everytime I use my phone to play games or reply text messages for no longer then 15mins, it gets heated up so much. Occasioanally, it heats up even when its not in use and when I've forced shut down my apps. Why is that so ?

    What iOS version are you running? There have been cases where people have been complaining of their iPhone 3G/3GS overheating. If you have a white version of the 3GS, watch out because this can cause discoloration.

  • HELP! Problems using large memory on windows 2003(32bit) and Oracle 11g

    i have Oracle 11g installed on windows 2003 enterprise server 32bit with 6GB RAM.
    And I followed the steps to enable the Very Large Memory support:
    1. add /3GB /PAE in c:\boot.ini
    2. add AWE_WINDOW_MEMORY entry in the regitry and set it's value to 209715200
    3. as for init.ora:
    add:
    dbblock_lru_latches = 64
    db_block_size = 4096
    db_block_buffers = 262144
    remove the parameters: db_cache_size,sga_max_size
    it does work when I use Oracle 10g, but for Oracle 11g, there are some errors:
    ORA-00371: not enough shared pool memory, should be atleast **** bytes
    OR
    ORA-27102: out of memory
    Can anybody share the experience in Oracle 11g?
    Much thanks!

    Increase your shared_pool_size parameter
    It looks like you have set the memory 1gb after setting up /PAE and /3GB switch
    4096*262144=1GB...
    Then why did you set /3GB

  • How can we use "tooltip " option in heirarchical tree item in oracle 11g?

    how can we use "tooltip " option in heirarchical tree item properties in oracle 11g forms?

    hi user11973188
    how can we use "tooltip " option in heirarchical tree item properties in oracle 11g forms?isn't it exist in the tree item's property itself... ?!
    Regards,
    Abdetu...

  • Advaced compression in oracle 11g

    Hi,
    We are migrating databases from oracel 10g to 11g and we are using advance compression, i have few question please help me to understand
    1. if i enable compression on tables is index also get compressed if not how i can enable compression on indexes
    2.For table compression i will take the DDL of tables from oracle 10g databases and i create the tables in oracle 11g with COMPRESS FOR ALL OPERATIONS is this the right approach
    Appreciated the inputs
    thanks

    Hi,
    I checked for one of the table ALTER TABLE MOVE COMPRESS FOR ALL OPERATIONS after upgrading to 11g from 10g and rebuild the index
    SQL> select index_name,COMPRESSION,STATUS from dba_indexes where table_name='POSITION_CUBE';
    INDEX_NAME                     COMPRESS STATUS
    TEST                           DISABLED VALIDstill compress column in dba_indexes show disabled
    so i need to compress index also , how i can achive this
    Thanks

  • Locating user tables in an Oracle 11g database

    Excuse my ignorance on this subject
    But our company has an Oracle 11g database that drives one of our business applications. I am not an oracle admin and there is very little documentation on the application itself, however the application seems to have its own set of explicit login (username and password) credentials so I am guessing they are hashed somewhere in the database tables.
    My question would be – are there any default oracle tables where user credentials would typically be? or tips on tracking down where the password hashes may be? Or can this differ from application to application? Any tips welcome. Apologies for the naivity of the question. My goal is to identify which database accounts can query the table the hashes are in, as we have some users who can access the database for data analysis purposes - but I dont want them to have access to the table.

    user599292 wrote:
    EdStevens wrote:
    user599292 wrote:
    Excuse my ignorance on this subject
    But our company has an Oracle 11g database that drives one of our business applications. I am not an oracle admin and there is very little documentation on the application itself, however the application seems to have its own set of explicit login (username and password) credentials so I am guessing they are hashed somewhere in the database tables.
    My question would be – are there any default oracle tables where user credentials would typically be? or tips on tracking down where the password hashes may be? Or can this differ from application to application? Any tips welcome. Apologies for the naivity of the question. My goal is to identify which database accounts can query the table the hashes are in, as we have some users who can access the database for data analysis purposes - but I dont want them to have access to the table.The information relative to the user accounts is revealed in the view DBA_USERS, which normal users should not have a need to see. However, the passwords are stored in a true hash. It cannot be used directly, and cannot be reversed. So being able to see the hashed password does not in itself constitute a security risk.
    When a user is being authenticated, the procedure that oracle uses is NOT to 'decrypt' the stored password to see if it matches the password presented by the user. Rather, the password presented by the user is hashed, and that hash value is compared against the stored value.My concern was if they could extract those password hash values, there are many free password crackers where if they run dictionary values against those hash values and if any match they then have some passwords to gain perhaps elevated access in the application.Such a method would have to assume a password, know how oracle 'salts' the password, hash the result, then compare to the hashed values from the table. If you employ even a modicum of password complexity enforcement, I doubt that your developers are going to have access to the kind of computing capacity that would be required to get a positive result within your lifetime.
    You need to do three things
    First and foremost, adhere to the principle of 'least privilege'. Do not grant a user account any privileges that are not required for that account to complete it's business task. That includes access to any tables or views. Be wary of any "--ANY---" privileges.
    Second, use the password complexity function to enforce a reasonable level of password complexity.
    Third, Set the user's profile to expire the pasword after 'x' number of days and prevent the reuse of a password until after 'y' iterations.

  • Query not considering function based index in oracle 11g

    I have a query which used Function Based Index when run in oracle 9i but when I run the same query
    without any changes, it does not consider index. Below is the query:
    SELECT distinct patient_role.domain_key, patient_role.patient_role_key,
    patient_role.emergency_contact_name,
    patient_role.emergency_contact_phone, patient_role.emergency_contact_note,
    patient_role.emergency_contact_relation_id,
    patient_role.financial_class_desc_id, no_known_allergies, patient_role.CREATED_BY,
    patient_role.CREATED_TIMESTAMP,
    patient_role.CREATED_TIMESTAMP_TZ, patient_role.UPDATED_BY, patient_role.UPDATED_TIMESTAMP,
    patient_role.UPDATED_TIMESTAMP_TZ,
    patient_role.discontinued_date
    FROM encounter, patient_role
    WHERE patient_role.patient_role_key = encounter.patient_role_key
    AND UPPER(TRIM(leading :SYS_B_0 from encounter.account_number)) = UPPER(TRIM(leading :SYS_B_1 from
    :SYS_B_2))
    AND patient_role.discontinued_date IS null
    AND encounter.discontinued_date IS null ;
    Index definition:
    CREATE INDEX "user1"."IX_TRIM_ACCOUNT_NUMBER" ON "user1."ENCOUNTER" (UPPER(TRIM(LEADING
    '0' FROM "ACCOUNT_NUMBER")), "PATIENT_ROLE_KEY", "DOMAIN_KEY", "DISCONTINUED_DATE")
    PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
    BUFFER_POOL DEFAULT)
    TABLESPACE "user1"
    Database : Oracle 11g (11.2.0.3)
    O/S : Linux 64 bit (the query does not consider index even on windows os)
    Any suggestions?
    -Onkar
    Edited by: onkar.nath on Jul 2, 2012 3:32 PM

    Onkar,
    I don't appreciate you posting this question in several forums at the same time.
    If I would know you also posted this on Asktom, I wouldn't even have bothered.
    As to your 'issue':
    First of all: somehow cursor_sharing MUST have been set to FORCE. Oracle is a predictable system, not a fruitmachine.
    Your statement the '0' is replaced by a bind variable anyway is simply false. If you really believe it is not false, SUBMIT a SR.
    But your real issue is not Oracle: it is your 'application', which is a mess anyway. Allowing for alphanumeric numbers is a really bad idea.
    Right now you are already putting workaround on workaround on workaround on workaround.
    Issue is the application: it is terminal., and you either need to kill it, or to replace it.
    Sybrand Bakker
    Senior Oracle DBA

  • Hooks - To use or not to use?

    Hi,
    I an developing an interface which must detect new/changed emaployees, assignments and absences and output the details to a legacy Time and Attendance system. My eBiz version is 11.5.10.2. I see that API User Hooks can offer a solution if i use the After Process hook, however I also see that the Person form ("People Enter and Maintain") does not use APIs as it is so old - so cannot offer the hook functionality (HR API User Hooks - Can I use to change a value in the table the API for?
    I am now thinking I will need table triggers to capture the Employee create/update, since APIs are not available via this form but hopefully can use User Hooks for the assignments and absences.
    Please can you advise on this suggested approach and offer better alternatives if they exist?
    Thank you in advance

    2-3 points.
    While oracle is about to end support on 11.5.10.2 you seem to developing new interfaces and integrate with 11i WHY ? What are plans of moving to R12.
    Truly speaking using user-hooks are anyday better solution as it is oracle supported ( not upgrade safe though) but in case you have user hooks applied they cannot just remove support as user hook by definition means adding custom validation as per user requirement.
    However, what you have to note in same is that you should not commit any transactions within user hook as it can have adverse impact and you can only those values available in the API procedure.
    Also check whether API are called from forms.
    In case of People Form try writing some alert( rather than a direct trigger on database) and call your custom program as action of the alert.
    By this way still ou are somewhat safe from Oracle Support perspective

  • Can comment using windows, not when using ubuntu

    I got a pdf which i keep in a dropbox-folder. I want to comment and highlight the pdf.
    And I can do so using reader X on windows, but I can't using acroread on ubuntu. For some reason the restrictions on the pdf change when using another OS.
    If you need more information, please ask

    Hi, please read the troubleshooting sticky on top of the forum. It mentioned your problem plus the suggested solutions.

  • Using sqlldr to load old UNIFY data into oracle 11g

    I have a dump of an old UNIFY database whitch I need to build a controlfile to import to oracle using sql loader.
    the main problem is that the file is containing records for 64 tables
    the dumpfile is starting with the name of the table, and then data for each column in that table. like this:
    RSLT|0|26/09/2005|1281|2|LD|S1|0|0|  223|223.000000|Centra|27/09/2005|10:13|Centra|27/09/2005|10:13|3|0|3984|180|24069844193|379650048|247075485|134233305|0|
    SMPL|0|26/09/2005|1281|3||5|ALLE|2|1|177|0||26/09/2005|**:**|svi2|||**/**/****|**:**||0||0|0|**/**/****|00:01||286138573|2560|
    I have build the ny datamodel in oracle, and it is the same as in the old UNIFY system. so that is not a problem.
    but HOW do I tell sqlldr that there is not data from just one table but 64..??
    the tablenames and how to difference them is the main problem..
    This is an urgent issue.. I need helt fast.
    any suggestions?

    Hi,
    You can do something like that
    --- Control file--------------
    cat aa.ctl
    LOAD DATA
    INFILE '/home/oracle/MYSHELL/aa.txt'
    TRUNCATE
    INTO TABLE RSLT
    WHEN DBNAME = 'RSLT'
    FIELDS TERMINATED BY '|'
    DBNAME,
    col_1,
    col_2,
    col_3,
    col_4
    INTO TABLE SMPL
    WHEN DBNAME = 'SMPL'
    FIELDS TERMINATED BY '|'
    DBNAME position(1),
    col_1,
    col_2,
    col_3,
    col_4
    -- dat file----------
    cat aa.txt
    RSLT|0|26/09/2005|1281|2
    SMPL|0|26/09/2005|1281|3
    SQL> host sqlldr me/** control=aa.ctl
    SQL*Loader: Release 11.2.0.2.0 - Production on Wed Aug 14 02:15:37 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    Commit point reached - logical record count 2
    SQL> select * from SMPL;
    DBNAME     COL_1      COL_2                COL_3      COL_4
    SMPL       0          26/09/2005           1281       3
    SQL> select * from RSLT;
    DBNAME     COL_1      COL_2                COL_3      COL_4
    RSLT       0          26/09/2005           1281       2
    HTH

  • Table Management in oracle 11g

    I am using 11g database, I have to release some space tablespace level.
    Here this is the situation.
    One of the big table (CAMPAIGN_REPORT_RAW), i guess more fragmenation is there in that table.
    It is created under INCIH_DATA tablespace (having 10 datafiles).INCHIH_DATA tablespace occupying 33 GB , in that 25 GB used space 8 GB freespace. We are using filesystem management.
    In that respective filesystem we have to get 10 GB space for creating new tablespace. Unfortunately we dont have that much space in that filesystem, For that my plan is shrink the CAMPAIGN_REPORT_RAW table, resize the datafile!!
    ALTER TABLE CAMPAIGN_REPORT_RAW SHRINK SPACE;
    ALTER TABLE CAMPAIGN_REPORT_RAW SHRINK SPACE CASCADE;
    alter database datafile '<full_file_name>' resize <size>M;
    for that
    I need your help to get the command for
    1) how to find the size of the table
    2) how to find the used size of the table
    3) how to find the Hight Water Mark level of the table
    4) how to find this table occupying which datafile
    Thanks

    Take a guideline from http://download.oracle.com/docs/cd/B28359_01/server.111/b28310/schema003.htm#ADMIN10161
    Size of a table can be seen by,
    select * from dba_segments where segment_name='<your table name>';
    Above query is the 'used' size of the table. Minimum unit of allocating space in Oracle is an 'extent'. So, even if 90% of the extent is empty, you cannot reclaim those blocks, so there is no point in finding empty/used blocks of data.
    You can only find out which tablespace the table belongs to. We cannot find out which 'datafile' the table is in and we do not need to know that as well. Tell me why you want to know it?

Maybe you are looking for

  • How to copy link text from links?

    Currently when selecting a link, there is no easy option to copy link text. This feature should be implemented to be one of the options in the popup menu once a link is selected, alongside with "Open Link in New Tab"; "Copy Link"; !"Copy Link Text"!;

  • My Firefox Settings Keep Resetting

    Why do my Firefox Settings keep resetting? It resets and looks like I had just downloaded/updated firefox for the 1st time. So I just put the settings I previously used and it works fine until after a few hours when I open firefox again, everything i

  • Localizing "The file could not be uploaded because it is too large"

    When uploading file af:inputFile in case of larger file as limited in web.xml then this message appears: Warning: The file upload failed The file could not be uploaded because it is too large How to localize this message (maybe some from http://docs.

  • Using my powerbook as an external DVD Player

    Okay. So my Sony DVD player crapped out on me last night. The one I use with my TV. I just plug it into my component stereo system for 5.1 surround. I was wondering... is there a way to use my powerbook as a dvd player until I buy a replacement for m

  • CS6 installation over a network

    My organization has various users that use different Adobe products and we're encountering a problem installing CS6 for a new user.  We obtained the files download from our software vendor and placed the installation files on the machine  (windows 7