Oracle basics ..online lessions

hi
any site or a link where i can take lessons online... ?

You could look at the Oracle By Example tutorials. Great for getting over the initial shock by leading you with predefined examples.
You could take lessons from Oracle - they have online classes at http://education.oracle.com ... in many cases these are Oracle University modules - the same ones I teach to OCP candidates.
For more advanced classes, I'd also highly recommend SQL University's online site at http://sqluniversity.net ... they have some free samples.

Similar Messages

  • How do i export/import the Oracle Portal Online help

    hai everybody...
    i want to export/import the
    Oracle Portal Online Help Content Area
    i tried this same as (my own content area
    export/import)...but my own content area Pages were worked.....how do i do this..
    any help..
    thanks in advance
    null

    The recommended way is to export the User Manager configuration template out (using the AdminUI), import it into your new enviroment (again using the AdminUI - you have to type the password of the LDAP user in since it is not exported) and then initiating an LDAP Synch.

  • Oracle Customer Online - no bill to/ship to

    While viewing site uses in OCO (Oracle Customer Online) for a particular customer i'm able to view data for party sites.
    Which tables are used in this ?(only hz_party_sites?)
    also in party sites table there is data for two sites (bill to/ship to) but no corresponding data is there in hz_cust_acct_sites_all and hz_cust_site_uses_all for this party.
    How to propagate these party sites in tables hz_cust_acct_sites_all,hz_cust_site_uses_all ?
    Edited by: user540130 on Sep 23, 2010 9:50 PM

    What you are referring to is a Party Site Use and they are independent from Account Site Uses. When you create an Account Site Use, Party Site Use gets created often times depending upon the UI used. But the reverse is not true. You can add as many Party Site uses as you like, and this will not have any bearing on Account Site Uses. Same is true when it comes to maintaining Site Uses at Party Level and Account level. They can be maintained independently.
    The story is different when it comes to Sites. If you inactivate a Party Site, all Account Sites that are tied to it gets inactivated. If inactivate an Account Site, the underlying Party Site gets inactivated, which in turn triggers the inactivation of all Account Sites that are tied to the Party Site.
    There are several good presentations on TCA, CDH, MDM and Best Practices are posted at http://www.rhaptech.com/resources.html that you might want to take a look at.
    Regards,

  • HP Recomended Hardware for Oracle database online transactions

    HI all
    please provide me with pdf for Hp hardware for Oracle database online transactions
    thanks ,,

    You can check and ask in HP website
    http://www12.itrc.hp.com/service/home/home.do?admit=109447627+1211964879513+28353475
    Cheers
    http://fiedizheng.blogspot.com/

  • Oracle sales online  Customer

    Hi
    While creating Customer in Sales Online is it possible to create Customer Payment terms ,Payment type,Shipping Method
    Thanks in advance
    Satish.M

    Hi All,
    When I try to create new customers from Oracle Customer Online Data Librarian SuperUser -> Customer-> Create
    It gives an error:
    I tried the metalink note Doc Id # 363447.1, but it still did not resolve the issue,
    I am also getting this error while creating customers on sales pages..
    Resp: Sales Online Super user.
    Sales Online
    Customer tab--> Click on Create Button..
    Enter mandatory fields and click on Create:
    java.sql.SQLException: ORA-06502: PL/SQL: numeric or value error: character to number conversion error ORA-06512: at line 1 java.sql.SQLException: ORA-06502: PL/SQL: numeric or value error: character to number conversion error ORA-06512: at line 1 at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134) at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289) at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:590) at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1973) at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1119) at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2191) at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:2064) at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2989) at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:658) at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:736) at oracle.apps.ar.hz.v2api.HzPartyV2Pub.createOrganization(HzPartyV2Pub.java:1298) at oracle.apps.asf.customer.organization.OrganizationEO.createOrg(OrganizationEO.java:484) at oracle.apps.asf.customer.organization.OrganizationEO.create(OrganizationEO.java:548) at oracle.apps.asf.webbean.FormWebBean.process(FormWebBean.java:172) at oracle.apps.asf.webbean.WebBeanHandler.process(WebBeanHandler.java:255) at oa_html._asfOrgznCreatMain._jspService(_asfOrgznCreatMain.java:1267) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417) at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267) at oracle.jsp.JspServlet.internalService(JspServlet.java:186) at oracle.jsp.JspServlet.service(JspServlet.java:156) at javax.servlet.http.HttpServlet.service(HttpServlet.java:588) at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456) at org.apache.jserv.JServConnection.run(JServConnection.java:294) at java.lang.Thread.run(Thread.java:534)
    kindly help out.

  • Execute procedure on oracle apex online

    Hi All
    CREATE OR REPLACE PROCEDURE TEST_PROC
    AS
    V_FNAME EMPLOYEES.FIRST_NAME%TYPE;
    BEGIN
    SELECT FIRST_NAME INTO V_FNAME FROM EMPLOYEES
    WHERE FIRST_NAME = 'JOHN';
    DBMS_OUT.PUT_LINE(V_FNAME);
    END;
    I have made this procedure on sql worksheet of http://apex.oracle.com/ on my account.
    when i gave EXECUTE TEST_PROC; and CALL TEST_PROC; command to exeute this procedure I'm getting following error ORA-00900: invalid SQL statement.
    please tell how can i run this procedure.
    thanks in advance.
    regards
    Neeraj

    Some basic concepts first. Apex is a suite of PL/SQL procedures and functions and packages and database tables. Apex runs totally inside the database as stored procedural code.
    What makes it unique and different is that the procedures are called by a web browser URL. This is received by Apache and passed to a module called mod_psql. This module processes the URL from the web browser, determines what database to connect to and what stored procedure call to make.
    Inside the PL/SQL environment there is a set of web packages - and a buffer area that can be used to create dynamic web pages. Apex PL/SQL code executes and creates a dynamic web page/web content in this buffer. The code terminates.
    The mod_plsql module in Apache then reads this buffer from the Oracle session and it streams the content to the web browser.
    DBMS_OUTPUT is not specifically supported by mod_plsql as it is another buffer area (quite primitive in use and interface). It supports a basic console output display for PL/SQL code - and is typically use by session-based clients like TOAD, SQL*Plus and SQL-Developer.
    So if you want a web-enabled PL/SQL procedure to display data on the web browser, your code needs to write to the web buffer in PL/SQL and not the DBMS_OUTPUT buffer. Writing to the web buffer can be done using the HTP.prn() call.
    Here's a very basic example of outputting data to a web browser using custom PL/SQL code. Create a Apex page. On this page create a text item called something like P1_FIRSTNAME. This enables the web user to supply a parameter value to your PL/SQL procedure.
    Create a dynamic PL/SQL region on the page, that calls your procedure:
    begin
      --// if the user supplied a firstname, we call the procedure to process the data
      if :P1_FIRSTNAME is not null then
        MyTestProc( firstName => :P1_FIRSTNAME );
      end if;
    end;The user procedure that receives and processes the data, and supplied web output, will look something like the following:
    create or replace procedure MyTestProc( firstName varchar2 ) is
      cnt integer;
    begin
      htp.prn( 'You have entered the search criteria: '||firstName||'<br> ');
      select count(*) into cnt from emp where first_name like firstName;
      htp.prn( 'Number of matching employees: '||to_char(cnt)||' row(s)<br> ');
    end;

  • PHP connection to Oracle basic question.

    Forgive me if I am missing a very basic piece of knowledge here.
    I have a small local web server I run with Apache 2.2.3 and PHP 5.1.6.
    I am working on a project that uses Oracle tables located on the corporate network servers.
    These tables are normally maintained by the IT department using TOAD. I'd like for the business process 'owners' to be able to maintain the tables themselves - but the company has limited TOAD licensing and some of the dependencies between tables are not readily apparent (especially to a non-IT person).
    Therefore I am trying to develop a simple web app to allow table updates, using PHP to connect to the Oracle tables. The idea is I'll put the app and web server on a USB stick for the designated business person to use. (yeah, I know - seems crazy, but the paperwork to get this all into a true 'production' system is impossible, and I really don't want to have to maintain these tables myself for the rest of my working life)
    I've got the basics of the app working through some MySQL tables, now I just need to know how to connect to the 'real' Oracle tables.
    Here's what I've gathered from my reading:
    I need to download Instant Client and install to my 'server' (on my USB stick)
    I need to change PHP.ini to enable the extension for php_oci8.dll
    I need to set some environment variables....and here is where I am lost.
    Are these environment variables on my web server?
    I am running my USB web server on a Windows XP system (as will the business users). But it doesn't make sense to me to set my PC's environment variables, because then I'd need to worry about ever PC the USB stick got used on.
    Could someone clear this up for me? I am sure I am just missing something very basic.
    Oh, and is there anything else I'm missing?
    Thanks for any help!
    mary

    Get it working on a full machine first, and then move to using the USB stick. Refer to Underground PHP and Oracle Manual for standard installation information.
    PHP/Apache will need to be able to find the Oracle Instant Client libraries. Normally on WIndows this is done with the PATH environment variable on the machine running the web server.
    -- cj
    PS your IT department might like the free SQL Developer tool from Oracle instead of TOAD.

  • Oracle 8i online docs web pages not working in IE5.5?

    Up until about a week ago, I was able to browse the online docs for Oracle 8i, using Internet Explorer 5.5 SP2 on Windows 2000 SP2. Now, I am getting incomplete web page loads and/or pages that repeatedly reload themselves. I do not experience this problem browsing the same pages with Netscape 6.2 on the same PC. The only relevant change on my PC I can think of was application of Service Pack 2 to Internet Explorer 5.5.
    An example URL is http://technet.oracle.com/docs/products/oracle8i/doc_library/817_doc/server.817/a76965/c01intro.htm#12981 - this page loads only down to the section "Data Integrity". Other pages exhibit similar behaviour. I don't experience this problem using IE5.5 with any other Web sites.
    I have tried clearing all cookies, cached files, etc. to no avail.
    Any help or suggestion will be appreciated.
    Regards,
    Philip Steiner

    Hi,
    You need to follow below steps:
    1) cd $JAVA_TOP
        2) zip -r customprod.zip. Where the list of all directory paths are present, relative to $JAVA_TOP, for custom application's java files at non-standard location.
        3) Generate & sign customprod.jar file.
    Command: adjava oracle.apps.ad.jri.adjmx -areas $JAVA_TOP/customprod.zip -outputFile $JAVA_TOP/customprod.jar -jar $CONTEXT_NAME 1 CUST jarsigner -storePass -keyPass
        4) Delete temporary customprod.zip.
    Command: rm $JAVA_TOP/customprod.zip
        5) Follow below steps to make the custom jar available for WebLogic
    a) Take a back-up of existing /admin/template/ebsProductManifest_xml.tmp
    b) Modify /admin/template/ebsProductManifest_xml.tmp to add entry for customprod.jar (after customall.jar) 
    c) Run AutoConfig
    d) Bounce the Mid-tier services
    Thanks,
    Anupam

  • JDeveloper/OAS/Oracle - Basic Question

    Hi,
    I have a very basic question. I want to write a simple application using JDeveloper 3.0, OAS 4.0.8.0 and Oracle 8i as the database. The functionality of the application will be to simply display all the rows from a particular Oracle table on a front-end screen.
    Can anyone suggest which would be the best architecture to adopt. Should I use EJBs, or applets or .
    There are no examples (samples) provided with the documentation that illustrate simple applications like the one I am trying to build.
    It will be great is someone could illustrate (step-by-step) what I should use to paint my front-end screen, what I should use to write my SQL (to retrieve rows from the Oracle table) and how I should deploy all of this on OAS.
    Thanks in advance.
    null

    I guess my question was not framed correctly. I am new to JDeveloper and was trying to learn how to develop applications using the tool. I am also new to Internet programming in general so please bear with me. Coming from a old Client/Server school, I thought I would start learning JDeveloper by creating a "Client" using the many features of JDeveloper and then call a "Server" to do the database access. Now my question was the process to go about doing this. You have asked me whether I want to create an application or an applet. Well, the answer is that I frankly dont know. I want to be able to design (paint) a HTML page on which I want to be able to display rows from a Oracle table. Once I have managed to do this simple application I will start putting more complex functionality into that application to learn advanced features. Hope that helps.

  • Oracle R12 Online free classes

    Hi:
    I was told I can take Oracle free classes online because our company is a Oracle partner. Can some one help me on this? I have a metalink account. Do I go to metailink? Thanks.

    Hi,
    Please refer link:
    http://www.oracle.com/partners/en/opn-program/019737.pdf
    http://www.oracle.com/partners/campaign/036189.pdf
    Certain programs and features are available with different class of Oracle partnership (Platinum, Gold and Silver).
    I have a metalink account. Do I go to metailink?
    No, You dont go to metalink site to access education programs.
    But as far as I know there are 20% discounts on Oracle University programs and Annually Oracle provide couple of free training to choose from the training list.
    Hope this helps!
    Best Regards

  • Oracle basic administration

    HI ,
    Please dont consider this as a interview question.I am in need of some information regarding "Basic Database Administration Skills in Oracle".What all topics would be covered in that .Could anyone please let me know.Thanks in advance.

    Hi,
    SAP on Oracle
    Regards
    Ashok Dalai

  • Oracle Marketing online( Web pages are not opening)

    Hello all,
    I have got 11i installed on my machine. Application is running fine. I was trying my hand on Oracle marketing module and also CRM Administration modules.
    I don't know what's going wrong the web pages are not opening ( Web page not found offline) error is appearing.
    Infact all functions of Oracle Marketing Super user have they type selected as JSP.
    I am unable to resolve this problem. Can some please help me.
    Regards
    Arun ( [email protected])

    Hi Arun,
    Please let me know which OS you have installed apps.
    Just try running adconfig and then check.
    Cheers,
    Kunal

  • How to change country of Salesperson in Oracle Sales Online

    Hi,
    In our database i have one sales resource from say France. Who has nearly 20 opportunities under him. Now the business requires that he is transfered to UK office. As a effect all the existing opportunities as well new opportunites should be listed under UK. Can anybody let me know how to move salesperson from one country to other with all his opportunities.
    your help is highly needed and appriciated in advance.
    Bhavin Choksi

    Hi Bhavin,
    A Resource is presently an Employee of France Organization and he is the Owner of some X Opportunities (say 20). Now he as an Employee gets transferred to UK Organization. What you may need to do is ->In Core HRMS assign him to a different Organization (which is UK).He can still see his Opportunities when he logs in again being an Employee of the UK Organization.
    Let me know if I have understood you properly and is this the answer helps you.

  • EBS R12.2.4 Oracle Customer Online, profile UDA error "JBO-26010"  UomExtAttr1

    Hi, all
         In EBS R12.2.4, OCO define a UDA for profile,  not display in profile page, show error page, has below error "JBO-26010: Invalid Entity Attribute Name "UomExtAttr1"  ", any help is appreciate.

    Bing,
    I think one thing you might want to do is to post your code on the Web somewhere. Maybe you can open a Weblog and post this there.
    http://www.jroller.com will let you open a blog for free we'll love to see more customers of JDeveloper opening weblogs and sharing their experience over the Web.

  • Oracle Sales Online - Inactive Ship To Address Default

    Hi,
    When copying an old quote which has inactive ship_to address is copied to new quote and not able to change the inactive ship address to active ship_to address using Shipping/Billing tab.
    Please suggest ideas on this?
    Thanks,
    Sai

    I'll explain better with code this time. I created the order through the SBO client and did not modify the address fields (left defaults in place).
    TEST STEP 1)
    Dim B1Doc As SAPbobsCOM.IDocuments
    B1Doc = SAPCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
    B1Doc.GetByKey(12345)
    B1Doc.Address2 = "some address SHIPPING"
    B1Doc.Address = "some address BILLING"
    B1Doc.Update()
    NOTE: Both address values are set correctly.
    TEST STEP 2)
    Dim B1Doc As SAPbobsCOM.IDocuments
    B1Doc = SAPCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
    B1Doc.GetByKey(12345)
    B1Doc.Address2 = "some address SHIPPING #1"
    B1Doc.Address = "some address BILLING"
    B1Doc.Update()
    NOTE: B1Doc.Address reverts back to the default address
    TEST STEP 3)
    Dim B1Doc As SAPbobsCOM.IDocuments
    B1Doc = SAPCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
    B1Doc.GetByKey(12345)
    B1Doc.Address2 = "some address SHIPPING #2"
    B1Doc.Address = "some address BILLING"
    B1Doc.Update()
    NOTE: Both address values are set correctly.
    TEST STEP 4)
    Dim B1Doc As SAPbobsCOM.IDocuments
    B1Doc = SAPCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
    B1Doc.GetByKey(12345)
    B1Doc.Address2 = "some address SHIPPING #3"
    B1Doc.Update()
    NOTE: B1Doc.Address reverts back to the default address
    Do you not have this behavior? Am I doing something wrong? My only work around would be to save the document twice in order to update the address field back to what I want.
    This only occurs with the Address variable. You can run the same code and flip the Address and Address2 variables and you will see that the Address2 variable updates correctly every time.

