Help needed...new to Oracle

Hi friends,
I am totally new to oracle i am a .net and sql developer. I have no idea of doing this. I need ur help badly in this. I hope you will help me and very much thankful to you in advance. Send me the code snippet of doing this.
Oracle forms 6i
Sql>desc or_record
Name null? Type
Or_seq not null number
Mrn varchar2(10)
Patient_name varchar2(40)
Age number
Room_no varchar2(10)
Surgeon number
Asst_surgeon number
Surgeon2 number
Anesthesiologist number
Asst_anesthesiologist number
Anes_tech number
Or_date date
Incision_time1 varchar2(5)
Skin_clos_time varchar2(5)
Scrub_nurse1 number
Scrub_nurse2 number
Circ_nurse1 number
Reliever1 number
Reliever2 number
Relievercn number
Preoperative_diag varchar2(100)
Postoperative_diag varchar2(100)
Operation varchar2(100)
Patient_arrival_time varchar2(5)
Time_in varchar2(5)
Induction_time varchar2(5)
Incision_time varchar2(5)
Surgery_end varchar2(5)
Waking_time varchar2(5)
Tm_back_to_room varchar2(5)
Use_image_intensifier char(1)
X_ray_tech number
Laboratory_spec varchar2(100)
Histo_path varchar2(100)
Culture varchar2(100)
Scrub_nur number
Circ_nur number
Sql> desc or_record_det
Name null? Type
Or_seq_det number
Sponges varchar2(50)
Ft_table number
Ft_floor number
St_table number
St_floor number
Third_table number
Third_floor number
These are the 2 tables which has to be in the same form. The upper one is master block and the lower one is details block in the form. The second one must be in the tabular format. The first one in the form format. We have to make the relationship. That’s it all are text fields only. We need to retreive,update,insert,delete.generate sequence number for or_seq and it should be updated to or_seq_det which is the attribute of second table.

Maybe you should ask this in the Forms forum.

