Why Database Buffers show 0 bytes??

Hi Gurus,
This may be a basic question, but I am unable to fix this.
I am trying to create an Oracle 9i database on Win XP. When I start the instance I am getting this
Total System Global Area 96468992 bytes
Fixed Size 787608 bytes
Variable Size 95419240 bytes
Database Buffers 0 bytes
Redo Buffers 262144 bytes
Why the Database Buffers is 0 bytes? Is there anything I am missing here. The parameter file's values are these
db_block_size = 4096
compatible = 10.0.0
undo_management = auto
db_name=MyDB
db_files = 80
db_block_buffers = 1000
shared_pool_size = 60000000
processes = 59
dml_locks = 200
log_buffer = 8192
log_archive_dest = C:\oracle\product\arch
log_archive_format = "%ORACLE_SID%T_%R_%S.ARC"
Any help is really appreciated.
Thanks,
Sethu

This parameter is deprecated in favor of the DB_CACHE_SIZE parameter. Oracle recommends that you use DB_CACHE_SIZE instead. Also, DB_BLOCK_BUFFERS cannot be combined with the new dynamic DB_CACHE_SIZE parameter; combining these parameters in the same parameter file will produce an error. DB_BLOCK_BUFFERS is retained for backward compatibility.

Similar Messages

  • Database startup showing ORA-00942: table or view does not exist in trace

    Hi Friends,
    SunOS 5.10 Generic_137112-06 i86pc i386 i86pc , 64 Bit
    Oracle 10.2.0.1.0
    While I am doing a startup, getting following error.
    SQL> startup;
    ORACLE instance started.
    Total System Global Area 3221225472 bytes
    Fixed Size 2122544 bytes
    Variable Size 410819792 bytes
    Database Buffers 2801795072 bytes
    Redo Buffers 6488064 bytes
    Database mounted.
    ORA-01092: ORACLE instance terminated. Disconnection forcedThe alert log shows the following
    Errors in file /applns/oracle/admin/CTSD1/udump/ctsd1_ora_11486.trc:
    ORA-00942: table or view does not exist
    Error 942 happened during db open, shutting down database
    USER: terminating instance due to error 942
    Instance terminated by USER, pid = 11486
    ORA-1092 signalled during: ALTER DATABASE OPEN...A look at the trace file shows this
    /applns/oracle/admin/CTSD1/udump/ctsd1_ora_11486.trc
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    ORACLE_HOME = /applns/oracle
    System name: SunOS
    Node name: N890
    Release: 5.10
    Version: Generic_137112-06
    Machine: i86pc
    Instance name: CTSD1
    Redo thread mounted by this instance: 1
    Oracle process number: 23
    Unix process pid: 11486, image: oracle@N890 (TNS V1-V3)
    *** SERVICE NAME:() 2011-02-16 19:24:50.188
    *** SESSION ID:(325.3) 2011-02-16 19:24:50.188
    Successfully allocated 3 recovery slaves
    Using 367 overflow buffers per recovery slave
    Thread 1 checkpoint: logseq 45929, block 2, scn 310788795>cache-low rba: logseq 45929, block 3
    >on-disk rba: logseq 45929, block 52, scn 310788832
    >start recovery at logseq 45929, block 3, scn 0
    ----- Redo read statistics for thread 1 -----
    Read rate (ASYNC): 24Kb in 0.31s => 0.08 Mb/sec
    Total physical reads: 4096Kb
    Longest record: 0Kb, moves: 0/61 (0%)
    Longest LWN: 16Kb, moves: 0/3 (0%), moved: 0Mb
    Last redo scn: 0x0000.128642df (310788831)
    ----- Recovery Hash Table Statistics ---------
    Hash table buckets = 32768
    Longest hash chain = 1
    Average hash chain = 4/4 = 1.0
    Max compares per lookup = 1
    Avg compares per lookup = 117/121 = 1.0
    *** 2011-02-16 19:24:50.515
    KCRA: start recovery claims for 4 data blocks
    *** 2011-02-16 19:24:50.515
    KCRA: blocks processed = 4/4, claimed = 4, eliminated = 0
    *** 2011-02-16 19:24:50.516
    Recovery of Online Redo Log: Thread 1 Group 1 Seq 45929 Reading mem 0
    ----- Recovery Hash Table Statistics ---------
    Hash table buckets = 32768
    Longest hash chain = 1
    Average hash chain = 4/4 = 1.0
    Max compares per lookup = 1
    Avg compares per lookup = 121/121 = 1.0
    ORA-00942: table or view does not existI have searched MOS and Google, but didn;'t get any relevant results.
    Also flushed my shared_pool as mentioned in (http://www.tanelpoder.com/files/oracle_rowcache.pdf) after mount and started , still no luck
    Any help is appreciated
    Thanks
    SSN

    Hi,
    Thanks.
    Tried log mining, but still couldn't find the culprit. I think now, I have to drop and create this db.Still wondering what might have happened.
    select group#,status from v$log;
        GROUP# STATUS
             1 INACTIVE
             3 INACTIVE
             2 CURRENT
    SQL> select group#,MEMBER from v$logfile where group#=2;
        GROUP#
    MEMBER
             2
    /applns/oracle/oradata/CTSD1/redo02.log
    SQL> EXECUTE sys.DBMS_LOGMNR.ADD_LOGFILE( LOGFILENAME => '/applns/oracle/oradata/CTSD1/redo02.log',OPTIONS => sys.DBMS_LOGMNR.NEW);
    PL/SQL procedure successfully completed.
    SQL> EXECUTE sys.DBMS_LOGMNR.START_LOGMNR;
    PL/SQL procedure successfully completed.
    SQL> SELECT COUNT (*) FROM   v$logmnr_contents WHERE  operation = 'DDL';
      COUNT(*)
             0
    SQL> EXECUTE sys.DBMS_LOGMNR.END_LOGMNR();
    PL/SQL procedure successfully completed.
    SQL> select group#,MEMBER from v$logfile where group#=1;
        GROUP#
    MEMBER
             1
    /applns/oracle/oradata/CTSD1/redo01.log
             1
    /applns/oracle/oradata/CTSD1/redolog001.log
    SQL> EXECUTE sys.DBMS_LOGMNR.ADD_LOGFILE( LOGFILENAME => '/applns/oracle/oradata/CTSD1/redo01.log',OPTIONS => sys.DBMS_LOGMNR.NEW);
    PL/SQL procedure successfully completed.
    SQL> EXECUTE sys.DBMS_LOGMNR.START_LOGMNR;
    PL/SQL procedure successfully completed.
    SQL> SELECT COUNT (*) FROM   v$logmnr_contents WHERE  operation = 'DDL';
      COUNT(*)
             0
    SQL> EXECUTE sys.DBMS_LOGMNR.END_LOGMNR();
    PL/SQL procedure successfully completed.
    SQL> EXECUTE sys.DBMS_LOGMNR.ADD_LOGFILE( LOGFILENAME => '/applns/oracle/oradata/CTSD1/redolog001.log',OPTIONS => sys.DBMS_LOGMNR.NEW);
    PL/SQL procedure successfully completed.
    SQL> EXECUTE sys.DBMS_LOGMNR.START_LOGMNR;
    PL/SQL procedure successfully completed.
    SQL> SELECT COUNT (*) FROM   v$logmnr_contents WHERE  operation = 'DDL';
      COUNT(*)
             0
    SQL> EXECUTE sys.DBMS_LOGMNR.END_LOGMNR();
    PL/SQL procedure successfully completed.
    SQL> select group#,MEMBER from v$logfile where group#=3
        GROUP#
    MEMBER
             3
    /applns/oracle/oradata/CTSD1/redo03.log
    SQL> EXECUTE sys.DBMS_LOGMNR.ADD_LOGFILE( LOGFILENAME => '/applns/oracle/oradata/CTSD1/redo03.log',OPTIONS => sys.DBMS_LOGMNR.NEW);
    PL/SQL procedure successfully completed.
    SQL>  EXECUTE sys.DBMS_LOGMNR.START_LOGMNR;
    PL/SQL procedure successfully completed.
    SQL> SELECT COUNT (*) FROM   v$logmnr_contents WHERE  operation = 'DDL';
      COUNT(*)
             0
    SQL> EXECUTE sys.DBMS_LOGMNR.END_LOGMNR();
    PL/SQL procedure successfully completed.SSN

  • Why export dump shows less than the actual size?

    why export dump shows less than the actual size?

    i tried to find to find out the logical size using the following command
    select sum(bytes/1024/1024) from dba_segments;
    SUM(BYTES/1024/1024)
    739when i tried the following query removing index segement:
    select sum(bytes/1024/1024) from dba_segments where SEGMENT_TYPE \<\> 'INDEX' ;
    SUM(BYTES/1024/1024)
    535What other type of information is not exported in a full database export?

  • How to connect JTable to a database to show it?

    al salamo 3alaykom w ra7mato allahe w barakato....
    I tried a lot to connect a JTable to a database to show it.....but i couldnt......
    in the clas where i create it i wrote this code
    Class General extends JFrame{
    // private declaration like:
    private Vector heading = new Vector();
    private Vector data= new Vector();
    private JScrollPane jScrollPane1 = new JScrollPane();
    private JTable jTable1 = new JTable(data,heading);
    public General() {
    try {
    jbInit();
    } catch (Exception e) {
    e.printStackTrace();
    private void jbInit() throws Exception {
    try{
    Connection conc;
    DriverManager.registerDriver((Driver)Class.forName("com.mysql.jdbc.Driver").newInstance());
    conc = DriverManager.getConnection("jdbc:mysql://localhost/tdiary?user=root&useUnicode=true&characterEncoding=utf8");
    Statement stmt = conc.createStatement();
    ResultSet rs= stmt.executeQuery("SELECT * FROM diary");
    String n1 = new String();
    String add = new String();
    String tele1 = new String();
    String tele2 = new String();
    String tele3 = new String();
    String tele4 = new String();
    String mobi1 = new String();
    String mobi2 = new String();
    String mobi3 = new String();
    String mobi4 = new String();
    String mail1 = new String();
    String Details = new String();
    while(rs.next())
    n1 = rs.getString("Name");
    add = rs.getString("Address");
    tele1 = rs.getString("Tel1");
    tele2 = rs.getString("Tel2");
    tele3 = rs.getString("Tel3");
    tele4 = rs.getString("Tel4");
    mobi1 = rs.getString("Mob1");
    mobi2 = rs.getString("Mob2");
    mobi3 = rs.getString("Mob3");
    mobi4 = rs.getString("Mob4");
    mail1 = rs.getString("Mail");
    Details = rs.getString("Details");
    heading.addElement("name");
    heading.addElement("Tel");
    heading.addElement("Mobile");
    heading.addElement("Address");
    heading.addElement("E-mail");
    data.addElement(n1);
    data.addElement(tele1);
    data.addElement(mobi1);
    data.addElement(add);
    data.addElement(mail1);
    System.out.println(data);
    } catch (Exception k){
    k.printStackTrace();
    //and then i continued the code ......
    //but the table doesnt appear....why?....and if there is another way to do it...plz tell me
    i hope someone could help me coz i got mad from this problem.
    thanx
    al salamo 3alaykom w ra7mato allahe w barakato

    Hi,
    Please use code formatting when you post code. See the formattings tips:
    http://forum.java.sun.com/help.jspa?sec=formatting
    I can't see that you have added your table or scroll pane to any content pane. That's why it isn't displayed.
    Kaj
    Ps.
    You have lots of assignements of Strings when you are declaring your variables, it's useless, just set them to null.

  • This procedure name is not found in the database: wwv_flow.show

    I created an interactive report, which works fine in the APEX developer, using the Application Express Authentication scheme.
    To add it to our Self-Service web system, I change the authentication scheme to a custom scheme that has been working fine for other applications, although I don't know of any other interactive reports using this scheme in Self-Service.
    Anyway, the interactive report is displayed in our Self-Service system using the custom authentication scheme, but if I display the Action menu and click on one of the options (Filter, Sort, Compute...), a pop-up window is displayed saying:
    This procedure name is not found in the database:
    wwv_flow.show
    That error is also displayed when I try to edit the displayed filters.
    Does anyone know why I might be getting that error or have suggestions on things to try to track it down?
    Thanks,
    Laura

    Laura,
    To add it to our Self-Service web systemWhat does that mean? What did it entail?
    I'm thinking maybe you embedded some relative links into a menu system in which the base href was not appropriate, ... or something.
    Scott

  • Why plan table showing 1 rec

    SQL> CREATE TABLE A (ID NUMBER)
    2 /
    Table created.
    SQL> EXPLAIN PLAN FOR SELECT * FROM A
    2 /
    Explained.
    SQL> SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY)
    2 /
    PLAN_TABLE_OUTPUT
    Plan hash value: 1222032187
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 13 | 2 (0)| 00:00:01 |
    | 1 | TABLE ACCESS FULL| A | 1 | 13 | 2 (0)| 00:00:01 |
    Note
    PLAN_TABLE_OUTPUT
    - dynamic sampling used for this statement
    12 rows selected.
    why plan table showing one record when i have no record in table a.
    regards

    This is because you did not analyze the table, and if it was analyzed, it maps a zero to a one. Please not that my test is not in 10g but on 9iR2, where non analyzed tables have null values in their estimated cardinalities.
    SQL> create table a (id number)
      2  /
    Tabel is aangemaakt.
    SQL> explain plan for select * from a
      2  /
    Uitleg is gegeven.
    SQL> select * from table(dbms_xplan.display)
      2  /
    PLAN_TABLE_OUTPUT
    | Id  | Operation            |  Name       | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT     |             |       |       |       |
    |   1 |  TABLE ACCESS FULL   | A           |       |       |       |
    Note: rule based optimization
    9 rijen zijn geselecteerd.
    SQL> exec dbms_lock.sleep(1)
    PL/SQL-procedure is geslaagd.
    SQL> insert into a values (1)
      2  /
    1 rij is aangemaakt.
    SQL> explain plan for select * from a
      2  /
    Uitleg is gegeven.
    SQL> select * from table(dbms_xplan.display)
      2  /
    PLAN_TABLE_OUTPUT
    | Id  | Operation            |  Name       | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT     |             |       |       |       |
    |   1 |  TABLE ACCESS FULL   | A           |       |       |       |
    Note: rule based optimization
    9 rijen zijn geselecteerd.
    SQL> exec dbms_lock.sleep(1)
    PL/SQL-procedure is geslaagd.
    SQL> insert into a select level from dual connect by level <= 9
      2  /
    9 rijen zijn aangemaakt.
    SQL> explain plan for select * from a
      2  /
    Uitleg is gegeven.
    SQL> select * from table(dbms_xplan.display)
      2  /
    PLAN_TABLE_OUTPUT
    | Id  | Operation            |  Name       | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT     |             |       |       |       |
    |   1 |  TABLE ACCESS FULL   | A           |       |       |       |
    Note: rule based optimization
    9 rijen zijn geselecteerd.
    SQL> exec dbms_lock.sleep(1)
    PL/SQL-procedure is geslaagd.
    SQL> truncate table a
      2  /
    Tabel is afgekapt.
    SQL> exec dbms_stats.gather_table_stats(user,'A')
    PL/SQL-procedure is geslaagd.
    SQL> explain plan for select * from a
      2  /
    Uitleg is gegeven.
    SQL> select * from table(dbms_xplan.display)
      2  /
    PLAN_TABLE_OUTPUT
    | Id  | Operation            |  Name       | Rows  | Bytes | Cost (%CPU)|
    |   0 | SELECT STATEMENT     |             |     1 |    13 |     3  (34)|
    |   1 |  TABLE ACCESS FULL   | A           |     1 |    13 |     3  (34)|
    7 rijen zijn geselecteerd.
    SQL> exec dbms_lock.sleep(1)
    PL/SQL-procedure is geslaagd.
    SQL> insert into a values (1)
      2  /
    1 rij is aangemaakt.
    SQL> exec dbms_stats.gather_table_stats(user,'A')
    PL/SQL-procedure is geslaagd.
    SQL> explain plan for select * from a
      2  /
    Uitleg is gegeven.
    SQL> select * from table(dbms_xplan.display)
      2  /
    PLAN_TABLE_OUTPUT
    | Id  | Operation            |  Name       | Rows  | Bytes | Cost (%CPU)|
    |   0 | SELECT STATEMENT     |             |     1 |     3 |     3  (34)|
    |   1 |  TABLE ACCESS FULL   | A           |     1 |     3 |     3  (34)|
    7 rijen zijn geselecteerd.
    SQL> exec dbms_lock.sleep(1)
    PL/SQL-procedure is geslaagd.
    SQL> insert into a select level from dual connect by level <= 9
      2  /
    9 rijen zijn aangemaakt.
    SQL> exec dbms_stats.gather_table_stats(user,'A')
    PL/SQL-procedure is geslaagd.
    SQL> explain plan for select * from a
      2  /
    Uitleg is gegeven.
    SQL> select * from table(dbms_xplan.display)
      2  /
    PLAN_TABLE_OUTPUT
    | Id  | Operation            |  Name       | Rows  | Bytes | Cost (%CPU)|
    |   0 | SELECT STATEMENT     |             |    10 |    30 |     3  (34)|
    |   1 |  TABLE ACCESS FULL   | A           |    10 |    30 |     3  (34)|
    7 rijen zijn geselecteerd.Regards,
    Rob.

  • Why is there always "0 bytes" in Cache in Control Panel? It never increases, yet the stored data size continues to increase.

    This is annoying. I just updated to version 19 almost a week ago and still Firefox never seeks to keep anything in "Cache". After using firefox for a few days, it crashed a couple times already and now the browser randomly freezes (to the point to where my screen on/off button wont even respond). After maybe a few seconds...things will start moving, but sluggish to where I have to shut down FF in my task manager. There us "0" bytes cache shown, but stored data is at 70MB. I went into firefox and cleared cache via the settings but that did nothing. There is still 70MB of stored data and of course it alwats shows 0 bytes cache. What's up with that? Am I going to have to "Clear Data" just to fix this and lose my bookmarks and logins tet again?

    I think it's possible that Firefox, while emptying some database files, is not compacting them, so they continue to consume the same amount of "disk" space as they did before. On desktop versions of Firefox, you can use extensions such as the following for that purpose, but I don't know whether any such thing is available for mobile. Also, it would be nice to have it built in.
    * https://addons.mozilla.org/en-us/firefox/addon/places-maintenance/
    * https://addons.mozilla.org/en-us/firefox/addon/placescleaner/
    Unfortunately, in a quick search, I do not see a general purpose Android SQLite app that will runs on Firefox profile databases without root access (unless they are on the SD card, which seems highly doubtful).

  • Why PSA data show red status when opened but green on PSA page?

    Run RSA1 -> click PSA to open PSA page, locate one infosource and find the PSA under it, find the status column shows it's green, but when opening it, find the 1st column shows red for each row.  How does the inconsitance occur?
    BTW, if we open the infopackage monitor for the above one, find a weird thing is that each request get two consecutive processes running with a circle of red ball and green ball in the left frame.  Double click one of them, in the right frame and click the monitor Status tab, the msg window is as following (in between two dashed lines below):
    Incorrect data records - error requests (total status GREEN)
    Diagnosis
    Data records were recognized as incorrect.
    System response
    The valid records were updated in the data target and can be used in reporting.
    The incorrect records were not written to the data target, but were posted retractively under a new request number in the PSA.
    Procedure
    Check the data in the error requests, correct the errors, and post the error requests.
    Sounds like the data failed to uploaded to data target due to error in PSA, but why the status show green in somewhere?   And if clicking the Details tab, all show green!  Weird!
    Thanks

    Hi Kevin,
    In your InfoPackage Update tab, click the Error Handling button. It seems that the Valid records update, request green option is chosen. This is why you see the green request and some error records.
    This means that the corect reocrds were loaded and are available for reporting, but the incorrect ones were left behind. This is used to check the erro records separatelt so that they do not disrupt the entire data load.
    Hope this helps...

  • Why metadata index shows up when i plug my ipod into the computer in itunes and how to avoid metadata index showing up it will not allow me to eject from itunes

    why metadata index shows up when i plug my ipod into the computer  in itunes and it will not allow me to eject my ipod from itunes

    Hi donfrommars,
    Welcome to the Apple Support Communities!
    Please use the following article for information and instruction on deleting the U2 album from your devices and account.
    Remove iTunes gift album "Songs of Innocence" from your iTunes music library and purchases
    Have a great day,
    Joe

  • Every time I open a pdf file which includes a javascript, a dialogue box pops up. I have a question why 'Do not show this message again' is not working even I checked on the checkbox. It should block the dialogue next time when I open the same pdf file bu

    Every time I open a pdf file which includes a javascript, a dialogue box pops up. I have a question why 'Do not show this message again' is not working even I checked on the checkbox. It should block the dialogue next time when I open the same pdf file but not working. What is the matter and how can I deal with it?

    I am trying it on Adobe Acrobat Reader 9.2.1. Tried to fix Hex code, and also tried 'edit-preference-trust manager'. I focusing on Adobe registries but still couldn't fix the problem.

  • Why does firefox show up as a plugin on volume mixer?

    Why does firefox show up as a plugin on volume mixer? After updating a flash plugin into firefox (when it had requested me to update it), it no longer shows up as firefox in volume mixer. It now shows up as some plugin icon. I really don't understand this, and wish it to be the firefox icon again. What is going on and what happened? It names itself "Plugin Container For Firefox" What does that mean? It has been this way ever since, and nothing I have done has fixed this. Restarting, refreshing, reinstalling, clearing cache, etc. Can anyone think of something please? :(
    == This happened ==
    Every time Firefox opened
    == This happened just a couple days ago (june 25, 2010 exactly)

    I have this, but my volume on firefox doesnt work at all

  • Just installed mountain Lion. Viewing a pdf sent to me using preview and some colors are appearing BLACK, however when I view the same PDF in Acrobat they are perfect and what they are suppose to be. WHY would PREVIEW showing a different color?

    Just installed mountain Lion. Viewing a pdf sent to me using preview and some colors are appearing BLACK, however when I view the same PDF in Acrobat they are perfect and what they are suppose to be. WHY would PREVIEW showing a different color?

    Here's what I've found on the issue:
    Pantone color definitions have changed (coinciding with CS6) — they are now "Pantone+" (I think that's what they're called). The "+" apparently means they're now LAB colors. Lab colors are not properly displayed in Preview (or in Finder previews) — they display as black (as far as I can tell, in all circumstances). I'm sure it's a tad more complicated than that, but that's the gist.
    Now the bad news — nobody seems to know anything about a fix or workaround (unless you convert your PDFs to process — this might be a fix for sending to clients). It causes issues for me in AI files — being able to view them in the finder (with previews) is a HUGE time saver for my workflow... when they're all black, not so much.
    In my chat with a director of product dev at Adobe, they placed the responsibility to fix on Apple (assuming Apple wants to support Pantone color definitions in their OS).

  • I have an iPod touch 4th gen. why does it show the wrong album art only on my ipod and not on itunes? Is there any way I can fix it?

    I have an ipod touch 4th gen. why does it show the wrong album artwork on my ipod and it's fine on itunes. why is that and is there any way to fix it? please help!

    I think it can't find the right or any artwork and ends up putting junk in there.
    And can happen with artist and other tags.
    probably fine with commercial media but otherwise....? I think you have to manaully go in and edit
    I also don't like how it handles and stores non-Apple iTunes store content.

  • Tried to take photo w/ iphone 4s. Got "storage full" message. Deleted a good bit of content: video, music, some apps. Phone still shows "0 bytes availible". What's the deal?

    Tried to take photo w/ iphone 4s. Got "storage full" message. Deleted a good bit of content: video, music, some apps. Phone still shows "0 bytes availible". What's the deal?

    Do a reset (Hold Sleep/Wake and Home buttons about 10 secs or more till Apple logo appears)

  • Why wont it show me my order status on the iPhone 6, 16GB, Gold?

    Why wont it show me my order status on the iPhone 6, 16GB, Gold?
    I ordered it on 9/27/14, and I got the email that said to check the order status, but when I go to the page it said nothing.

    I was in a similar situation.  The phone I ordered was in stock, with supposedly no shipping delay. I ordered on 9/27, but it actually took four extra business days for Verizon to ship my order.
    I called twice and both times the reps couldn't help be determine the status.
    My assumption is Verizon fulfillment is swamped with orders.  They SHOULD have a way of determining real status but they don't.
    I would suggest waiting a few more days, then call the Internet Order group at 800-922-0204 and start complaining.

Maybe you are looking for

  • Photoshop CS4 Crashes When Opening Image - Other Adobe Programs Work

    I'm at the end of my rope here. The problem is (that has spontaneously occurred) is that Photoshop CS4 opens fine.  I go to Open, select image, it loads it on screen for a few seconds ,and then I get this Photoshop  has stop working and it closes out

  • Report tools performance

    Hi Guru: The performance of the query designer/report designer is really slow in my laptop. Is there any way to improve the performance of these tools? I am in the newest patch of BEx. Eric

  • Copying large file sets to external drives hangs copy process

    Hi all, Goal: to move large media file libraries for iTunes, iPhoto, and iMovie to external drives. Will move this drive as a media drive for a new iMac 2013. I am attempting to consolidate many old drives over the years and consolidate to newer and

  • Photoshop Elements 10 Group Shot Crashes

    Photoshop Elements 10 - Group Shot Crashes after I select the option from the menu.  I am using Windows XP.  Is there a workaround or is there a way to fix this? 

  • Color Cast in "Grid" Thumbnails

    I have a strange color cast (pink) that only shows up in the "Grid" and only on the thumbnails of the original RAW file. This color cast shows up in the over-exposed highlights of my thumbnails and is "NOT" because the "Highlight Hot Areas" is turned