Oracle's comprehensive guidelines for setting up a development environment

i have a Sun Blade with Solaris/Oracle 8.1.7 installed on it. an
application software is also housed on this box and uses the
Oracle instance. i would additionally like to do 3-tier
development on this Oracle instance. i have never done database
administration before. what would be a good source of
documentation for me to use as a guideline as i set out to build
up an Oracle development enviornment ? we have about 8
developers and various small applications and will develop in
Java, EJB-s etc..
thanks.

WILL SOMEONE PLEASE REPLY TO THIS ???

Similar Messages

  • Guidelines for setting Application Module Pool Size Parameters?

    Are there guidelines for setting the application module pool size parameters, such as initial pool size, maximum pool size, etc., based on the expected number of users or other factors? I've read the developer guide sections (ch 28-29), but still don't have a good feel for how to correctly set the optimal values for the pool configuration parameters? Even more importanty, how do I monitor the pool's efficiency during runtime to determine if the pooling parameters are configured correctly?
    This will be critical to performance and scalability, so I'm looking for a way to get some visibility into how the pooling is working during production operation to assess whether there are bottlenecks/constraints/ineffeciencies?
    Note I am using Tomcat as the java runtime container; ADF BC / JSF jdev 10.1.3.1
    Thanks in advance and Merry Christmas!

    KUBA - were you able to resolve these issues and if so are there any lessons learned you can share?
    I'm hoping someone from the ADF team can answer our original question including guidelines for setting pool parameters and how to monitor the pool's performance while running in production.
    thanks

  • Setting Up Shared Development Environment

    Is there any diagrams, white papers, guides or best practices on setting up the J-Developer and connecting to shared Services and database? The Developer guide (E10148.pdf) does not really cover what the standards is or the overall infrastructure of the JDeveloper and setting up a Shared Developer enviroment.
    I looking for something like http://docs.oracle.com/cd/E25178_01/fusionapps.1111/e15524/gs_install_e.htm but for (11.1.1.6.0) version webcenter.
    I basically looking for something to help me get our Shared Development Environment setup with Jdeveloper.

    The issue is connecting the Jdeveloper to the WebCenter DS and Activity DS schemas. In the Development guide it says I need to connect to these schemas to be able to utilize several of the WebCenter Services, ( http://docs.oracle.com/cd/E21764_01/webcenter.1111/e10148/jpsdg_svc_intro.htm#BHCDJHAI - 7.2.2 Setting Up a Database Connection
    We are trying to set up the connection to our shared development environment database. Our database group is concerned with giving developers access to these schemas. They are concerned that JDeveloper will changes or modify the schema and cause the database to fail. They created a account with read only access but we are not sure it this will work.
    I been trying to find anything in the documentation to find what access JDeveloper needs to the WebCenter DS and Activity DS schemas and if JDeveloper can modify these schema in any way.
    Additionally try to find anything on the best practices on connecting to a shared database and setting up a Development environment and its connection to Jdeveloper .

  • ISupplier - Setting up the Development Environment with JDeveloper 9.0.3

    Hi friends,
    Can you please tell me the steps involved in setting up the development environment for iSupplier Module with JDeveloper in my PC.
    Please give me the details about what are the files to be downloaded from Apps, folder structure for development environment etc...
    Gurus please reply ASAP.
    Thanks,
    San

    You should better pick the class files from the JAVA_TOP appropraite to that product and add it to either myclasses in your project in jdev or add it to the classpath.
    Once you have these required files then you can launch the pages by either using a test.jsp or use the xml files directly if you know what parameters to pass. I would suggest you to use a test.jsp and launch the first page in the flow which launches from the menu - function by picking it's web_html_call.

  • Best practices for Full fledged CQ5 Development environment

    Hi All,
    I  am working on CQ5.5. The following environemnt we areusing for development.
    CRXDELite < - >  Eclipse Java Content Repository Perspective < - > VLT Check-in/Check out <-> J2EE Perspective <-> SVN
    CRXDELite, Eclipse Java Content Repository Perspective  ----> component/template creation (mainly jsp coding)
    J2EE Perspective  ----> Java servlet coding (mainly java coding)
    VLT Check-in/Check out  ----> For moving the data from/to J2EE Perspsective from/to CRXDELite
    SVN  -----> Versioning from J2EE Perspective
    is there any other possible way for a full fledged development environment using eclipse?
    If you are using any other pluging/best prctices kindly let know.
    It will be really helpful.
    Regards,
    Raja R

    Hi,
    we have a similar setup as the described but uses VLT mostly without CRXDE. Most of our developers uses other tools do develop, such as IDEA/IntelliJ for OSGi development and script development. We have also choosen to use the CQ Blueprint Maven Artifacts (http://www.cqblueprints.com/xwiki/bin/view/Blue+Prints/The+CQ+Project+Maven+Archetype) and separate our different parts of the sites in modules and use Maven to build and deliver packages.
    If you are not forced by policies to use SVN, I would advice you to use Git instead.

  • A small wrapper script for setting the lib32-gtk environment.

    Hi all,
    i've created a small script [1], which sets the gtk2 environment for
    lib32 applications.
    Thanks to buttons and alexwizard...
    just put run_bin32_gtk before the app command.
    I use this script for QT4 apps mostly, for instance:
    run_bin32_gtk opera
    or
    run_bin32_gtk skype --disable-cleanlooks
    so it fits best in my gnome environment...
    best wishes
    [1] http://aur.archlinux.org/packages.php?ID=27419

    I did something similar a couple of months ago, but instead of attempting to be clever and guessing what the background image is supposed to be, I just write it in the filename. Since some pictures just end up being too bright (or whatever) when used as a background to a urxvt terminal, I added some extra parameters for setting gamma, brightness, tint and the direction the image should be rendered. It relies on hsetroot for actually rendering the picture.
    #!/usr/bin/python
    # set-background
    import sys, os, string, re
    patterns = [ (re.compile("t-([a-f\d]+)"), lambda x: "-tint \#" + x)
    , (re.compile("b-([\d]+)"), lambda x: "-brightness -0." + x)
    , (re.compile("g-([\d]+)"), lambda x: "-gamma "+ x)
    , (re.compile("f-(v|h|d)"), lambda x: "-flip" + x)
    def buildCommand(file):
    output = ["hsetroot"]
    output.append("-" + (string.split(file,".")[-2]))
    output.append(file)
    for token in string.split(file,".")[1:-2]:
    for (pat,f) in patterns:
    if pat.match(token):
    output.append( f(pat.findall(token)[0]))
    return string.join(output)
    print buildCommand(img)
    os.system(buildCommand(img))
    # vim:set et:
    So for instance, an image with the name background.t-704214.f-v.full.jpg would be rendered as a stretched image, flipped vertically with a sepia tint. The files are required to be in the following format NAME.(MODIFIER.)*TYPE.SUFFIX, where the the order and number of modifiers are unimportant. The gamma values are somewhat unintuitive, but I guess you'll just have to play around with it to get it right.
    And to randomize the whole thing, I just used the following script in my .xinitrc to randomly pick a image from a folder.
    #!/bin/bash
    bg_folder="$HOME/.backgrounds";
    pics=($(ls $bg_folder))
    let "n = $RANDOM % ${#pics[@]}"
    (cd $bg_folder; set-background ${pics[$n]})

  • What role for "set to 'in development'"

    In CRM_DNO_MONITOR, in the action list, I do not see the item called
    "set to 'in development'"
    What I have are "recheck correction" and "withdraw correction".
    Maybe it is a missing role?
    Please help. Thanks a lot!

    Thanks!
    Yes, there is an error:
    No processing is planned for this message
    Message no. CRM_MESSAGES011
    Diagnosis
    You want to postprocess an error message, which is not maintained for postprocessing.
    This could be because there is a follow-up error, which automatically disappears when the other errors for the document are removed.
    The long text for the error message possibly contains more information. You can look at this, by pressing the help icon in the message line.
    But how to fix it?
    Please help. Thanks!

  • Setting up the development environment

    hi,
    can anybody suggest the best way to set up the weblogic server
    development environment.
    we are a group of 5 EJB developers working on weblogic 7.0.
    (evaluation version)
    each one is developing ejbs which has to interact with other
    developer's beans.
    each one has installed the server on their own m/c. for developing and
    testing the beans.
    Once done, integration of the ejbs is done on another server and
    tested.
    should we use a single server for development? but that may lead to
    shutdown/ restart of the server frequently during testing and affect
    the other developer's work.
    anybody please suggest a better way.
    thanks in advance.
    anil

    On Tue, 05 Nov 2002 21:55:11 +0000, anil wrote:
    hi,
    can anybody suggest the best way to set up the weblogic server
    development environment.
    we are a group of 5 EJB developers working on weblogic 7.0.
    (evaluation version)
    each one is developing ejbs which has to interact with other
    developer's beans.
    each one has installed the server on their own m/c. for developing and
    testing the beans.
    Once done, integration of the ejbs is done on another server and
    tested.
    should we use a single server for development? but that may lead to
    shutdown/ restart of the server frequently during testing and affect
    the other developer's work.
    anybody please suggest a better way.
    thanks in advance.
    anilYour milleage may vary from others, here we had this environment setup for
    a 7 people developing WLS applications:
    - Single server for development (Sun Solaris box)
    - using remote telnet from Windows workstation/linux workstation
    - create a source code repository (e.g. CVS) for source code control and
    user workspace
    - create standard deployment descriptor with modular directory structures
    - system admin only allowed to startup and shutdown server
    - server running in "Development Mode" for hotdeploy and avoid shutdown
    and restart.
    Thank you,
    Neo Gigs
    "Follow the white rabbit..."

  • Are there guidelines for setting up a secondary central administration?

    We created a multiple server SP 2010 farm to have some redundancy.
    One of the things I am trying to figure out is how to set up a second central admin in case the server on which central admin resides has to be taken down for repair.
    Is this functionality even possible?
    If not, then I won't bother with it right now.
    But if it is, I want to get things set up to handle this case.
    Thank you so much for sharing your experience.

    Yes, it is possible. Refer to the following post for more information
    http://blog.fpweb.net/how-to-run-sharepoint-central-admin-on-two-servers/#.VFhZyPmUcsY
    http://www.mssharepointtips.com/tip.asp?id=1006
    Cheers,

  • Facing Issue while Installing SOA server for setting up BPM11g working environment

    Hi All,
    I have been able to install Database and Weblogic Server but I am facing issue in installing SOA server.
    I am trying to install it for running BPM 11g application.
    I saw the same problem has already been answered but available solutions are not resolving my problem.
    Error Message:Provide the JDK/JRE location while launching the installer.Invoke the setup.exe with -jreLoc<JDK/JRE location absolute path>parameter(s).
    I tried both way for initializing the installation. i.e directly through setup.exe and by command prompt but in both the cases I am getting same error.
    It is not asking for Java path in command prompt also.
    a)In my system java 7 is installed.
    b)I have used Oracle Database 11g instead of XE
    Can this be the reason?
    I checked Program Files:
    jre7 and jdk1.7.0_45 are there.
    I also have set JAVA_HOME in environment variable as C:\Program Files\java\jre7
    path :C:\Program Files\java\jdk1.7.0_45\bin
    Please help me in fixing this as I am stuck in this installation from last few days.
    Thanks!

    Hi Binay,
    You might want to consider instead installing it using JDK 1.6.
    Here's where you can check the Fusion Middleware configurations:  http://www.oracle.com/technetwork/middleware/downloads/fmw-11gr1certmatrix.xls
    It's buried in there, but bottom line is that Oracle BPM 11g (PS6) 11.1.1.7 needs JDK 1.6 (for Windows it is either JDK 1.6.0_35 or JRockit 6 Update 37 R28.2.5+) and I'd suggest you use JRockit.
    Dan

  • David Powers' tutorial, "Setting up CF development environment for DW"

    I left this comment for Mr. Powers at the end of his tutorial and was advised to post here by the Moderator:
    I had no problems until the very end:  can’t display the final page in Live View or in any browser.
    One anomaly in the CF installation:  Adobe strongly advises running the CF 9.0.1 update [ http://kb2.adobe.com/cps/849/cpsid_84973.html ].  I ran this update after completing your installation procedure and before “Setting up in DW” for the Mac.  The “Update successfully installed” window included the following message:
    “SolR server has been upgraded. Re-index all the collections.”
    Having no idea what that meant, I proceeded to create the CF site in DW.  No variations from your text until Item #9, “Create a ColdFusion data source”:  my text box was labeled “Database FOLDER,” not “Database File” per your tutorial.  
    Where did I go wrong?
    Mac Pro Intel, OS 10.6.7, MAMP installed but not running at the time.
    Can anyone here help me?

    ilssac wrote:
    WolfWB wrote:
     Where did I go wrong?
    Not nearly enough of the CORRECT information here to provide any sensible help.
    Code snippet (small, but relevant sample code showing the problem.... not entire page dumps)
    Description of expected results
    Description of actual results, including error messages if relevant.
    Description of why the actual results are not correct if it is not clear to the casual observer.
    WolfWB wrote:  “SolR server has been upgraded. Re-index all the collections.”
    SOLR is a text search engine that is included with ColdFusion to provide, you know, text searching capability.  When you upgraded to the newer version of CF, that included upgrades to the SOLR engine which would have invalidated any text search indexes previously created.  So you would need to re-index the text collections to recreate those indexes.
    If none of that makes ANY sense to you, then you most likely have NO text Collections with NO indexes for those collections and thus have NOTHING to re-index so that message PROBABLY had NO relevance to any issues you are experiencing.
    First, thank you for trying to help, ilssac!  I apologize for the frustration I caused, but this was my first encounter with CF;  I'd installed it purely to get through a Dreamweaver tutorial.  Second, I haven't a clue about where to collect a code snippet to send you.  Providing a link to the tutorial and pointing you to the very last instructions are the best I can do:  start at the subhead, "Create a ColdFusion data source," steps #1 through #13 and Figures #22 and #23.  The expected result is a correct DW Live View display of the HTML page populated with data drawn from a database (Fig. #23)  instead of the "dynamic text objects" (Fig. #22).
    Regarding the SolR, you're undoubtedly right about nothing having been created in CF, ergo nothing to re-index.
    FYI, the original CF installation was on my Mac Pro.  I did exactly the same installation -- in exactly the same way (per the tutorial) -- on my MacBook Pro, and got the same result.  The tutorial predates the 9.0.1 upgrade which looks to me, the absolute CF novice, like the source of the problem.  I'd still like to get it to work, if only to justify the time I've put in!

  • Oracle 8i Personal Install corrupts Sun Java 2 development environment

    I encountered no errors during installation of Oracle 8i Personal for Windows/NT; and the sample database appears fully functional.
    However, the Sun Java 2 development kit (JDK 1.2) that I use for other projects is no longer functional. The registry appears to have been corrupted by the Oracle 8i installation. Now, whenever I attempt to run a Java 2 program I encounter the error:
    "Registry key 'Software\JavaSoft\Java Runtime Environment\CurrentVersion'
    has value '1.1', but '1.2' is required."
    Does anyone have suggestions on how to cure this problem?
    null

    Although I installed 8i Lite rather than personal Oracle 8, my experience was unlike yours. My jdk2 never stopped working - although, when I think about it, I did have to immediately fix a bunch of problems I visually detected after the install.
    After the installation, my Registry (on Win95) remained set correctly to version 1.2 of the javasoft runtime environment.
    My autoexec.bat file however was badly trashed by the installer - my multiple classpath statements were all combined into one monolith at the end.
    I hate products that silently overwrite carefully crafted key system files with no prior warning and no automatic backup process.
    After an hour or two recovering the autoexec and setting environment variables for jdk 1.2, everything is fine with my jdk setup.
    In the NT world, I can't help you with recovering your jdk2 environment. However, I'd check your environment settings on NT very carefully to ensure the installer hasn't wreaked havoc with them.
    You can also try re-installing the jdk2 run time environment from sun's web site.
    Good luck.

  • Error Setting Up OAF Development Environment

    Hi All,
    I encounter the following error when try to run test_fwktoturial.jsp
    I m using "Jdeveloper with OAF Extension from Patch 4141787" and RDBMS : 9.2.0.5.0
    Oracle Applications : 11.5.10
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: SQL_PLSQL_ERROR. Tokens: ROUTINE = Profiles.getProfileOption; REASON = java.sql.SQLException: ORA-00904: "SERVERRESP_ENABLED_FLAG": invalid identifier
    Pls Advise.
    Thank You.

    Can you check that the server id in your DBC file and the one in fnd_nodes and fnd applicationservers match
    regards
    Tapash

  • Help required to set up  mobile development environment

    Hi All,
    I have downloaded - SAP Mobile Development Kit
    (MDK NW04 SPS19 and NW 7.0 -approx size 20 MB) - available in SDN and added the plugins present in it to  NWDS so that the Mobile Infrastructure Perspective is now preeent in NWDS.
    My desktop has only NWDS IDE and no WAS server installed.I deploy by connecting to WAS Server  remotely.I have Nokia S80_DP2_0_SDK Mobile simulator.
    Before I can make a project the IDE says I  have to configure - Tomcat Runtime.
    I want to make a simple" hello world " project for now with no backend system  for data or  data sync features f.
    Do I have to install Tomcat  seperately for this or is it already present in the MDK 
    If already present -  how to configure it ?
    Also if not present - is there some other MDK present in marketplace - which i should  instead download?

    Hi Vivek,
      Tomcat runtime environment is not available in MDK plugin, if you want to run the simple hello world mobile application then you need to have MI Client which in turn will have Tomcat runtime.
    Please refer to  doc <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/21eba3a7-0601-0010-b982-92f1fca3258a">MDK</a>  reg the NWDS setup and development of mobile application.

  • Disk Space for PSoft Development Environment?

    Can anyone tell me the approximate amount of disk space needed for an HRMS PSoft Development Environment?
    I'm looking to create a standalone environment on one computer (no separate server), and am looking for sizing of HRMS application (8.9 or 9.0) + demo database + Oracle database + PTools + app server + web server + db server + process scheduler + PeopleBooks.
    I know there are other issues, e.g. supported OS and how to get this set up, but right now I just need sizing for the basics above (have I forgotten anything?).
    Thanks.
    Mike

    You should check your mailbox.
    And also Re: Install PeopleSoft (PeopleTools 8.49, FIN) on 40GB laptop?!.
    Nicolas.

Maybe you are looking for

  • Bank Details FF Creation

    Hi All I am trying to create my own Bank Details FF and then incorporate it in the Payment Method. Some of my collegues say we can't create a Bank Details FF of our Own for the Payroll where as some says we can create. So, i am bit Confused. Please s

  • Mappings with custom input parameter.

    We are using PL/SQL wrappers to execute all the OWB 10G (10.1.0.4) mappings. How do we call a mapping in the wrapper which has a input mapping parameter.? We use the sql exec template in a procedure.

  • Please help!! Newbie here really need help. Numlock, divers, backup, recovery disk

    Hi everyone I finally found where to post I really wish someone could or would help me I have a lenovo g550 for about 4-5 years And I was happy with it few days go I cleaned installed windows Ii got a friend to help infests he put it on the d drive t

  • This is a strange question but......

    I am in a band called Sound Station (www.soundstationhome.com). We have a new CD that we want to call iPodable.... the question is, will Apple not like that?? We don't want to get sued or get Apple mad at us. I thought that it would be okay because w

  • Orgamize bookmarks is no longer available to me in the bookmarks menu

    orgaNize bookmarks has not been visible to me in any version of 4Beta.