Maybe you are looking for

  • I keep getting the message "iTunes has stopped working". May I have some help please to solve this?

    I just updated to iTunes 10.5 and now, I can't listen to music or watch a movie without the message "iTunes has stopped working" popping up. As soon as this happens, iTunes crashes completely. I'm running on Windows 7 - 64 bit. May I have some help p

  • Is iPhone 5 coming out this year or not?

    Not really caring about the media hyping it or something, no leaked prototypes, just the possible facts of one coming. Thanks

  • How to get the input value as a columns headings of the kye figer

    Dear all, the senario is i have keyfiger heading like DESPATCHES MADE ON (0CALDAY) and CUMMULATIVE DESPATCHES FOR (0CALMONTH), the 0CALDAY is the input value of the report. so how to get the value of the 0CALDAY and 0CALMONTH in the heading name of t

  • Avoid messages to keep ringing

    In fact I have two questions about Messages. When receiving a new message with screen locked, I shows a banner. No problem, it is what I set in Notifications Settings.If my phone is on my desk, for instance, and I receive a new text, I can read it in

  • HD crash and can't boot form install disc. . .

    Hi there, this is the first Mac I've owned and it's a little under a year old. It's a Macbook Pro with an Intel Core Duo and OS X 10.4 Tiger. Last night my computer froze attempting to open iTunes and I restarted it by holding down the power button.