Oracle DBA will never offer 2nd chance for certification tests?

Oracle DBA will never offer 2nd chance for certification tests?

This time Oracle Sun java offers a 2nd chance for testing certification.

So if you miss the 1st try, you get another free trial.

Thank you Roger

Think about that provide you a URL so that people can read the fine print.  Also certification of high-end Java identifythe which he made, and does not apply.

Like any seller Oracle can offer carrots if she feels she will lead directly or indirectly, profits increased.  My guess is that they probably won't this offer on DBA tests... remember the historical lineage of exams have been through Sun Java...

Tags: Oracle

Similar Questions

  • It will never be a 3D for the Qosmio F750 update?

    Don't you think that it will always be an update for the use of 3D with games or other applications beside using Kevin screenmode and iz3D utility?

    I've heard rumors that Toshiba is planning something for the 4th quarter...

    > Do you think that it will always be an update for the use of 3D with games or other applications beside using Kevin utility screenmode and iz3D?

    + Qosmio F750 portable free glasses 3D - content taken in charge and software +.
    http://APS2.toshiba-tro.de/KB0/TSB1A037N0000R01.htm

    3D still images (planned to be supported)

  • Can I install Firefox in a way that will never check an upgrade for all users?

    In the approximately 500 mV VDI environment I would like to disable checking of upgrades for users of all virtual machines. We cannot update Firefox until we have ensured that the new version works with specific tools. Virtual machines are linked clones that are being refreshed to their State before logon after users log off. This causes the popup to come upgrade whenever users connect. Users are not allowed to upgrade, then it is a nuisance that I would like to eliminate them.

    I found that I can use on: config to disable checking of upgrade on the image, where all virtual machines are created, but cela will not shut it for all users for the user with which the image is kept. Is there a central setting that allows me to do this? Or this would require a change in profile all users? And if the latter, what a change I need to make to their profile?

    Use a mozilla.cfg file in the Firefox program folder to lock the prefs or specify default values.

    Place a local file - settings.js in the defaults\pref folder where you will also find the channel - prefs.js to specify using mozilla.cfg file.

    pref("general.config.filename", "mozilla.cfg");
    pref("general.config.obscure_value", 0); // use this to disable the byte-shift
    

    See:

    You can use these functions in mozilla.cfg:

    defaultPref();  // set new default value
    pref();         // set pref, but allow changes in current session
    lockPref();     // lock pref, disallow changes
    
    lockPref("app.update.enabled", false);
  • You will never have an option for the sizes of the different camera (a99) FIRST?

    I sometimes find the 24MP too large files. A lower resolution FIRST produced by the camera would be less noisy or it will just be a resized 24MP RAW?

    By default, the appliance uses full resolution when shooting RAW images. This will ensure that you have the better image quality when you convert and resize your RAW files to JPEG. It is not possible to use a lower resolution when shooting in RAW.

    If my post answered your question, please mark it as "accept as a Solution.

    http://bit.LY/LapMagWin

  • Model reusable SQL Oracle to create a DDL/DML Scripts for Oracle database

    Hello


    I have an obligation to set up a model of Oracle SQL to create the Scripts DDL/DML reusable for Oracle databases.
    Only the Oracle DBA will run scripts permissions is not a problem.

    The workflow for any DOF is as follows:-

    (1) new table

    a. check whether the table exists in the views system/admin.
    b. If the table exists then give message "Table exists".
    c. If the table does not exist then run DDL code

    (2) add the column

    a. check if the column exists for a given table of the system/admin views
    b. If the column exists in the specified table.
    B1. backup table.
    B2. ALTER table alter column
    B3. check data or execute convert dml sauvegardΘ to the new change script.
    c. If the column does not exist
    C1. backup table
    C2. ALTER table add column
    C3. Run dml to populate the column with the default value.

    The DML scripts are to populate the base tables with the data required for business operations.

    (3) addition of new line

    a. check if the line exists by comparing the old values of each column with the new values to be added for the new record.
    b. If there is, to give message line is
    c. If not exists, add the new record.

    (4) update existing record (we createtime columns in these tables as well as changes can be tracked)

    a. check if the row exists using the primary key.
    b. If there is.
    B1. off the record by using the "active" column of the table
    B2. Add new record with the necessary changes.
    c. If does not exist, add the new record with the necessary changes.

    Could you please help with some ideas that can get this done with precision?
    I tried several ways, but I am not able to set up something that meets all the requirements.

    Thank you

    If it helps at all. Sometimes we have a requirement for a DDL statement to be rerunable and her only error if something completely unexpected happens.

    It's a little monstrous, but basically, we wrap all DDL in a dynamic statement and capture errors that would indicate that the DDL script has already been run:

    Here's a bit of a model:

    declare
       w_ddl varchar2(32767);
    begin
       begin
          --
          dbms_output.put_line('Creating table TABLE_NAME');
          --
          w_ddl := 'CREATE TABLE MY_SCHEMA.TABLE_NAME
                    ( COLUMN_1     DATE          NOT NULL
                     ,COLUMN_2  VARCHAR2(10)  NOT NULL
                     ,COLUMN_3  DATE
                    )';
           --
          execute immediate w_ddl;
          --
          dbms_output.put_line('Successfully created table TABLE_NAME');
          --
       exception
          when others then
             if sqlcode = -955 then
                dbms_output.put_line('Table Already exists.');
             else
                dbms_output.put_line('creation of table TABLE_NAME failed:');
                dbms_output.put_line(sqlerrm);
                raise;
             end if;
       end;
    
      begin
          --
          dbms_output.put_line('Creating unique primary key constraint for TABLE_NAME');
          --
          w_ddl := 'ALTER TABLE MY_SCHEMA.TABLE_NAME ADD (
                   CONSTRAINT TABLE_NAME
                   PRIMARY KEY
                   (TABLE_NAME_ID) USING INDEX)';
           --
          execute immediate w_ddl;
          --
          dbms_output.put_line('Successfully created primary key on TABLE_NAME_ID');
          --
       exception
          when others then
             if sqlcode = -02264 then
                dbms_output.put_line('constraint already exists.');
             else
                dbms_output.put_line('creation of primary key failed:');
                dbms_output.put_line(sqlerrm);
                raise;
             end if;
       END;   
    
    <>
    

    It works well with our scripts to autmoated and help us when we iterate through development and back in if needed test environments.

    In this way, we can add the DDL statements to the deployment script and run the script again without error to set the database to the State required without having to run the newly created statement only.

    Sometimes this approach translates into a creation followed a statement alter table statement to add a column, but the end result of the script is always the same, and the deployment script can be controlled at source between iterations of development that is without having to restore the ddl changes to test the modified DDL script.

    hope that gives you some ideas.

  • Firefox has detected that the server redirects the request for this address in a way that will never end.

    This week (01/10/12) I registered on youtube and now I can't log back in here or in my gmail account. I tried every fix-it/single remedy offered the FF forum but nothing works.

    Any other work, all the sites that I frequent load fine, is youtube doing something on purpose for FF users? I can get the page youtube videos and see, but I can't log on, every time I click the sign in button, I get:

    "The page is not redirecting properly".

    Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
    

    This problem can sometimes be caused by disabling or refusing to accept cookies. »

    I hate to be a conspiracy theorist, I can connect to youtube without problem on IE, but I hate this browser. I use windows 7 and 15 FF. Can someone find it?

    Looks like it's a firefox issue, because that never happened on IE, Safari or Opera on me.
    You think not that a simple patch can solve this problem. I have to delete individual cookies every day.

  • First review of certification for the Oracle DBA

    Hello
    What is the first for an Oracle DBA certification exam? How to prepare? Can we find a free sample of it? Where?

    Thank you.

    First of all, I suggest refer you to the Oracle Certification page and he surfed a bit-> http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=39
    There, you will find enough information on exams

    If you want to get a material for the preparation of the review, just give a little research using the name test in this forum, or simply scroll down and surf between subjects. You'll find lots of information here

    - - - - - - - - - - - - - - - - - - - - -
    Kamran Agayev a. (10g OCP)
    http://kamranagayev.WordPress.com
    [Step by step installation Oracle Linux and automate the installation by using Shell Script | http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • Will be Firefox for android get firefox Hello? Or will never happen because telefonica is not interested to have in firefox for android?

    Firefox for android will get firefox Hello and when? Or will never happen because telefonica is not interested to have in firefox for android?
    Hello, Firefox is the right thing and it would be much larger if it is available on android for direct use from phone to phone.

    I don't have an ETA for you, but it is spoken, here is a list of bugs to integrate the UX, etc.:

  • Firefox has detected that the server redirects the request for this address in a way that will never end. I followed your instructions and nothing works. This just started happening today.

    I was watching www.ustream.tv/decoraheagles for months. I started using Firefox about a month ago. Earlier today, when I tried connecting to the site, I received the message "Firefox has detected that the server redirects the request for this address in a way that will never end."
    I went on your site and follow the instructions. This Web site was not in the blocked sites. He told me how to add it, and I did.
    She still refuses to open this site.
    Internet Explorer WILL open this site.

    Clear the cache and cookies from sites that cause problems.

    "Clear the Cache":

    • Tools > Options > advanced > network > storage (Cache) offline: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Tools > Options > privacy > Cookies: "show the Cookies".
  • message from Firefox: "page isn't redirecting properly" Firefox has detected that the server redirects the request for this address in a way that will never end. * Why this mess

    "The page isn't redirecting properly?

    i receive this warning on a daily basis. it seems to occur whenever i open a message  in gmail or try to send a message. anybody have a clue about this? thanks!
    

    Firefox has detected that the server redirects the request for this address in a way that will never end.

       *   This problem can sometimes be caused by disabling or refusing to accept
             cookies.
    

    See http://kb.mozillazine.org/The_page_is_not_redirecting_properly

  • I am a user of xp for life. Microsoft will offer an upgrade for xp users that is affordable?

    I am a user of xp for life. Microsoft will offer an upgrade for xp users that is affordable? I think that xp users should get an upgrade, just like users of vista to windows 7. It wasn't my fault for the nonsense of the European union. but now I have to upgrade or not? Please answer

    Hello

    The following links may be useful:

    Upgrade Windows XP to Windows 7
    http://Windows.Microsoft.com/en-us/Windows7/help/upgrading-from-Windows-XP-to-Windows-7

    Upgrading to Windows 7
    http://Windows.Microsoft.com/upgrade

    Windows 7
    http://www.microsoftstore.com/store/msstore/list/parentCategoryID.44066700/CategoryID.50726100

  • RHEL 7 will never be a platform support for vSphere SDK for Perl 5.5?

    RHEL 7 will never be a platform support for vSphere SDK for Perl 5.5?

    https://www.VMware.com/support/developer/viperltoolkit/viperl55/vsp55_vsperl_relnotes.html#supported


    Thank you

    We have recently updated the Perl SDK to 6.0 U2 which now supports RHEL 7.1, as seen in the vSphere SDK for Perl Release Notes

  • How can I change my fill of tru for the pdf file and the sign? It will never change.

    How can I change my fill of tru for the pdf file and the sign? It will never change.

    In Adobe fill & sign you can add text, checkmarks, an X, a point and a circle and sign documents.  It does not "change" the existing content of the document.  Here is a tutorial: Tutorial: Introduction to Adobe fill & sign

    Thank you

    Josh

  • Oracle DBA jobs

    Hi all

    Please don't mind my question if I violated the purpose of the forum and if yes, then I am truly sorry.

    I work since nearly 3.4 years in Oracle Database Administration. I mainly worked on Dev-Test platforms where we keep no interruption of service. I don't have the hands on the CARS or a lot of knowledge. I worked on 10g, 11g.
    I know that the concepts and methods of implementation of data keep (Eve), I worked on RMAN (duplication and incremental backup, complete/incomplete recovery), expdp/impdp and exp/imp, small amount of (SQL/Shell), database server management scripts (for the most part have exp on Linux), Installation of RDBMS/ASM, Databases(manually/DBCA), Security(privs,roles,auditing), Tablespace and other management staff of logical structure , HOT backup, cold backup (and restore from it), database upgradation, patch (PSU, a one-off, attach/detach from stocks), tracing, SQL Loader, ensure monitoring and creation, database monitoring and maintenance, segment management and defragmentation, maintenance of database object, Configuration of OEM etc., manipulation of the different types of Oracle, including critical errors errors like 600,7445 etc... Read and extract the AWR/ASH...

    Can I get a job outside of my current company? As I don't see a lot of growth there. Not even happen to have exposure to other platforms... Most businesses want personal CARS.

    Please suggest and help me (if possible)... I am really in tension on what will be there in my future because here I will never get to work on the CARS and the architecture of high availability...
    This is the reason why now I think spend my business for better technological growth...
    Should what I know in this phase of my career. pls suggest... I am from INDIA

    -Looks
    DBA struggling

    If you get another job is a completely local issue. Ask a local recruiter how the job market is for the DBA. In my region (the United States), it seems that there are a decent amount of demand for the DBAs, but you could work in a local economy that is stagnant.

    Chances are, in 2013, that any new DBA job will involve some element of redundancy of data.

    In a few years, I suspect that most of the places will be CARS or Exadata systems for their critical databases. It will probably be a major breakdown before most companies will spend the money for clustered systems, but eventually, they will be included like that. Same Oracle Database Machine is a RAC configuration if you think about it - and that's what they're trying to plant smaller customers.

    I remember about 10 years ago CARS was rare (I remember installing RAC 9.2.0.1 for a customer - boy, which was DIFFICULT). 'All' that you must do to be a DBA then, was to understand things from single instance.

    Five years later, most DBA needs to know about RAC/ASM/data Gurd if they wanted to be Production DBA - they had to understand specific, cluster, ASM and Data Guard stuff.

    I can see that in a few years, DBAs must be competent in Exadata or similar - so they will need to understand specific, cluster, ASM, Data Guard AND Exadata stuff (networking, storage cells, etc.).

    My point is that the DBA role changing faster than any tech specialty. Fortunately, Oracle makes things easier to administer the technologies we have to master to become more complex: I can testify how difficult 9.2.0.1 was put in place for CARS - management of a system of 11.2 is so MUCH more enjoyable!

    Unless you work in a place that have no plan to upgrade their databases (due to legacy systems) and to grow as a business, then chances are that you will be finally exposed to what you are looking for. Of course, if you work in a place like this, then we could suggest you better find somewhere else to work. Stand still must be turned towards the back, etc...

    Good luck. It is good to be ambitious, but don't forget that a DBA role is a this experience absolutely request - if you have 3 years to be a Production DBA and having to call this in the middle of the night, you probably better experience than someone who spent 6 years as a development DBA (IMO).

    Mark

  • I will never buy another Dell as long as I live

    I hate Dell with every fiber of my being. I got 2 computers, a M4700 and a M4800 and none of them worked and I run an online business and have not been able to work while they keep breaking. Brand new, works does not in the delivery. I'm trying to get a refund now on the 2rd broken one in 5 months, and I went through the usual India bounce around and have been waiting for 45 minutes again. Last week, I was logged out 15 times. I told my story at least 20 different representatives who never write it down and then disconnect me. I don't understand how they have clients, running a business like that. I'm a Web Designer and computer consultant so that people ask me what to buy all the time. I'm going to write my story and leave it on the net. I've never jerked around this property. If I asked them to loss of activity and all the hours I spent waiting and trying to get this problem fixed, it would be 20 k more. No lie. This is my hourly rate more business lost because I have not had my computer for 5-6 weeks on / off power in 5 months. I've been waiting for more than 60 minutes after being transferred from the India. I listen to this music on hold lively again. Since I bought the computer of origin in December, it never worked right. He was dead out of the box. They send a tech guy who has replaced most of the parts and it never worked right, then they send me the M4800 3 weeks and he broke completely two weeks after I got it. I want a refund. I don't want a 3rd computer. Also, I have no computer. I can't work. Of course Dell tells me that they can't pay back me, because the original order went from 30 days. Which is ridiculous. How can they do that when I have a computer that has worked since the first day. I gave them a chance to solve this problem, and it is not fixed. I'm not waiting 90 minutes and they refuse to refund my money. I have to wait another 3 to 4 weeks to get a new computer. I can't believe they do. Now, I entered my code of service 7 times and it is not recognize all the numbers that you enter. It's like a loop with them. I can't get help. It is a nightmare.

    I'm blogging on my site, but the story is not yet done yet! I still have it in draft form.
    I never thought that he would go so long... in 8 months. Here's my nightmare to date.

    This is a true story as incredible as it sounds when you read it. What I find the most amazing, is how Dell is still in business running it like that. After about four months of Dell, I realized that I need the entire document. And the story is not yet finished and it's been 8 months and 4 computers later.

    9/2013- My Acer is overheated and cannot manage the level of video processing that I need for my business.
    I start shopping for a computer that will last me for years and be durable and reliable. Read criticism of M4700 for PC Magazine and think it's a good deal and good computer for my needs.

    Buy 9/13 this deal includes Pro support which is very important for me because of my bad history with Dell and terrible customer. I'm charged and the clock of the guarantee starts even if it's another two months before I was able to use the computer. Takes a full 6 weeks to get it. They ran out of somewhere.

    Oct 2013- Is not a DVD/R in writing, somehow, I missed it on the prescription. Send it back. Takes still 4 weeks

    Nov 2013
    happens - I knowledge now, I did not Support Pro, and they will not give to me because it my mistake when I don't have for the accessible reader into writing. Too busy to put in place, leave it for a few weeks.

    DEC/2013, start moving files and put in place, but working on two computers for a month. Finally get all the programs installed, start using the start and I get a blue screen of death and multiple shut downs when you are doing something to do with videos, and then it becomes closed and blue just randomly screens downs for no apparent reason.

    January 2014 - blue screen boot all the time, before it was once or twice a week. 
    Download Dell Remote help - middle of 3 hours of the night and can't fix. Reference Dell group still 2 hours and they can't fix it. Computer will not make any video work. The main reason I bought it. I'm starting to find a lot of other people on the Dell forum having the same problems. A lot of broken computers and blue screens that appear constantly.

    May 2014- Dell finally give up and decide to send me a new computer. Will be 2-3 weeks to get to me.
    A better that they say. I ask them to switch me to Support Pro because I had so many problems, they say no.

    End June, 2014 New M4800 arrives - spend hours to move files, reactivate all of my graphics and design programs web, office suite and many many programs I use for my business. Two weeks later, I'm downloading some work online and the computer becomes black. Does not start, all the lights at the top of the fair Board flashing.

    July 2014 Call Dell, hours later, looks like the motherboard is bad. I have no computer and now I have no access to my emails and my files of the company and everything else I need. Tech comes out two days later, change the motherboard, video card and more. Computer still does not. He has no idea what the problem is. Ordered another motherboard, just came back two days later, works again on this matter and considers "non repairable computer." I call Dell and they CS Rep tells me is not repairable does not mean it can't be solved. I talk to him, how can you say that? I need another computer replacement and before another 4 weeks. Now, I have no access to my work for the last 8 months and e-mails and they suggest I have borrow your desktop to someone if I can use the hard drive!

    I have an external one put in place, but it is useless to this situation on a laptop. The guy told me that I have to take the computer share following its directions on the phone until they send me a replacement.
    What the? Dell is going to force me to disassemble the computer to the phone until they send me a replacement? I already remove other two computers, and I'm getting sick of the present. All I wanted was a computer that worked. I have spent so many hours on it, and now they are forcing me to disassemble a computer? What kind of service is that?

    I hang up and cry. So I'm on my work. I need to get the job done and I can't. I call Anthony, my guy tech who tried to repair the computer and he is shocked by what they want to me and told him and his boss will try to help me get a faster replacement computer. He will try to reopen the case and talk to someone at Dell. They are independent contractors, and I can see fighting for not to say anything negative. He feels really bad for me, but he has no power or on what they are doing.

    I'm taking a break to talk to Dell, since I did not have another clock free hours for you can call, be disconnected and fight with them again. Whenever I call, I have to me shore mentally to deal with all the UPS crash and useful people and tell my story over and over again since the departments that I take care of not not talk to each other, and NONE of my problems are documented for the another dept to read. It's a nightmare. I realize there is good chance that I won't have a computer for weeks, then I begin to dig all the old computers that I and my Acer I bought the Dell to replace.

    It's Friday and the Ministry of replacement is closed and no one can help me before Monday. I called my credit card and try to get a refund and the refund Dept. is closed for Citibank until Monday too.

    My Acer must be at the top of the unit. I put a sweater and work standing on the air conditioner. I spend the weekend to transfer all files from 8 months ago at my dad's computer.
    The transfer of 'easy' of windows is 9 and a half hours. I spent the next 3 hours reactivate and install programs that don't yield on and digging at the old licenses and codes, all of which are on a list on the broken computer.

    July 29, 2014 Monday morning: first of all I call Citicard, a refund would solve all my problems. I desperately want to forget Dell forever and just buy another brand. Card bank Citibank refuses a refund. They say that Dell has a 3 year warranty, they cannot help me. I cried as I hang up. This is the first time I did not use my American Express card for a major purchase and I'm seriously regretting this choice right now. I called Citibank before I used the card to buy this computer and they told me that they had the same policy for refund/replacement such as American Express. Amex would be of me reimbursed. You can count on them regarding such things. I will never buy something big with my Citibank credit card again.

    I decided to try again with a different CS Rep., I hope they won't have me disassemble the computer it's release-able before they order me my 3rd computer but I have my tools out and I ready to to do that if that's the only way I can get my replacement computer.

    Dell phone service is the worst and after that I finally find the right dept I ask for a refund and they say no way, but when they put me on hold, I learned to be queued means that you will be disconnected with Dell. I think that 'hold' is the code for hang up on this person. I added to the top how time may that I was hooked to the top/disconnected upward by them and it now more than 30 times. The total number of real. Can you imagine if I was a boss or an employee for Dell? This is not the case for me.

    I connect everything and everyone that I get, I ask their name, and ask them to call me if we get disconnected. In two hours I'm trying to get help this morning I eventually call Dell more than 8 times. One of them told me before it disconnects / places awaiting me, "our software is.". Two of the 8 people who pulled swear me they help me and promise to call me if we're disconnected but never call back me. Another said to me earlier in the day, "we had problems with some of the parts of these machines. I have names for everyone, but they are not real half the time and you can never talk to them or even to find them. Two hours later, 8 disconnects and 5 times my story and enter all my information on the phone and listen to their music on hold, I now hate with a passion.  I get a CS Rep named Eric who says he will take my case and take responsibility for it.  He will order me a replacement. Erik assures me that he will be in charge of my case and I don't have to continue to talk to different people. I get the confirmation email saying he'll come within 10 working days.

    Usually 2-3 weeks of not having a working machine. Another day of shooting. I can't do any work for my clients and work piling up. Children begging me to buy a computer from anyone but Dell and just sell the following that they send me on Ebay. I feel that how can I do this to someone else? I don't know how the guarantee would transfer more and honestly, I feel like it would be dishonest to stick to a person with this problem.

    7/30 Computer replacement number 3. I try to remove the hard disk from broken replacement machine number 2, but one of the 5 screws to remove to get out the hard disk is stripped. A screw away from my life back. I call Dell.
    Customer Service-says his name is "Alex", I ask to be sent to a tech person to remove the screw. Waiting and the phone for an hour. Refused. I told me they don't do that. I need to go somewhere and pay me or mail back into the computer and they will then send me the back of the hard drive.
    Within 10 working days. I've now had my computer for more than 5 weeks. I pray you, they refuse. I take the hardware to the computer store and they use their tools extractor and may not leave the screw. They are trying. I love my local hardware store. Thank you True Value Hardware in Castro Valley, you guys are the best. They are like your time old corner store. They are actually in the middle of a neighborhood. They seem to have a bit of everything and generous in offering to help you when you have these weird problems. I'm going home and email Eric, my rep cs who promised that he would take responsibility for my case, and I ask him to help me please. Here's what he sent back 24 hours later.
    "I'm sorry, Madam, but I must inform you that I no longer work in the Department of the workstation. I have moved to another Department and no longer have my old cases, including yours. Your case will be given to a new owner if. I trust that they will be able to solve your problem. ».
    I just laugh at it. I'm at the point now where the only thing that will make me feel better is to publish my story and leave my honest comments everywhere on the internet. Dell will spend millions to get new customers and then they treat them like that. What is the problem with this company? I will become the person walking anti-dell in my personal life.
    A dark reminder of what can happen with Dell if you have any kind of problems. I have send an email 'Mary', who told me her name was Alex yesterday, but my follow-up e-mail is Mary. Now I ask a confirmation email whenever I talk to someone, but I only get these about 1 5 times. I learned to try to force them to send me an e-mail while I'm still on the phone. I beg you to help me. No response... never.
    I now know to call, nobody will help twice. Just wait for that if you buy a Dell computer. You never have a person who will help you in fact. They are all fired the ball and you can't get real names, extensions or anything like that.

    7/31 call CS Rep name is Karla. 1 hour. I make sure Karla is going to call me at the time where I'm getting hung up. She is wise and never put me on hold for the whole time we're talking about. She puts just the phone down instead. Seriously, I think that it is the ONLY way that Dell will not cut you. I feel hope, it may be actually trying to help me. I request this be dealt with in order to return the computer and recover the hard disk. I'm ready to box it upward, and then return to the UPS Store for the 4th time to regain a Dell computer. I ask him if they can speed up it somehow since I am now 5 weeks without a working computer.
    At this point, I do not expect anything. I kept telling them how I run an online business and can't do my job and have the year last of my life on this hard drive. Why bother? They don't care. No one took in charge the world this month as any other 8 that my CS Rep John 1, whose email I can't access even more and they wouldn't give it to me once again when I asked. Karla talking to several departments different and after a lot of time to hold (but not actually put on hold, thank God), she tells me that they will send a technician home to remove the screw. Seriously? Can you even believe this? I begged Mary/Alex yesterday and she was cold and unyielding, there is no way that would happen. I expressed my disbelief to Karla, who said only: I am pleased that help you, it will be 3-4 days for the service call? Much better than the 10 days that looks more like 3 weeks.

    Independent contractor for Dell Anthony released two days later and can't get out the screw.
    Now he almost 05:00 for Dell and I will not be able to get any aid again until Monday, this guy Brian tells me that I'm out of warranty before it bothers even to read my file. I tell him I'm on my replacement computer 3rd of them so I'm certainly not out of warranty. And to find my service ticket, he put me on hold and... Click, disconnected. Every time. Like clockwork.

    I call back review this brand-new and the rep, Josephine said I have to put you on hold... I Scream no, until it can do (and disconnect me again), and I beg him to put just the phone down.  She does and I have heard all the people on the phone, wow, who are strong and then after 5 minutes it goes silent... oh no, please please do not disconnect me once again... I have to just sit here and wait for the operator turns on and says: ' If you want to make a call, please hang up and try again. Wow, I truly memorized by high hanging on so many times by Dell and hear the interrupt message. Josephine, he said now the warranty is not displayed. Honestly at this point, I think I should write off the 2000.00 for this machine and forget it. I easily lost 10 times x billable hours and work during this period of not being able to do my job and on the phone trying to correct problems with Dell. Josephine treated the return of order, and I ask him how can I be sure that I will come back this hard drive? I don't trust them at all. I do not hang up until I get the email of its confirming everything. Also sincere to someone of you other sufferers as it there, don't let them put you on hold! Tell them to put just the phone down. It's the only way you will not be disconnected.

    Since I bought the first Dell Sept 2013, I do not have the use of my computer for 4 months. Up to half of the time since I placed the original order. As of today, I am looking at another 2 weeks until they send me back my hard drive. I do not have a usable computer to return to my work online.
    I was forced to recreate jobs and combine work better as I can for my clients. My email is an obsolete year now and I have no access to the programs and files on the hard drive that has a stripped screw.

    TO BE CONFIRMED...

Maybe you are looking for