I'm a new Oracle Developer, need a Documentation

Hi all,
Can you send me a link with a documentation about Oracle Database (Basics concepts, Stored Procedure and Triggers).
I'm a dba Sql Server but a want to migrate.
Tks,
Mura

http://www.oracle.com/technology/documentation/index.html

Similar Messages

  • [ANN] New Oracle Developer Days Dates and Locations

    New dates for the Oracle Developer Days.
    These include J2EE training as well.
    Look for a location near you:
    http://www.oracle.com/go/?&Src=1587968&Act=43

    Here is a list of the location currently planed:
    Bellevue, Web Services Jan 20-21
    Redwood Shores, Best Practices for J2EE Development Jan 27
    Redwood Shores, Web Services Jan 28-29
    Oklahoma City, Introduction to J2EE Feb 2
    Oklahoma City, Best Practices for J2EE Development Feb 3
    Oklahoma City, Web Services Feb 4
    Oklahoma City, Web Services Feb 5
    Cincinnati, Introduction to J2EE Feb 9
    Cincinnati, Best Practices for J2EE Development Feb 10
    Cincinnati, Web Services Feb 11
    Cincinnati, Web Services Feb 12
    Orlando, Introduction to J2EE Feb 23
    Orlando, Best Practices for J2EE Development Feb 24
    Orlando, Web Services Feb 25
    Orlando, Web Services Feb 26
    There are other topics covered as well.

  • New Oracle Developer Days coming  to your town

    A new schedule for the Oracle Developer Days is out on OTN. These are technical workshops on the latest Oracle technologies. They are FREE!!
    4 new venues for the Oracle Forms Upgrade to the Web session:
    Calgary, Alberta June 18, 2003
    Denver, CO June 27, 2003
    Vancouver, British Columbia July 17, 2003
    Detroit, MI July 8, 2003
    Register for Free at:
    http://otn.oracle.com/events/otnworkshop/forms.html
    Please Join us.

    Where are you located?
    We have run some of these in Europe and APAC as well.
    And we are planning to run more of these.
    Please let your local Oracle contact person that you will like to have this event in your location. The more people request it, the bigger the chances we will do one in your area.

  • New Oracle Development Special Interest Group launching in London

    For any UK developers on the list, the UKOUG are launching an Oracle Development SIG on the 27th October which will have customers, an Oracle ACE Director and Oracle Development speaking about, amongst other things, JDeveloper and Oracle ADF experiences.
    The full agenda is published here. If you are based in the UK (or can travel to the UK) it may be a good opportunity to learn about ADF experiences as well as network with some of the people you meet on these forums.
    Regards
    Grant

    Bump

  • Oracle developer needs Java help

    I develop applications in Oracle 8i on NT4. As part of a trigger, I need to perform an update to an extremely large table which takes many minutes. Because it's tied to a web page, I can't wait for the update to complete. Oracle natively doesn't support system calls -- I use the Shell() command in VB -- but Oracle DOES support Java stored procedures. I'm hoping that a Java stored procedure will be able to spawn/execute a new process/program specified by a command line instruction (ie: "C:\SQLPLUS.EXE SCOTT/TIGER @update.sql") and return immediately - without waiting for the process to complete. There doesn't need to be any handle for or call back from the process - just fire and forget. Can anyone provide me some direction, or better some existing Java code that does this? THANKS!

    Hi "todmcg",
    I'm not sure that I have understood your question correctly, but here goes anyway...
    Yes you can create a java stored procedure and have a trigger execute that procedure. In order to execute system commands in java, you usually use the "exec()" method of class "java.lang.Runtime". It is also easy to spawn new threads using java. So yes, you can have your java stored procedure execute a system command in a background thread.
    In my opinion, the Oracle documentation explains very well how to create a java stored procedure. The documentation is available from:
    http://tahiti.oracle.com
    Also, examples of how to call system commands from java stored procedures are available at this Web site:
    http://asktom.oracle.com
    You may also find relevant information at:
    http://metalink.oracle.com
    and
    http://technet.oracle.com
    Of-course, you can also use JDBC from your java stored procedure to execute your "update.sql" script -- without the need to execute a system command.
    Basic code skeleton:
    [NOTE: Untested and may contain syntax errors.]
    public class SystemCommand implements Runnable {
      private static String cmd;
      public void run() {
        Runtime runtime = Runtime.getRuntime();
        runtime.exec(cmd);
      public static void execCommand(String cmd) {
        this.cmd = cmd;
        new Thread(new SystemCommand()).start();
    }Hope this helps you.
    Good Luck,
    Avi.

  • New Oracle DBA - Need help with backup & restore procedure via RMAN

    Hello everyone,
    I've been a SQL Server DBA for 12 years now, but new to the Oracle space. My first assignment at work was to refresh our training environment with production. So with that said, I took a full backup of our production database via RMAN and backed up the Control File. I then copied both the Control File and full backup from our production environment to training. I followed the procedures listed in the URL below:
    http://www.dba-oracle.com/t_rman_clone+copy_database.htm
    I then connected to RMAN and executed a 'show all' which is as follows:
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    The CONFIGURE CONTROLFILE AUTOBACKUP was set to ON but received a message that the database needed to be mounted, so, I mounted the database and made the changes, but when I shutdown the database and performed the startup nomount again, the settings were gone. Are these settings valid only when the database is mounted? How can I successfully refresh this training environment with production data? I'm at a standstill here so any help would be very much appreciated.
    Thank you,
    Pete

    The CONFIGURE CONTROLFILE AUTOBACKUP was set to ON but received a message that the database needed to be mounted, so, I mounted the database and made the changes, but when I shutdown the database and performed the startup nomount again, the settings were gone. These settings are persistent settings.So these information retain in control files.To reading information from control files database instance must be MOUNT or OPEN stage.Due to you have mount instance and try SHOW ALL command through RMAN.
    Are these settings valid only when the database is mounted? Not only MOUNT also OPEN stage.
    How can I successfully refresh this training environment with production data? I'm at a standstill here so any help would be very much appreciated.
    There are several ways like duplication.But you take full backup from production database using BACKUP DATABASE through rman.In this case you will get also AUTOBACKUP for controlfiles/spfiles.Then copy these backup files and all available archive logs to training server and perform below steps.
    1) You have set properly ORACLE_HOME and ORACLE_SID environment variable.After that first need restore spfile as
    rman target /
    startup force nomount;
    restore spfile from 'autobackup_location';
    startup force nomount;2) Now you have to restore controlfiie as
      rman>restore controlfile from  'autobackup_location';
    rman>alter database mount;
      3) Now need catalog(it means register) all backup files and archivelogs in new restored controlfile as
       rman>catalog start with 'backuplocation';
       4) Finally you can restore and recover your database as below
       rman>restore database;
    rman>recover database;
    rman>alter database open resetlogs;
       If you want restore database to new location then before executing RESTORE DATABASE command you can use SET NEWNAME FOR DATAFILE clause.Firstly refer backup recovery guide in online documentation.

  • New Oracle Development Special Interest Group launched in the UK

    For any UK based Oracle developers, a new SIG is being launched on the 27th October in London. Details of the agenda, speakers and topics posted on my blog.
    blog
    Edited by: Grant Ronald on Sep 17, 2009 9:47 AM

    bump

  • New Flex Developer needs advice...

    Hey guys. I'm currently working for my University as a Web
    Developer; when I first started a couple of months ago, I had no
    idea Flex even existed. So when I got hired, I had to take a crash
    course of Flex 2 by checking the online tutorials and the adobe
    sites. So far I've done some small applications that used
    ColdFusion remoting, but now the project has grown bigger.
    They want us to create a virtual classroom application in
    Flex, pretty standard stuff where teachers can create assignments,
    grade them, and students can log in and actually work on the
    assignments within the application. They also want other additional
    functionality.
    The problem is that I have no experience using Flex 2 for
    such a big application, and I really have no idea where to start
    and how to layout the whole design. I know how to make simple
    applications with a couple of popups and components, but at this
    scale im really lost.
    Can you guys suggest a good book that will lead me through a
    sample application at this scale (no simple exercises)? Is the
    Lynda.com training the best?
    Thanks

    Flex 2 Training from the Source (Book) and yes, Lynda.com
    tutorials are done
    by David Gassner who is excellent.
    Bill
    "dirtyhand" <[email protected]> wrote in
    message
    news:f5el40$55n$[email protected]..
    > Hey guys. I'm currently working for my University as a
    Web Developer;
    > when I
    > first started a couple of months ago, I had no idea Flex
    even existed. So
    > when
    > I got hired, I had to take a crash course of Flex 2 by
    checking the online
    > tutorials and the adobe sites. So far I've done some
    small applications
    > that
    > used ColdFusion remoting, but now the project has grown
    bigger.
    >
    > They want us to create a virtual classroom application
    in Flex, pretty
    > standard stuff where teachers can create assignments,
    grade them, and
    > students
    > can log in and actually work on the assignments within
    the application.
    > They
    > also want other additional functionality.
    >
    > The problem is that I have no experience using Flex 2
    for such a big
    > application, and I really have no idea where to start
    and how to layout
    > the
    > whole design. I know how to make simple applications
    with a couple of
    > popups
    > and components, but at this scale im really lost.
    >
    > Can you guys suggest a good book that will lead me
    through a sample
    > application at this scale (no simple exercises)? Is the
    Lynda.com training
    > the
    > best?
    >
    > Thanks
    >
    >
    >

  • How to search object by Oracle developer,

    Hi Friends,
    As I know that TOAD has a function to search objects in database.
    when user enter a table name or string
    system will display all list of objects that used search table or string in objects.
    Does Oracle Developer has this function?
    This function is good for debug person for new application.
    Thanks for any help,
    New Oracle Developer

    As newbie, I suggest you read up a bit inside the Help (inside sqldev);
    You have various possibilities: Extended Search, Find DB Object and if needed the Search Source Code report.
    Have fun,
    K.

  • New development - need new roads added and 33 lot address locations corrected

    Hello, I am in the new homes and residential development business. I just developed a new residential development and I need to get Bing to update their roads and addresses. The addresses and roads have been in existence since about August 2014. I would have
    expected them to be updated by now but the roads are missing and the address locations are incorrect. 
    I have figured out how to get in touch with and submit bulk data to Google (Map Content Partners), but I cannot find an access point to Bing. I have gone the route of reporting mapping errors via Bing Maps, but I
    was wondering if their is a way to give Bing bulk mapping data to update new addresses and roads. I have shape files that include parcel boundaries, road centerlines, address blocks, and address points. I have also included the lot address and correct location
    coordinates below.
    Any help appreciated. 
    12306 186TH ST E  Puyallup, WA 98374 (-122.26914, 47.08904)
    12310 186TH ST E  Puyallup, WA 98374 (-122.26883, 47.08905)
    12314 186TH ST E  Puyallup, WA 98374 (-122.26853, 47.08906)
    12302 186TH ST E  Puyallup, WA 98374 (-122.26948, 47.08903)
    12318 186TH ST E  Puyallup, WA 98374 (-122.26819, 47.08906)
    12228 186TH ST E  Puyallup, WA 98374 (-122.26979, 47.0891)
    18509 124TH AV E  Puyallup, WA 98374 (-122.26786, 47.08912)
    18413 124TH AV E  Puyallup, WA 98374 (-122.26744, 47.08947)
    18510 124TH AV E  Puyallup, WA 98374 (-122.26832, 47.08954)
    18517 123RD AV E  Puyallup, WA 98374 (-122.26887, 47.08956)
    18520 123RD AV E  Puyallup, WA 98374 (-122.26955, 47.08958)
    18407 124TH AV E  Puyallup, WA 98374 (-122.26725, 47.08963)
    18502 124TH AV E  Puyallup, WA 98374 (-122.26811, 47.08969)
    18511 123RD AV E  Puyallup, WA 98374 (-122.26869, 47.08974)
    18401 124TH AV E  Puyallup, WA 98374 (-122.26703, 47.08979)
    18516 123RD AV E  Puyallup, WA 98374 (-122.26941, 47.08978)
    18412 124TH AV E  Puyallup, WA 98374 (-122.26792, 47.08985)
    18507 123RD AV E  Puyallup, WA 98374 (-122.26847, 47.0899)
    12317 184TH ST CT E  Puyallup, WA 98374
    (-122.26683, 47.08997)
    18512 123RD AV E  Puyallup, WA 98374 (-122.26924, 47.08995)
    18406 124TH AV E  Puyallup, WA 98374 (-122.26772, 47.09001)
    18415 123RD AV E  Puyallup, WA 98374 (-122.26827, 47.09005)
    18508 123RD AV E  Puyallup, WA 98374 (-122.26904, 47.09012)
    12313 184TH ST CT E  Puyallup, WA 98374
    (-122.26707, 47.09019)
    18405 123RD AV E  Puyallup, WA 98374 (-122.26805, 47.09021)
    18416 123RD AV E  Puyallup, WA 98374 (-122.26884, 47.09027)
    12309 184TH ST CT E  Puyallup, WA 98374
    (-122.26732, 47.09033)
    18410 123RD AV E  Puyallup, WA 98374 (-122.26864, 47.09042)
    12305 184TH ST CT E  Puyallup, WA 98374
    (-122.26754, 47.09046)
    18404 123RD AV E  Puyallup, WA 98374 (-122.26842, 47.09059)
    12301 184TH ST CT E  Puyallup, WA 98374
    (-122.26776, 47.09061)
    12227 184TH ST CT E  Puyallup, WA 98374
    (-122.26811, 47.09079)
    18503 124TH AV E  Puyallup, WA 98374 (-122.26763, 47.0893)

    It doesn't look like our data provider has this data yet. Note that in order for new addresses and roads to be added our data provider usually needs to drive to correctly capture all required information. I'll pass this information on to them so they can
    get this updated.
    http://rbrundritt.wordpress.com

  • Oracle SQL Developer needs some work

    I just downloaded a copy today (1557) for Oracle 9.2i / Windows XP Pro
    Oracle SQL Developer has a few glitches...
    A compiled and working package (compiled in SQL*Plus and TOAD) opens and shows 2 errors in a SQL Query involving a CASE statement. Invalid CASE clause on an ELSE and unexpected token on an alias at the end of the case.
    Compiling a package should display a message saying successfully compiled and the state of a package should always be on display!
    Opened an SQL script but could not execute it as the icon's didn't become active.
    Couldn't then run the script.
    These basic problems would put any serious developer off using Oracle SQL Developer.
    Also background color scheme should be gray and NOT white. White is hard on the eyes. This is just basic UI stuff.
    Oracle, you need more senoir developers!

    Justified to the top left of the sql window, you see the execute buttons. On the top right, you will see a drop down list box. After opening a file, this drop down list box is not selected. Select your connection and the execute buttons on the top left will enable.
    For PL/SQL use a slash / at the end for it to execute.

  • Creating A New Oracle Database And Sql Developer

    Hi,
    I'm a newbie to Oracle and and a not so newbie to Sql Server and Visual Studio.
    I am trying to learn Oracle on my local machine. I want to create a new Oracle Database and start learning from there.
    I have downloaded sql developer, the data modeler, and the Oracle Client. Could someone please provide some guidance on how to create a Oracle Database?
    From the responses, it appears that none of the items I mentioned actually creates a database. Sql Server provides a free download, also a developer version for a minimal fee. What specific Oracle product would be best to provide this type of service?
    Thanks,
    Mark
    Edited by: user8948230 on Jan 7, 2010 9:50 AM

    user8948230 wrote:
    Hi,
    I'm a newbie to Oracle and and a not so newbie to Sql Server and Visual Studio.
    I am trying to learn Oracle on my local machine. I want to create a new Oracle Database and start learning from there.
    I have downloaded sql developer, the data modeler, and the Oracle Client. Could someone please provide some guidance on how to create a Oracle Database?
    From the responses, it appears that none of the items I mentioned actually creates a database. Sql Server provides a free download, also a developer version for a minimal fee. What specific Oracle product would be best to provide this type of service?
    Thanks,
    Mark
    Edited by: user8948230 on Jan 7, 2010 9:50 AMIn addition to downloading and installing the database software to create a database, might I also suggest you start getting familiar with the documentation.
    Learning where to look things up in the documentation is time well spent investing in your career. To that end, you should drop everything else you are doing and do the following:
    Go to tahiti.oracle.com. Drill down to your product and version.
    Spend a few minutes just getting familiar with what is available here. Take special note of the "books" and "search" tabs. Under the "books" tab you will find the complete documentation library.
    Spend a few minutes just getting familiar with what kind of documentation is available there by simply browsing the titles under the "Books" tab.
    Open the Reference Manual and spend a few minutes looking through the table of contents to get familiar with what kind of information is available there.
    Do the same with the SQL Reference Manual.
    Do the same with the Utilities manual.
    You don't have to read the above in depth. They are reference manuals. Just get familiar with what is there to be referenced. Ninety percent of the questions asked on this forum can be answered in less than 5 minutes by simply searching one of the above manuals.
    After you have familiarized yourself with what is available, read the "2-Day DBA" manual to help get you started.
    Then set yourself a plan to dig deeper.
    - Read a chapter a day from the Concepts Manual.
    - Look in your alert log and find all the non-default initialization parms listed at instance startup. Then read up on each one of them in the Reference Manual.
    - Take a look at your listener.ora, tnsnames.ora, and sqlnet.ora files. Go to the Network Administrators manual and read up on everything you see in those files.
    - When you have finished reading the Concepts Manual, do it again.
    Give a man a fish and he eats for a day. Teach a man to fish and he eats for a lifetime.

  • Need the Oracle Developer Suite 10.1.2.3 for Windows XP & Windows 7

    Hi All,
    Need the Oracle Developer Suite 10.1.2.3 for Windows XP & Windows 7 for developing Custom Forms and Reports to be used in R12.1.3. Please provide a link from where I can down the same.
    Thanks in Advance,
    Kiran Panditi.

    The base release is available here:
    http://www.oracle.com/technetwork/developer-tools/forms/downloads/index.html
    In order to get to 10.1.2.3, you must then install Patch ID 5983622
    Installation on Windows 7 is only supported for Win7 (32bit) and requires special installation instructions found in MOS Note 1292919.1 . Not following these instructions will result in failure to install the product properly.

  • Oracle Developer Patchset 7 needed

    Hei,
    where can I download Oracle Developer Patchset 7? I need it for Designer 6i(4.1.1). Do I need Oracle support in order to get the patchset?
    Thanks
    Chen Zhao
    [email protected]

    You can try this:
    ftp://oracle-ftp.oracle.com/dev_tools/patchsets/

  • Re:: Need oracle developer 2000

    Does anybodyknow where I can get a copy of this I need it for my university dissetation. I need it urgently
    please help!!!!!
    Thanks
    k

    I do have the copy of Oracle Developer 2000. It is just 1 CD.
    Can you please tell me how to install Oracle Developer 2000 ?
    Please send me the instruction in detail, step-by-step narration.
    My e-mail address is [email protected]
    Do you have the copy of Oracle 9i Developer Suite ?
    I would to have one copy of the software. It is comprised of 2 Cds.
    Message was edited by:
    user447295

Maybe you are looking for

  • How to remove Requirement of SL in  Delivery for a particular Sales area

    Hi Friends I have customised supplementary order type, delivery type and billing type. In supplemntary delivry item category, the relevance for picking, storage location required, determine storage location, fields are unchecked. It works well with a

  • How do i reinstall photos back into iphoto5?

    I accidentally messed up my photo library and had to erase it to start again. I have a complete back up reinstalled on the hard drive, but dont know how to get the computer to recognize the folder and load the pictures so that i can see them when i o

  • Issue while Signing and Encrypting the PDF Document.

    Hello, I am developing one component in VC++(MFC) which signs and encrypts the pdf documents. When i sign and encrypt pdf document using my component, I am getting following error while opening the document in Adobe Acrobat Error during signature ver

  • Licence of connect expires

    a message showing licence of connect expired is always appearing on screen. Dont know why. If anyone is aware of it plz sort out...

  • Attribute_Chng_Run Failed.... Data loading not possible.

    Hi Dear Expert, I am facing  another issue. And this is little different. This time Attribute_Change_Run got failed. And I am trying to activate it but no luck. Due to this I am not able to load any data ( Master & Transactional Data ).  And the prob