Registration code not being e-mailed

I am a student that has purchased the Course Technology book 'Guide to Oracle9i'. This book comes with Oracle9i Developer Suite. I am able to create my account and I do receive the screen that informs me that I will receive an e-mail with my registration code in a few minutes. It has been around 30 minutes and I am not seeing that e-mail. What should be my next step to getting a registration code?

This has been received.
Thank you.

Similar Messages

  • When I tried to log into my itunes account, I was asked to update my credit card information. When I confirmed my credit card info, I got a response about my security code not being accurate -which is not the case-it is 100% accurate. How do I fix?

    I keep getting a message about my security code not being accurate. I tried 3 different cards & have the same issue. Is this a systems issue? I need to get my apps installed on my new iPhone 4. I am unable to download without confirming my credit card info- My security codes are 100% accurate.Anyone else having this issue? What is the fix for this?

    Ohemod,
    There are 120+ countries that have iTunes Stores, but that leaves many that do not.  You can consult this document:  iTunes Store: Which types of items can I buy in my country?
    Opening in a new country requires a tremendous amount of legal, commercial and financial investment, but I am sure Apple would be interested in knowing where there is unmet demand.  If you wish to make suggestions to Apple, you can use the iTunes Feedback page.

  • Call to java bean but code not being executed.

    Making a call to my javabean class called ch06_03.java from a jsp program shown below:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <title>Using a java package.</title>
    </head>
    <body>
    <% beans.ch06_03 messager = new beans.ch06_03(); %>
    The message is: <%= messager.msg() %>
    </body>
    </html>
    The call from jsp to javabean program is only returning the hello from java and NOT EXECUTING ANY OF THE CODE in the msg() method. I am checking my table landings_hold and nothing is there, my log file shows nothing. Why is the code not being executed except for the return statement?
    My javabean program is shown below:
    package beans;
    import java.io.*;
    import java.util.*;
    import java.text.*;
    import java.sql.*;
    public class ch06_03 {
    StringTokenizer st1;
              String val1, val3, val4, val5, val9, val10, val11, val12, val13, val14, val16;
              String val2, val6, val7, val8, val15, val17, val18, val19, val20;
              int cnt;
              String filetext = "Starting RIFIS Upload";
              java.util.Date d = new java.util.Date();
              SimpleDateFormat form = new SimpleDateFormat("dd/MMM/yyyy hh:mm:ss");
              String dateString = form.format(d);
    public String msg() throws Exception {
         try {
         Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@xxxxx.xxxx.xxx:1521:xx","xxxxxx","xxxx");
              Statement st = conn.createStatement();
         File f = new File("C://upload");
              FileWriter outFile = new FileWriter("C://RIFIS/log/logfile.txt", true);
              outFile.write(System.getProperty("line.separator"));
              outFile.write(filetext+" - "+dateString);
              if (f.isDirectory())
              { String [] s = f.list();
              for (int i=0; i<s.length; i++)
              { outFile.write(System.getProperty("line.separator"));
                   outFile.write("Found file - "+f+"/"+s);
              FileReader file = new FileReader(f+"/"+s[i]);
                   File inputFile = new File(f+"/"+s[i]);
                        File outputFile = new File("C://RIFIS/archive/"+s[i]);
                   BufferedReader buff = new BufferedReader(file);
                   boolean eof = false;
                   String val0="";
                   ResultSet rec = st.executeQuery("SELECT landings_hold_batch_seq.nextval FROM dual");
                        while(rec.next())
                        { val0 = rec.getString(1); }
                        cnt=0;
                        while (!eof)
                        { String line = buff.readLine();
                        if (line == null)
                        { eof = true; }
                             else
                             { cnt = cnt+1;
                                  st1 = new StringTokenizer(line,",");
                                  val1 = st1.nextToken();
                                  val2 = st1.nextToken();
                                  val3 = st1.nextToken();
                                  val4 = st1.nextToken();
                                  val5 = st1.nextToken();
                                  val6 = st1.nextToken();
                                  val7 = st1.nextToken();
                                  val8 = st1.nextToken();
                                  val9 = st1.nextToken();
                                  val10 = st1.nextToken();
                                  val11 = st1.nextToken();
                                  val12 = st1.nextToken();
                                  val13 = st1.nextToken();
                                  val14 = st1.nextToken();
                                  val15 = st1.nextToken();
                                  val16 = st1.nextToken();
                                  val17 = st1.nextToken();
                                  val18 = st1.nextToken();
                                  val19 = st1.nextToken();
                                  val20 = st1.nextToken();
                                  st.executeUpdate("INSERT INTO LANDINGS_HOLD (lh_id, lh_batch, supplier_dr_id, supplier_unique_id, supplier_dealer_id, supplier_cf_id, supplier_vessel_id, unload_year, unload_month, unload_day, state_code, county_code, port_code, itis_code, market, grade, reported_quantity, unit_measure, dollars, lh_loaddt, lh_loadlive, purch_year, purch_month, purch_day)" +
                        "VALUES (0,'"+val0+"','"+val1+"',"+val2+",'"+val3+"','"+val4+"','"+val5+"',"+val6+","+val7+","+val8+",'"+val9+"','"+val10+"','"+val11+"','"+val12+"','"+val13+"','"+val14+"',"+val15+",'"+val16+"',"+val17+",SYSDATE,NULL,"+val18+","+val19+","+val20+")");
                             } // while else end
                        } // parent while end
                        FileReader in = new FileReader(inputFile);
                        FileWriter out = new FileWriter(outputFile);
    int c;
                        while ((c = in.read()) != -1)
                        { out.write((char)c); }
                        in.close();
                        out.close();
                        outFile.write(System.getProperty("line.separator"));
                        outFile.write("Number of records inserted - "+cnt);
                        outFile.write(System.getProperty("line.separator"));
                        outFile.write("Copied upload file to archive directory");
                        outFile.write(System.getProperty("line.separator"));
                        outFile.write(f+"/"+s[i]+" - Has been removed from upload directory");
                        buff.close();
                        inputFile.delete();
                   } // for end
                   outFile.write(System.getProperty("line.separator"));
                   outFile.write("Upload Complete...NO ERRORS");
                   outFile.write(System.getProperty("line.separator"));
                   outFile.write("*************************************************************");
                   outFile.write(System.getProperty("line.separator"));
                   conn.close();
              } // if end
              else
              { outFile.write("No files to process"); }
              outFile.flush();
              outFile.close();
              } // try end.
              catch(Exception e)
              { FileWriter errFile = new FileWriter("C://RIFIS/log/errfile.txt", true);
              errFile.write(System.getProperty("line.separator"));
              errFile.write("ALERT....ALERT....ALERT");
              errFile.write(System.getProperty("line.separator"));
              errFile.write("Error Occurred in ReadSource.java - RIFIS Upload");
              errFile.write(System.getProperty("line.separator"));
              errFile.write("My Error: " + e);
              errFile.write(System.getProperty("line.separator"));
              errFile.write("*************************************************************");
                   errFile.flush();
                   errFile.close();
              } // catch exception end.
         return "Hello from java";
         } //public msg block
         public ch06_03()

    Since you didn't use code-formatting tags ([ code ] and [ /code ] without the spaces) it's kinda hard to look at it. But I'm sure it DID execute much more than just the return statement - maybe you're not closing a file or db connection, or maybe you're seeing a cached page, so it actually isn't executing ANYTHING on the server (is your browser set to never check for newer pages so it (almost) always returns from cache, for example?)

  • Registration code not accepting letters

    Hi, a few years ago I took a Dreamweaver CS3 class.  I bought the software and the registration code worked.  About a month ago it wasn't working right so I uninstalled it, restarted my computer, tried to install it, it will accept the numbers of the registration code but not the letters.  I have uninstalled it several times and tried to install it but I keep having the same problem.  Also, now it won't give me the option of doing the trial version.  I went into my computer 's registry and there is a Dreamweaver file that no matter how many times I delete it, it is there after I restart my computer.  Could this be the problem?  Could someone please help me fix this problem?

    Use the CS Cleaner tool to remove residual files from your system.
    http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    Nancy O.

  • Jsp code not being executed in browser

    Even though my applications deploy and redeploy, I can see .html files but not .jsp files. The server presents the path, i.e. http://localhost:7001/ITDC/index.jsp, but the jsp code is either not being compiled and exceuted in a client browser or the .jsp is being compiled but not executed in the client broswer.
              

              Akilah <[email protected]> wrote:
              >Even though my applications deploy and redeploy, I can see .html files
              >but not .jsp files. The server presents the path, i.e. http://localhost:7001/ITDC/index.jsp,
              >but the jsp code is either not being compiled and exceuted in a client
              >browser or the .jsp is being compiled but not executed in the client
              >broswer.
              How about you tell us exactly what happens, and what you expected to happen. I
              can't tell if you're getting error messages, or whether you just don't see what
              you expect on the screen.
              Note that JSP code is not ever executed in the browser. It's only ever executed
              in the appserver, and the generated output is viewed in the browser.
              

  • Consultant "Registration code not sent for Crystal Reports Basic for VS2003

    I need to know how to receive a CR registration code for VS2003.
    In VS2003 when I open a Crystal Report, Iu2019m asked for a registration code. So I registered at the SAP website for the CR Basic for VS2003 license, but all I received was an email below. So where is my registration code for this? Where can I get one so I can stop the nag screen.

    Hello,
    Unless you or someone else edited your original posting there's no "email below" in your post. If the email has a keycode in it you don't want to post it here. You don't want to share your keycode with everyone.
    Do you see a 19 or 23 digit alpha-numeric keycode in the email you received? If so, that's your keycode. If not, let us know and we'll see if we can find out who you can contact to receive your keycode.
    Sincerely,
    Dan Kelleher

  • Registration code not sent for Crystal Reports Basic for VS2008

    I need to know how to receive a CR registration code for VS2008.
    In VS2008 when I open a Crystal Report, I'm asked for a registration code.  So I registered at the SAP website for the CR Basic for VS2008 license, but all I received was an email below.  So where is my registration code for this? Where can I get one so I can stop the nag screen.
    Email received below:
    Thank you for registering SAP Crystal Reports, version for Visual Studio .NET 2008.
    As a registered user of SAP Crystal Reports, version for Visual Studio .NET, you'll be the first to receive notifications of product news and updates, beta programs, and special events.
    Make the SAP Crystal solutions support site your primary destination for technical support. Search the knowledge base, read and post to the forums, browse articles, and download service packs.
    Tap into the full power of the SAP Crystal Reports product line. Visit our website, to learn more about optimizing your business, download trial software, and explore upgrade paths that can help you support larger deployments and diverse user needs.
    Thank you for choosing SAP Crystal Reports, version for Visual Studio .NET.
    Sincerely,
    SAP.com Customer Service

    This is not a technical support issue as such. Please call 866-681-3435. They should be able to help you out.
    - Ludek

  • URGENT: Registration codes not received.

    I am installing 9i from my textbook. I went through the registration process and get the confirmation message that I sell be send the registration code shortly. However the last page loads with a syntax error.
    It has now been 4 DAYS. All email addresses I am using are active and accurate. I see that many others also have this same issue.
    OTN Please help ASAP...I am supposed to have this installed by today!

    Thanks for your help, Barry and Peggy. In terms of what you suggest, Barry, that support option appears to only be for hardware and not software. When I tried to register my AppleWorks, I was asked to put in my marketing number, which is on the outside of the box. I tried to put in this marketing number as you suggested and it was not accepted.
    I got an email from Apple Care (1-800-263-3394) shortly after my responses from both of you on October 11 asking about how I felt about the handling of my phone call to them. I responded the same day on the website provided expressing my dissatisfaction. There has been no follow up to this feedback.
    I phoned 1-800-MY Apple this morning, October 16, and, after about 22 minutes on hold, was connected with Tracy, who then put me through to a product specialist named Andy. Andy was not sure why I did not receive a confirmation email, but he said he would make a note about my problem. He gave me a case number and said if there was any problem to refer to the case number.
    I listed an alternate email on the My Info page, so if there was a problem with my first email, a confirmation could have been sent to the alternate.
    iBook G3 900 laptop   Mac OS X (10.3.9)   G4 AGP Graphics Tower, 400 mhz

  • Registration code not received

    I tried to register Oracle 9i cds that I got with my textbook (Guide to Oracle 9i) and I haven't received the registration code yet. It has already been 2 days. Please help.

    Please let us know if you have still not received this email and we will forward you the key information.
    OTN

  • Cr 8.5 Registration code not retained

    Post Author: sandyj
    CA Forum: Older Products
    I have entered the registration code logged on with admin rights but when logging on to the user it still asks me to register the product.  I enter the rego code again but it doesn't retain it. 

    I have found the answer i was needing.  It turns out that i have about 6-7 different versions of the crxf_pdf.dll file, and my installation program was installing an incompatible version. 
    I have now found out the correct one to use, and everything is working fine now.
    Thanks,
    Chris

  • Registration ocde not being accepted

    I've emailed Registration Support, but is anyone else having issues registering using codes available via your technical subscriptions, and/or that were prepaid? I continue to get an error that it is an invalid code number.
    Thank you.

    Originally Posted by tsherwin
    Just for grins, I tried to register separately via a custom URL in an email I received for previous attendees. That one asked for my email address only (no code), but also failed with an error "The Registration Code you entered is invalid."
    I had same issue with URL for previous attendees and same error message.

  • Registration code not arrived

    It has been many more minutes than a "few" and, alas, I have nae recieved a registration code. Whatever shall I do?

    Use the CS Cleaner tool to remove residual files from your system.
    http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    Nancy O.

  • Gift Apps not being e-mailed after purchase

    Anybody else having trouble with Gift e-mails being sent?
    This is the second time I have sent a gift to someone and had the recipt delayed, or never show up. In this case, I purchased an app as a gift on the 7th of July and the e-mail was never sent to the recipient, or at least they never received it. The e-mail address has been confirmed known good and working. I re-sent the gift twice today (7/12), and neither e-mail showed upfor the recipient again.
    What's going on here? Is anyone else having this problem?
    The e-mail address is a GMAIL account, could that have something to do with it?
    Or is gifting Apps and movies, etc. generally flawed? I've only just started sending iTunes gifts, so I don't know how reliable it is. But I must say, so far I'm not impressed.

    When I send them they arrive in seconds.
    Ask the recipient to check Mail rules and filtering, the verification mail may be going to a junk folder or even being deleted altogether.
    Also see if you are able to resend the email by following these steps.
    If the problem persists, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History using your computer.

  • HT3678 registration code not working

    Bought qt player pro code online through apple.  Entered info in registration box.  Logo says QT PRO but will not work as QT PRO.  ???

    If the Pro labels have gone from the menu items, then your key is correctly registered. If you're having problems editing or exporting, post details as to the format of movie you're working with, what you're trying to do, and the exact nature of the problem, and we ma be able to offer suggestions. For faster and perhaps more complete responses you may wish to post in the QuickTime forum.
    Regards.

  • Code not being executed????

    Am using a session varible to test an if statement, if true then statement is executed, else nothing. The session variable appears to be false but the statement is still being executed, any suggestions. Possibly a browser specific problem?
    The code in question is as follows....
    if((session.getAttribute("accessrights")!=null)&&(session.getAttribute("accessrights").equals("3"))) { %>
    <html statement >
    <html statement>
    <% } %>
    The value of accessrights prior to the If statement is '1' and it is still being executed. Any suggestions very gratefully recieved!!!!!

    Correction: the code should be as follows. It always displays the class and value of that attribute. So you can see if that is what you expect. If it is, then the problem is fixed. Could you also show what you see on your browser when using the following code?
    <html>
    <p> attribute class is <% = session.getAttribute("accessrights").getClass().getName() %> value is <% = session.getAttribute("accessrights").toString() %> </p>
    if (session.getAttribute("accessrights")!=null) {accessRights = (String)session.getAttribute("accessrights"); }
    <% if(accessRights.equals("3")) {%>
    <% } %>
    </html>

Maybe you are looking for

  • Transportation of Datasouces from BI DEV to BI QAS

    Hi all,          We have been facing some troubles  while transporting from the BI DEV to BI QAS side .Our R/3 DEV source system is IED200 and R/3 QAS is IED400. I have trasnported all respective datasources from R/3 DEV to R/3 QAS , replicating the

  • Script for multiple insert

    hi, I want to insert some 100 records into emp table. instead of one by one one row insert, i want to write a script so that it will insert 100 records. like empid ename sal 1000 king a 100 this is the first record, the second record should be empid

  • How to make RTL text selection in flex?

    In my application, I need to make page for user to highlight text in RTL. so which component can I use?. The text already in right aligned.

  • No Par File upload option in NWDS

    Hi Experts, Yesterday i was working on NWDS when i go to file --> import --> i used to get many options including PAR file option but today when i tried the same go to file--> import, i get only two options Developement component and Multiple existin

  • Absolutely Positioned Spry Elements Disappearing in Firefox

    Building a sliding spry element that creates the effect of a tab expanding upwards. Renders perfect in both Safari and Opera9, however in firefox the heading tag and subsequent <a> that controls the effect are visible only for a brief second and the