Oracle Student System Implementation and Administration Guide Required...

Hi every one.
Any one have following books:
Oracle Student System Implementation and Administration Guide, Volume 1, Release 11i
Oracle Student System Implementation and Administration Guide, Volume 2, Release 11i
If any one have please share with me. I need it urgently.
Thanx in advance.
Saquib

It seems you have got a syntax error in your sql statement, I suppose you left out the value for the maximal size.
I would try something like this in sqlplus:
alter database datafile '/oracle/<SID>/sapdata1/system_1/system.data1' autoextend on maxsize 10240m
Or perhaps this:
alter database datafile '/oracle/<SID>/sapdata1/system_1/system.data1' autoextend on maxsize unlimited
(of course substitute your path of a datafile.)
hope this helps

Similar Messages

  • Where to download Oracle Student System, part of Oracle E-business suite 11

    I am very new to Oracle E-Business suite of applications, but need to download Oracle Student System, which as I understand is part of the suite. Currently, on E-delivery, on release 12.1 is available, which doesnt contain OSS. Any ideas where to get this application? Is it available on its own as well?
    Many thanks in advance.

    Hi,
    Most Oracle Apps 11i software were removed from e-Delivery website, and in order to get the software, you will have to log a SR and ask Oracle support to send you the Media Pack (this requires having a valid Metalink account).
    Regards,
    Hussein

  • Oracle Student System : Linking units to a program.

    Hi,
    can any one tell me if i need to link unit to a program where should i go in Oracle Student System(OSS)?
    Also is this linking done using any process, because when i see the patter of study screen in OSS then
    it is populating all the units against the program, to select the core and optional unit against a program.
    Please help.
    Regards,

    What type of prompt is this? Is it a dialog box or are you supposed to press a key on the keyboard? For either method you need to make the window active which you can do with the Windows API and the lvwutil library you can find here. At that point what you do depends on whether you have a dialog or you need to press a key. For a dialog you need to simulate pressing a button which you can also do with the Windows API. For the keyboard same idea. You can also do this with AutoIt, which doesn't require Windows API programming and has a relatively simple ActiveX interface.
    Message Edited by smercurio_fc on 09-10-2008 03:12 PM

  • User and administration guide.

    We have to prepare our applet for Common Critera certification. We have to write lots of documents. Among them there is User Guide and Administrator Guide.
    What must be wriitten inside the User Guide. Some of us thinks that it should be written for the middleware
    because the middlewatre is the user of our applet and that this document should contain the interface description (APDU commands/responses).
    Is this right? What about the Administrator guide? Is this a document that describes how the applet is installed and how the pre-personalization is done
    in case the applet is installed inside the EEPROM? In case of ROM, the NXP does the ROM masking. In that case, the document would contain what
    have to be delievered to the NXP in order to perform masking and the pre-personalization steps?

    Hi Jianbai,
    Would request you to implement SAP Note: 1294047 for this issue. Here is the excerpt:
    BPC provides 'System user group' on Server Manager to get group users list from different domain. There is also another way to get different domain users list not by adding to the 'System user group'.User can use 'Custom Filter' functionality on admin console when user adds or modifies users.
    For example,
    1. Domain1\BPC_User1;Domain2\BPC_User2;..
    2. Domain2\BPC_User*
    3. Domain1\ BPC_User;Domain2\ BPC_User
    Hope this helps in resolving your issue.
    Regards,
    Poonam

  • Please check the code reg mail implementation and give guide lines to me

    Hi experts
    I written some code for implementing the mail in webdynpro using java mail API,i did not get the out put ,Is any configuration i have to do in webdynpro or WAS
    Can any body review my code and tell me where i mistaken in the implementation .Is there any thing i want to configure .Here with i am sending my code in the action of Send button
    public void onActionSendMail(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionSendMail(ServerEvent)
        // get the values entered by the user  in the form
        try{
        String toAddress=wdContext.currentContextElement().getTo();
        String ccAddress=wdContext.currentContextElement().getCC();
        String bccAddress=wdContext.currentContextElement().getBCC();
        String subject=wdContext.currentContextElement().getSubject();
        String messageBody=wdContext.currentContextElement().getMessage();
        //set the properties of host and port no
        Properties p = new Properties();
        p.put("mail.transport.protocol","smtp");
        p.put("mail.smtp.host","12.38.145.108");
         p.put("mail.smtp.port","25");
         //get the session object or connection to the mail server or host
         Session sess=Session.getDefaultInstance(p,null);
         //create a MimeMessage and add recipients
         MimeMessage message = new MimeMessage(sess);
         if(toAddress !=null && toAddress.length()>0){
              message.addRecipient(Message.RecipientType.TO, new InternetAddress(toAddress));
         }else
              wdComponentAPI.getMessageManager().reportSuccess("Please Enter the To Address");
         if(bccAddress !=null && bccAddress.length()>0)
         message.addRecipient(Message.RecipientType.BCC, new InternetAddress(bccAddress));
         if(ccAddress !=null && ccAddress.length()>0)
         message.addRecipient(Message.RecipientType.CC, new InternetAddress(ccAddress));
        if(subject!=null && subject.length()>0)
         message.setSubject(subject);
         message.setFrom(new InternetAddress("[email protected]"));
         if((messageBody!=null) && (messageBody.length()>0))
              message.setContent(messageBody,"text/plain");
         }else
              message.setContent("","text/plain"); 
         Transport.send(message);
        catch(Exception e)
             e.printStackTrace();
    Please mail to :  [email protected]
    Thanks and regards
    kalyan

    Hi Venkat,
       The code seems ok to me. you don't need to configure WAS to use JavaMail APIs. However, if this code doesnot work then check with the code given below as this is working fine.
    Properties prop = new Properties();
              prop.put("mail.smtp.host", host);
              prop.put("mail.smtp.auth", "false");
              Session session = Session.getInstance(prop, null);
              session.setDebug(true);
              try {
                   MimeMessage msg = new MimeMessage(session);
                   msg.setFrom(new InternetAddress(from));
                   InternetAddress[] address =
                        { new InternetAddress(to1)};
                   msg.setRecipients(Message.RecipientType.TO, address);
                   msg.setSubject(subject);
                   msg.setSentDate(new Date());
                   MimeBodyPart msg1Body = new MimeBodyPart();
                   msg1Body.setText(msg1);
                   MimeBodyPart msg2Body = new MimeBodyPart();
                   msg2Body.setText(msg2);
                   Multipart mp = new MimeMultipart();
                   mp.addBodyPart(msg1Body);
                   mp.addBodyPart(msg2Body);
                   msg.setContent(mp);
                   Transport.send(msg);
              } catch (AddressException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                   System.out.print("AddressException : " + e.getMessage());
              } catch (MessagingException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                   System.out.print("MessagingException : " + e.getMessage());
              } catch (Exception e) {
                   System.out.print("Exception : " + e.getMessage());
    where host is 12.38.145.108 in your case. May be you chk if your mail server  is using another port. 25 is the default port for the smtp. This may be the case that your code is not working.
    Regards:
    Abhinav Sharma
    PS : Do reward points if it helps

  • Help on Oracle Installed implementation and usage

    hi all,
    I need some help/documentations on oracle installed base implementation and usage. Is there any users guide available for this module.
    Thanks in anticipation.
    Regards,
    Girish.

    Hi,
    It is available in Oracle documentation CD.
    Thanks,
    Rizwan

  • Setup Central System Administratin and Setup System Monitoring grayed out

    When trying to setup Central Sytem Administration and System Monitoring via SOLUTION_MANAGER.>Operations Setup->Solution Monitoring->Setup Central System Administration (or Setup System Monitoring).  The link does not work.  However, Setup Earlywatch Alert link works (in Operations Setup->Solution Monitoring->Setup Earlywatch Alert).
    We have just brought SolMan 4.0 up to SolMan 7.0 (applied support packs up to 16).  I am not sure if I am missing a step to activate this functionality; or if perhaps I have an authorization issue.  I have been through the Security Guid for SAP Solution Manager 7.0 as of SP16, and have reviewed note 834534 and been assigned authorizations accordingly....with one exception:  In note 834534, page 4, it states that the configuration user should have SAP_ALL.  However, I am getting push-back from IT Governance and my request for SAP_ALL is being rejected. 
    We have installed software components, in particular ST (Release 400, level 17); ST-SER (700_2008_1, Level 004; and ST-PI (2005_1_700 Level 18); of which I believe ST-SER is key.
    Has anyone encountered this issue?

    Hi,
    Yes, This could be an authorization issue.
    You are able to Setup Early Watch Alert because you may have the role
    SAP_SETUP_DSWP_EWA (full authorization for EarlyWatch Alert setup).
    Assign these roles, you wil be able to setup System Monitoring and Administration.
    1. SAP_SV_SOLUTION_MANAGER (full authorization for all sessions)
    2. SAP_SETUP_DSWP (full authorization for all setup sessions)
    3. SAP_SETUP_DSWP_SM (full authorization for System Monitoring setup)
    4. SAP_SETUP_DSWP_CSA (full authorization for Central System Administration setup)
    5. SAP_SETUP_DSWP_SLR (full authorization for Service Level Report setup)
    Also check these roles:
    SAP_OP_DSWP (full authorization for all Operations sessions)
    SAP_OP_DSWP_EWA (full authorization for EarlyWatch Alert operations)
    SAP_OP_DSWP_SM (full authorization for System Monitoring Operations)
    SAP_OP_DSWP_CSA (full authorization for Central System Administration operations)
    SAP_OP_DSWP_SLR (full authorization for Service Level Report Operations)
    This is the authorization object D_SOL_VIEW  used in these roles.
    Regards,
    Sanjai

  • Location for Unifier 9.9.1 installer and installation Guides

    Hi,
    I am not able to find unifier 9.9.1 installer and related documentation like installation guide for udesigner,unifier and administration guide,user guides either in Oracle Edelivery  or pathes & Updates in oracle support. Can you anyone please gude to the location from where I can download Unifier 9.9.1 installer and all related documents Please
    With Regards
    Goutom

    Hi Goutom,
    The unifier 9.1.1 install document... Installation and Configuration Documentation
    Reference ..Primavera Unifier 9.11 Online Documentation Library
    The software can be download from http://edelivery.oracle.com
    Regards
    Ming

  • Configuration and customization guides for ESS/MSS(webdynpro Java) in EP 7

    Hi All,
    Can anybody help me by providing the guides for Configuration and Customization of ESS/MSS(webdynpro java) in EP 7.0?
    Thanks in advance.
    Regards,
    Shankar

    Hi,
    Please check the links for help
    https://www.sdn.sap.com/irj/scn/wiki?path=/pages/viewpage.action%3fpageid=31476
    Configuring ESS in SAP Enterprise Portal 6.0
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/21eb036a-0a01-0010-25a3-b2224432640a
    General Settings for Self-Service Applications
    Configuring MSS on Portal 6.0
    Implementation and Configuration guide for ESS into Portal,Backend R/3 4.7C
    Regards
    Santosh

  • Oracle Application System Administration Guide

    Hi,
    where can I download Oracle Application System Administration Guide ?
    Many thanks.

    To find documentation libraries for all Oracle product families, go to the OTN main page and click Documentation in the top menu (or use the drop down to go directly).
    http://www.oracle.com/technology/index.html
    The Documentation link will lead to documentation home page with groups per product family (Database, AS, DS, etc.). Click on the link for your release version of Application Server family to get the links to corresponding docu libraries.
    The general docu library should contain admin guides etc.
    Tahiti site is also a good collection.
    http://tahiti.oracle.com/

  • Oracle Web Cache Administration and Deployment Guide

    Does anyone know where the Oracle Web Cache Administration and Deployment Guide is?
    From Oracle9iAS Documentation Library CD-ROM,
    it says this document is in OTN. However, I just can't find this document in OTN.
    Any idea?

    Rick -
    try this link on for size:
    http://technet.oracle.com/docs/products/ias/doc_library/1022doc_otn/caching.102/a90372/toc.htm
    To get to the (iAS documentation, try this path through technet
    Top Level
    -> click documentation link on RHS
    -> click Oracle9i Application Server link
    -> click Generic Documentation Library link (HTML) or (PDF)
    That should get you to the documentation library, from which you can view all the component doc, install guides, performance guides, etc.
    null

  • Oracle hyperion finance system download and software study

    Hello
    This is ami. I am a student. As part of study we need to study Oracle Hyperion Finance System....
    I am looking oracel web-site all over place..not getting a way to download / order sample cd-dvd.
    Also, I can't find any documentation explaining how this front-end is desiigned,,..what are software used to make front end
    what is backend db...as developer what i need to study ..if i want to be Oracle Hyperion System developer...
    Also, There is no any tech. document telling what is technology behind it...how to make custom software..what are system requirment
    as a developer where i start..what i study...?
    If i am installing what will be front-end, what will be backend .....how to get trial cd/dvd for it...
    Please help me with this. I want to either download/ order trial dvd and study design as well as software detail too.
    Please reply to [email protected]
    Thanks
    Ami

    Hi Ami,
    I believe that in this address you will find many answers in your questions. The document refer to the previous version of the system.
    http://download.oracle.com/docs/cd/E10530_01/doc/index.htm
    Wish you good luck with your project.
    Regards
    Edited by: user19831002 on 12 Μαρ 2010 2:20 πμ

  • Oracle 11i System Administrator Certification

    Hi,
    Please advice which book or pdf doc would be appropriate for "Oracle 11i System Administrator Certification"?
    Please also advice if any question bank for practice.
    ANy experience sharing would be great.
    Thanks

    Both Transcender and SelfTestSoftware are the official and authorized providers of certification practice exams. If you could not find any practice material in their websites you can use "Oracle 11i System Administrator Fundamentals for 11i10 Self Study CD Course (Netg Oracle)" as an alternative. Self-Study CD-ROMs are an excellent tool to help you prepare for your exam. SSCDs reinforce the course material and allow you to focus on sections that you need to review. Note: the SSCDs do not count towards your course requirements for certification and should be used as a study aid only.
    Oracle 11i System Administrator Fundamentals for 11i10 Self Study CD Course (Netg Oracle)
    http://education.oracle.com/pls/web_prod-plq-dad/show_desc.redirect?dc=D42141

  • Question of SAP Methodology of Implementation esp. System Testing and Test Script

    Dear SAP Member,
    As a very new and inexperienced customer to the SAP and the business. My company is preparing for the retail shop establishment which part of the preparation includes SAP implementation.
    At first, we strongly believe SAP can fit and serve our business need well. Also, the standard methodology of implementation will be able to deliver the system with expected quality. However, the local implementor disappoint my firm with poor quality delivery and control that result in the perception of uncertainty of the system to be lived.
    The methodology proposed by the implementor composed with
    1) Preparation
    2) Blueprint
    3) Realization
    a) Program development and unit test by vendor
    b) Training
    4) Final Preparation
    a) Integration test by Users
    b) Data conversion preparation
    5) Go-Live and Support
    My problem comes up with phase 4-5
    Problem 1: Unit/functional test performed by implementor . For this activities, how could customer ensure that every single function has been developed or implemented according to the requirement and without error?
    Problem 2: Vendor  provides slot for integration test for 7 days. Is it normal practice that test can be done within this short period?
    Problem 3: Does SAP methodology has the standard quality control, test enter and exit criteria and issue/incident management?
    Problem 4: How should the standard test script look like? What i received from implementor was like functional list rather than script.
    Problem 5: what should be step for conversion apart from the data preparation by users? The local implementor does not explain/elaborate the detailed activities.
    Last but not least, as the customer do not satisfy with the SAP partner (local implementor quality). What should be the process for feedback as to prevent other new customer to face the same problem?
    SK

    SK,
    Thamil has given his view.  Here is another.
    how could customer ensure that every single function has been developed or implemented according to the requirement and without error?
    If this is an issue to you, you can insist that members of your test team participate in unit testing.  You are, after all, the client, and it is your money being spent.  As long as you can furnish testers, who are competent to evaluate unit testing scenarios, you can have them work with the vendor during unit testing.
    Vendor  provides slot for integration test for 7 days. Is it normal practice that test can be done within this short period?
    It depends on what is being implemented.  I have seen implementations which contained over a hundred test scenarios and  over 2000 test scripts; each of which must be tested by multiple functional groups.  1 week is not enough to complete Integration testing in this case.
    Also remember that it is necessary to allow time to correct 'bugs' found during integration testing, and then to re-test after the bugs are fixed.  Except in the simplest of implementations, 1 week may not be enough to accommodate the bug fixes and retests.
    Does SAP methodology has the standard quality control, test enter and exit criteria and issue/incident management?
    Which 'SAP methodology' are you talking about?  Bottom line, the client must insist that the vendor incorporate any methodologies that are required for his business.  Don't assume that your vendor will automatically bring these items to the table, YOU may have to bring them to the table.
    How should the standard test script look like? What I received from implementer was like functional list rather than script.
    ?????  It should look like whatever you want it to look like.  Many companies have existing templates.  If your company doesn't have such a template, ask your vendor for one.  Go over it together with him and make appropriate modifications that meet your business requirements.
    what should be step for conversion apart from the data preparation by users? The local implementer does not explain/elaborate the detailed activities.
    It is impossible to say at the beginning of the project.  Sometime during realization, the client and the vendor will jointly develop a detailed cutover plan.  More importantly, the client will develop a change management plan for the client company, in which all stakeholders in the client company will come to understand how and when ALL of the client's business processes will need to change, and to develop plans for all affected groups.
    Best Regards,
    DB49

  • PMON process and ORACLE Instance  - Cannot allocate log. Archival required

    Hello there,
    We are running Oracle RAC (9i) database with two nodes and Oracle Applications 11i.The operatiing system is solaris 5.8.
    1.Recently while bouncing the db, i happen to see many PMON process get started up? is it a normal thing to see those process? what is actually happening?
    oracle 14125 1 1 05:02:36 ? 18:46 ora_p007_CMWPROD1
    oracle 14123 1 1 05:02:36 ? 21:33 ora_p006_CMWPROD1
    oracle 14117 1 3 05:02:34 ? 30:58 ora_p003_CMWPROD1
    oracle 14121 1 1 05:02:35 ? 18:56 ora_p005_CMWPROD1
    oracle 5230 1 0 21:45:54 ? 0:11 ora_qmn0_CMWPROD1
    oracle 5192 1 0 21:45:09 ? 0:07 ora_pmon_CMWPROD1
    oracle 5194 1 0 21:45:09 ? 1:37 ora_diag_CMWPROD1
    oracle 5196 1 0 21:45:09 ? 0:48 ora_lmon_CMWPROD1
    oracle 5198 1 0 21:45:09 ? 2:15 ora_lmd0_CMWPROD1
    oracle 5200 1 0 21:45:12 ? 7:51 ora_lms0_CMWPROD1
    oracle 5202 1 0 21:45:13 ? 7:59 ora_lms1_CMWPROD1
    oracle 5204 1 0 21:45:13 ? 0:06 ora_dbw0_CMWPROD1
    oracle 5206 1 0 21:45:13 ? 0:17 ora_lgwr_CMWPROD1
    oracle 5208 1 0 21:45:13 ? 0:53 ora_ckpt_CMWPROD1
    oracle 5210 1 0 21:45:13 ? 0:11 ora_smon_CMWPROD1
    oracle 5212 1 0 21:45:13 ? 0:00 ora_reco_CMWPROD1
    oracle 5214 1 0 21:45:13 ? 0:06 ora_cjq0_CMWPROD1
    oracle 5218 1 0 21:45:13 ? 0:00 ora_arc0_CMWPROD1
    oracle 5220 1 0 21:45:13 ? 0:05 ora_arc1_CMWPROD1
    oracle 5223 1 0 21:45:17 ? 0:17 ora_lck0_CMWPROD1
    oracle 14113 1 1 05:02:33 ? 5:30 ora_p002_CMWPROD1
    oracle 14109 1 0 05:02:33 ? 5:14 ora_p000_CMWPROD1
    oracle 14119 1 1 05:02:34 ? 21:03 ora_p004_CMWPROD1
    oracle 14111 1 1 05:02:33 ? 6:12 ora_p001_CMWPROD1
    2.We happen to see some notifications like
    "Oracle instance <xxx> - cannot allocate log -Archival required" in the alert log file and could see many log switches in a second in archival destination.
    we have three members of log groups (two in each group) in one node and same on the other. Should we have to increase log_buffer_size or addition of redo log files is required?
    the error messages:
    ORACLE Instance xxxx - Can not allocate log, archival required
    ARCH: Connecting to console port...
    Thread 2 cannot allocate new log, sequence 55487
    All online logs needed archiving
    Current log# 12 seq# 55486 mem# 0: /dev/vx/rdsk/racdg/log12a
    Current log# 12 seq# 55486 mem# 1: /dev/vx/rdsk/racdg/log12b
    Fri Oct 10 21:47:45 2008
    Completed checkpoint up to RBA [0xd8be.2.10], SCN: 0x0000.e6dcbc2a
    Fri Oct 10 21:47:49 2008
    ARC0: Completed archiving log 7 thread 2 sequence 55482
    ARC0: Evaluating archive log 10 thread 2 sequence 55480
    ARC0: Unable to archive log 10 thread 2 sequence 55480
    Log actively being archived by another process
    ARC0: Evaluating archive log 9 thread 2 sequence 55483
    ARC0: Beginning to archive log 9 thread 2 sequence 55483
    Any suggestions to overcome these errors would be helpful.
    Thanks,
    Balu.

    Tux Dueñas wrote:
    Bueno.
    A nosotros nos apasado el error de que no se puede guardar los archive logs por falta de espacio en Disco. Eso pasa cuando algun proceso genera demasiadas ransacciones que necesitan ser escritas en los logs. Por esa razon se genera mucho archive log y se llena el espacio en disco.
    Borra los archivelog mas viejos, y que ya los tengas en un backup y asi no habra problema te recomiendo tener un espacio en disco minimo de 50%I hope this is what you meant,
    >
    We apas the error that you can not save the archive logs for lack of space on disk. That happens when any process that generates too many ransacciones need to be written in the logs. For that reason much archive log is generated and fills the space.
    Removes archivelog older, and those who already have a backup and there will be no problem so I recommend you have a disk space minimum of 50%
    >
    This is an international forum so to spread your message as far as possible, use a more universal language, English for example can be a good choice.
    Cheers
    Aman....