Similar Messages

  • Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Thanks for prompt reply, yes we have tried that but have now closed down the browser we where the photos were.
    We haven't sent up time machine, do you know whether there is any roll-back function on a Mac?
    Thanks

  • Help needed with windows oracle services

    Hi,
    I am using Oracle 8.0.6. After installing the database. i wanted to change the INTERNAL password. so i shutdown the oracle services. When i try to start the services 1)OracleServiceORCL ,2)OracleStartORCL, the first service is starting but the second service hangs up.
    Could anyone plss tell me if i can delete this service and recreate other. Plss describe the steps in detail.

    ateeqrahman wrote:
    Hi,
    I am using Oracle 8.0.6. After installing the database. i wanted to change the INTERNAL password. so i shutdown the oracle services. When i try to start the services 1)OracleServiceORCL ,2)OracleStartORCL, the first service is starting but the second service hangs up.
    Could anyone plss tell me if i can delete this service and recreate other. Plss describe the steps in detail.Is this a new installation or has it been working for some time?
    What OS?
    If it is new, why Oracle 8.0? It was never designed to work with any current operating system and I would be surprised if anything about it works.

  • Help needed in using oracle rules SDK

    Hi,
    For testing my rulesets using oracle rules SDK I doing the following:
    1. Creation of dictionary, ruleSet.
    2. Declared two kinds of globalVariable variables in my datamodel :
    Final and non-Final.(Type of these varaibles are String and Double only)
    3. Final globalVaraibles are used in creating rule's patterns.
    4. Non-Final globalVariables are used in creating rule's action.
    5. Functions are created for asserting globalVariables values and
    returning non-final varaibles, since those are required as action
    results.
    6. In java code I am testing my ruleset (dict.testRuleSet()). Before
    testing i am populating my final global variables (since these are used
    in rule's patterns),
    and updating datamodel.
    The above procedure is working fine and I rules are successfully working.
    Now, first of all i want to know if the above mentioned approach is correct or it needs to be reframed??
    secondly, when i update datamodel with values (in java code itself) it
    takes 4-5 seconds in updating it. This is the main issue that why it is
    taking this much time??
    any comment would be of great help.
    Thanks in advance.

    I will send up an alert for you, Colin. Even though I use iTunes for Mac, troubleshooting it isn't my forté.

  • HELP NEEDED: new ipod touch not working

    i just got an ipod touch for christmas
    i previosly had and ipod nano and so allready had itunes with music and pictures on.
    i plugged the ipod into the usb on the back of my laptop.
    a camera pop up appeared which i closed.
    my ipod touch is fully charged now.
    itunes is not recognising and it is not anywhere on the menu.
    the ipod touch itself will only show what i have been told is a register screen (wire pointing towards itunes logo)
    on "my computer" the ipod is only appearing under scanners and cameras
    please help as i just recieved it

    Hello and Welcome to Apple Discussions. 
    You need to download and install the latest version of iTunes:
    http://www.apple.com/itunes/download/
    Ambie12, You should probably start a new thread for your issue if downloading iTunes 7.5 doesn't help.
    Coolmaxx, have a read of this article:
    http://docs.info.apple.com/article.html?artnum=93716
    mrtotes

  • Help needed in configuring Oracle 9i AS Server

    Frineds,
    I am new to Oracle9i AS. Please help me configuring Oracle9i AS
    regards
    Mathew

    Hi Mathew,
    Can you elaborate your question ? What kind of help do you need ?
    Regards,
    Sandeep

  • Help needed to access Oracle from Applet.

    Please help. I have spent days reading info on the web and I simply cannot access to Oracle from an applet to work. Oracle is on a different IP than the Web Server. For my testing I am running the html directly from my local file system.
    Here are the steps I have taken:
    1. Create a key: "%JAVA_HOME%/bin/keytool" -genkey -alias MyAlias -keypass MyKPass -keystore C:\Keys.bin -storepass MySPass
    2. Sign my jar: "%JAVA_HOME%/bin/jarsigner" -keystore C:\Keys.bin -storepass MySPass -keypass MyKPass -signedjar myjar-signed.jar myjar.jar MyAlias
    3. Sign Oracle's Jar: "%JAVA_HOME%/bin/jarsigner" -keystore C:\Keys.bin -storepass MySPass -keypass MyKPass -signedjar ojdbc14-signed.jar ojdbc14.jar MyAlias
    4. Applet Tag (at this time I have the two jars in the same folder as the HTML and JS files):
        <applet id="MyApp"
      codebase=""
      archive="myjar-signed.jar,ojdbc14-signed.jar"
      code="com/company/applets/Test.class"
      mayscript
      width="50" height="50">
        </applet>5. Javascript:
      document.observe("dom:loaded", function() {
      alert("Applet: " + $('MyApp').getVersion());
      $('MyApp').getConnection(url, user, pswd);
      alert("Applet: " + $('MyApp').getVersion() + "Got Connection.");
      $('MyApp').testConnection();
      alert("Applet: " + $('MyApp').getVersion() + "Connection Tested.");
    });Execution:
    1. The applet loads, The browser asks if I want to trust it, I say yes.
    2. The '$('MyApp').getVersion()' works.
    3. The '$('MyApp').getConnection(url, user, pswd);' fails. Java Code:
      public void getConnection(String url, String user, String pswd)
          throws Exception {
        try {
          System.out.println("Driver...");
          DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
          System.out.println("Connection...");
          _conn = DriverManager.getConnection(url, user, pswd);
          ...The driver registers, but the getConnection fails with a security error.
    After much reading, I used policytool to update the policy file. It added:
    keystore "file:/C:/Keys.bin", "jks";
    grant signedBy "MyAlias" {
      permission java.security.AllPermission;
    };This did not make any difference. Both IE and FF get the same error.
    The JRE being used is 1.6.0_14.
    Any help solving this would be MUCH appreciated.
    Thanks.

    I have simplified the problem, and now it has nothing to do with Oracle. It is a certificate/signing problem.
    Here are the steps I took to set the test up:
    Certificate:
    "%JAVA_HOME%/bin/keytool" -genkey -storepass MyStorePswd -keyalg RSA -alias MyRsa -dname "CN=Company.com, OU=IT, O=Company Inc, L=Atlanta, ST=Georgia, C=US, DC=mailexpress, DC=com" -validity 999
    "%JAVA_HOME%/bin/keytool" -selfcert -storepass MyStorePswd -alias MyRsa -validity 999
    "%JAVA_HOME%/bin/keytool" -exportcert -storepass MyStorePswd -alias MyRsa -rfc -file MyRsa.cer
    "%JAVA_HOME%/bin/keytool" -importcert -keystore "C:\Program Files\Java\jre6\lib\security\cacerts." -storepass changeit -alias MyRsa -file MyRsa.cer
    Jar Signing:
    "%JAVA_HOME%/bin/jarsigner" -storepass MyStorePswd -keypass MyStorePswd -signedjar Text-Project-signed.jar Text-Project.jar MyRsa
    "%JAVA_HOME%/bin/jarsigner" -verify Text-Project-signed.jar
    Result: jar verified.
    HTML:
        <applet id="MyApp"
                codebase="file:/c:/projects/Text-Project/js/Memory"
                archive="Text-Project.jar"           <== unsigned test  OR
                archive="Text-Project-signed.jar"    <== signed   test
                code="com/company/applets/MemTest.class"
                mayscript
                width="50" height="50">
        </applet>
    JavaScript:
    document.observe("dom:loaded", function() {
      alert("Applet: " + $('MyApp').checkSecurity());
    Function in the Applet:
      public String checkSecurity() {
        System.out.println("Security Check...");
        try {
          AccessController.checkPermission(new FilePermission("MemTest.js", "read"));
          AccessController.checkPermission(new FilePermission("MemTest.js", "write"));
          AccessController.checkPermission(new java.net.SocketPermission("192.168.1.121", "resolve"));
        } catch (Exception e) {
          e.printStackTrace();
          return e.getMessage();
        return "Security Checked OK";
      }Results (Internet Explorer):
    1. Unsigned JAR, No policy:
    Result = java.security.AccessControlException: access denied (java.io.FilePermission MemTest.js read)
    (as expected)
    2. Unsigned JAR, Policy = permission java.security.AllPermission:
    Result = Security Checked OK
    (as expected)
    3. Signed JAR, No Policy: Popup states: signature verified; do you want to run the application.
    Result = java.security.AccessControlException: access denied (java.io.FilePermission MemTest.js read)
    (not expected)
    Something is wrong with the certificate or signing process. Any ideas ?
    Thanks.
    Edited by: javadude.101 on Jul 29, 2009 12:29 PM

  • Help Needed...Oracle Apps Inventory

    Hi,
    I am new to this forum. My email id is [email protected]
    I need some help in inventory module
    1)Mult-org
    2)Item Setup
    3)All inventory Setups.
    Can you guide be so that I could be knowledgable in this module.
    Thanks in advance,
    sandra

    Inventory is an item referential and it also allows stock replenishment.
    There is no ‘standard’ flow for using Inventory.
    You will find all setup instructions in document that Vinod Subramanian sent to you. I mean : Organization definition, Item definition, Subinventory definition, Stock definition …
    Basic steps for item creation :
    -     check the pre-requisites (organization must be defined …). You must have at least one master organization (it is your item referential). Item type must exist. You have to define at which level (Master or Organization ) item attributes are defined …
    -     Then you create your item in the Master organization.
    -     After that, you can assign item to one or several organization
    Then, Inventory management depends on the business of your company : do you manage stored items or not; if yes, how do you manage replenishment ? ….
    If you need more help, please ask precise questions and you will get all information you need.

  • IPhone 5s and iTunes Help Needed - NEW PC

    Hi, I got the iPhone 5s back in October (1st ever Apple product) and transfered my music and photos onto it via iTunes.
    What I need help with is as my laptop is in for repair (complete system restore) can I download  iTunes on mums laptop and put a few songs and pics on my iPhone WITHOUT clearing the  curent files and leaving me without nothing on it.
    Thanks
    James

    Use these instructions to open the library from its location on the external hard drive...
    How to open an alternate iTunes Library file or create a new one
    http://docs.info.apple.com/article.html?artnum=304447
    This assumes that everything needed for an iTunes library is on the external hard drive which includes the data base files that contain the info you are concerned about (playlists, counts, ratings, etc.).
    Patrick

  • Help needed to install oracle 9i database in fedora 10

    when i am going to run the runInstaller file by using ./runInstaller, the following error occur
    Initializing Java Virtual Machine from /tmp/OraInstall2009-06-21_12-20-24AM/jre/bin/java. Please wait...
    /tmp/OraInstall2009-06-21_12-20-24AM/jre/bin/i386/native_threads/java: error while loading shared libraries: libstdc++-libc6.1-1.so.2: cannot open shared object file: No such file or directory
    plz help me ....
    Thanks.

    first of all you have to choose a 9i version for vista,you can have it from here:
    http://www.oracle.com/technology/software/products/oracle9i/index.html
    this will solve your problem,as vista was developed after 9i,you have to have a vista version of 9i
    [future designs|http://techonova.com]
    [technology news|http://technologytoday.in]

  • Help needed - new to Blackberry and not very techy - calendar problems

    I love my new Blackberry Curve 9300 BUT tried to synchronise Google calendar to Blackberry calendar.  For some dates I have 100s of duplicated entries and they are recurring to infinity it seems.  Have tried everything but seems the only solution is to completely clear the calendar but unable to find out from anywhere how to do this.  I tried via desktop but states that it is read only data and so can't be deleted.  I need to delete 6000 entries LOL
    Help! Can someone just give me a phone number as have searched internet for help and no solution to problem.  Calendar completely useless now and feel like throwing it out of the window...and then stamping on it 6000 times (as many times as there are erroneous entries on my calendar!!!)
    PLEASE PLEASE PLEASE IS THERE SOMEONE I CAN PHONE WHO WILL TALK ME THROUGH THIS

    Hello 123tracye and welcome to the BlackBerry® Support Community Forums.
    Sorry to hear you are having Calendar sync issues with your BlackBerry® Curve™ 9300 smartphone.
    You can call your mobile network carrier for walkthrouh assistance with this request and if needed, they can transfer you to Research In Motion® .
    If you want to try and resolve this yourself, in your Calendar go to Menu>Options and click on your Gmail® account and clear the check from Wireless Synchronization. 
    You can then clear the Calendar database on your BlackBerry as shown in KB10167 How to clear the user content databases from the BlackBerry smartphone
    Hope this answers your question.
    -HMthePirate
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • IWeb help needed - new user

    "Publisher" documents have converted to iWeb documents but won't open. I'm a new Mac user so need some help :-)

    What application was used to create the .pub files?  If there's no Mac equivalent that can open and use them just select one of the files, type Command+i to bring up the Info window, go to the Open with menu and select "TextEdit".  Then click on the Apply to all button.  This unlinks iWeb from those .pub files so when you double click on one of them iWeb won't try to open.
    If you have a Mac application that can be used to open and use those .pub files then select it in the Open with: menu.
    There is no Mac application that can open the .pub (Microsoft Publisher) files.  However, this site, eHOW, has a link to a web site that can convert those .pub file to PDF files which you can open on a Mac with Preview (included).  The link is Create PDF from Word & Other Formats.  You can give it a try.
    OT

  • Help needed, new pc stopped booting properly after 2 days msi p67a-g45

    Hi I need help quick, I recently built a new pc and all was going well sofar but now it wont boot up properly, it keeps resetting before the boot post tests and the times it does go through to the tests the internal speaker does 2 beeps, waits a second, 2 more beeps, waits a second, 3 quick beeps and then finally after another second 1 final loud beep.  Also when I'm running my memory test (doing atm, I think it crashed though) the lights on my keyboard are continusly flickering.
    Any help would be greatful
    My specs:
    Intel i5 2500k (not overclocked)
    8GB ram
    650w corsair power supply (had this for a few years and worked fine sofar)
    msi gtx 570 oc
    msi p67a-g45 motherboard
    crucial m4 64gb ssd
    2*1tb samsung hardrives

    Ok I just tried messing around with the computer it seems that the 2 sets of 3 quick beeps are for the number of usb devices Ive got attached to the computer, their is still 2 normal beeps before the 1 loud beep so I'm not sure what they mean as I tried replacing all the parts and it seems to do the same beeps.
    Quote from: Bernhard on 11-May-11, 11:12:09
    Have you tried with only one memory module on the board ?
    yep just tried that, they both seem to pass seperatly and together as they make no changes to the number of beeps, the ram should of also been 100% tested by mushkin in the factory so I dont think they may be the problem
    Quote from: Bernhard on 11-May-11, 11:12:09
    What is a few years, and under what usage pattern and load ? PSUs don't last forever. Suggest you also test with a known good PSU of similar output to determine if there is a potential PSU problem.
    Ive had the psu for around 2 years and it coped with me setting the computer to run on a full load test with 3dmarks and prime95 for a few hours along with me having a normal gaming session on it. I cant test the computer with any other psu's atm as I got none spair to use.
    Hopefully it was just the cmos being corrupted as resetting that seems to have fixed it, but it annoying not knowing what them 2 beeps are before the loud beep (which I guess is the all ok beep) is though.

  • Help needed - New PC with all Songs and library on External Hard Drive

    I hope someone can help me - I have just bought a new PC and have downloaded iTunes. All my songs are on an external hard drive, which I know how to get them on to iTunes - but I want to keep the playcounts and playlists that are also stored on the HD - I have tried looking for the answer to this, but cannot seem to find it anywhere. Thanks to anyone who can help.

    Use these instructions to open the library from its location on the external hard drive...
    How to open an alternate iTunes Library file or create a new one
    http://docs.info.apple.com/article.html?artnum=304447
    This assumes that everything needed for an iTunes library is on the external hard drive which includes the data base files that contain the info you are concerned about (playlists, counts, ratings, etc.).
    Patrick

  • Help needed in installing Oracle Elastic Charging Engine

    Dears,
    I would like to install Oracle Elastic Charging Engine (ECE) but I could not find any relevant documentation.
    Please help out on this.
    Regards,
    Chidhambaram

    Duplicate Post:
    Re: Installing Oracle appliaction on Red Hat Linux 9

  • Help Needed in installing oracle applications on Linux

    Hey i am trying to install oracle applications 11i on Red Hat Linux 9. Is it possible to install.
    if so can you please help me out with the patches required for the installation.
    thanks in advance

    Duplicate Post:
    Re: Installing Oracle appliaction on Red Hat Linux 9

Maybe you are looking for