Maybe you are looking for

  • How to delete masters from within Aperture

    Hi all, I have searched the discussion forums for this one, with no luck.  What I want to do is import say 500 images from a shoot, and review them in Aperture.   I will delete 200-300 of them.  I'd like to look at them in Aperture, and if I don't li

  • How to add appointment in calendar list view

    How do I add an appointment to my calendar list view now?  I used it constantly and I know to touch the magnifying glass to find the list view, but I need to be able to add my appointments too.  Is there a setting to change?  Thank you.

  • Error Message "iPod can not be updated.." but works after clicking away msg

    Hi! I have installed an German iTunes 6.0.4.2. and the newes IPod Software under WinXP. After clicking " iPod Aktualisieren" I get the following message: Der iPod "xxx" kann nicht aktualisiert werden. Ein unbekannter Fehler ist aufgetreten (-39). Tra

  • TSV_TNEW_PAGE_ALLOC_FAILED dump in WDBU: Assortment listing

    Hi all, when my SD consultants are executing WDBU either in background or foreground  we are getting dump: TSV_TNEW_PAGE_ALLOC_FAILED details are as follows: No more storage space available for extending an internal table. Error anslysis The internal

  • HT204088 How do I request a refund

    I was charged for the yearly iCloud extra storage and I am trying to request a refund within the 14 days allowed. How do I submit my request?