Can i run or test oracle pl sql scripts online?

Hi Everyone
Is there any means to test and run oracle pl sql scripts online thru any website?
Thanks

ms wrote:
Hi Everyone
Is there any means to test and run oracle pl sql scripts online thru any website?
ThanksWhy do you expect another site to have your tables & data?
How do I ask a question on the forums?
SQL and PL/SQL FAQ

Similar Messages

  • Can not run the test form using servlet (patch 8)

    Installed 9I AS 1.0.2.2.1 and forms patch 8 on Windows 2000.
    Configured the Forms Listener Servlet by following the white paper "Forms 6i Patch 8: Oracle Forms Listener Servlet for Deployment of Forms on the Internet".
    I can get the page titled Forms 6i Listener Servlet using URL: http://myserver/servlet/oracle.forms.servlet.ListenerServlet.
    However, I can not run the test form using the servlet by the url:
    http://myserver/servlet/f60servlet?config=servlet. In the formsweb.cfg file I also added a section
    [servlet]
    serverURL=/servlet/oracle.forms/servlet.ListenerServlet
    No meaningful error message. At first it seems very slow, and then shows the "The page can not be displayed" page.
    Please advise.
    Thanks.

    u must add "Script Alias ifcgi60 "$ORACLE_HOME/forms60/cgi" in confirguration.

  • Can you run Hardware Test from older DVD?

    Hello,
    My mini2,1 came with OS 10.4. I have the two original system discs. SInce I bought it right before 10.5 was released, Apple sent me a single Leopard Upgrade disc. Does anyone know if the Apple Hardware Test is on the 10.5 upgrade disc? If it isn't, can I run the test from Disc 1 of the original 10.4 DVD's even though the mini is now running 10.5?
    Thanks in advance.

    Excellent. I found the hardware test on the original 10.4 OS X Install Disc 1. Glad to know that the test on the DVD is for my specific computer hardware, and that the current OS on that machine does not matter.This was not clear to me and I could not find an answer on Apple's help pages. And that explains why the hardware test isn't on the 10.5 upgrade DVD.
    Thanks BD and Niel.
    Dr. Rock

  • Can I run hardware test and repair a disk with Leopard using 10.3 DVD

    Hi,
    I'm trying to decide whether to partition and clone Leopard to my external or partition and install Tiger on the external.
    My iMac came with 10.3.6 install and hardware test DVD's and they (Comp USA) gave me a Tiger drop-in DVD. I upgraded to Leopard through a family pack DVD (when I told my friend I would by one of the install's I thought I would get a DVD, but you only get an install license, oh well). By the way, Leopard runs great in my rev A iMac G5.
    I'm trying to figure out which os to use on the external as a safe-boot incase something happens. If I clone Leopard onto a partition for backup/boot, can I still use the Disc Repair (not permissions) and Hardware Test from the 10.3 or Tiger DVD's to maintain that permission should something bad happen? The way I see it, i'll be able to repair permissions on both the main and external drives using Leopard's disc utility, but I'm not sure if I can repair a Leopard disk or do Hardware Test on that disc using an earlier version of OSX install/Hardware Test DVD's.
    Will earlier versions of OSX repair a Leopard disk and be able run Hardware Test?
    Thanks for the help,
    LowBb
    Message was edited by: LowBb

    Yes, that seems to be the case, but I didn't do good enough research when he asked if I wanted a license for Leopard. For some reason, I had it in my mind that a Family pack came with multi DVD's for people. Maybe that's why he sold me a license so cheap. I thought I was getting a bargin, you get what you pay for.
    So, I have the hardware test DVD's that came with the iMac and the Tiger drop-in is just an upgrade with no Hardware Test, you are correct.
    But: (let me make sure I have this right) I should not use the 10.3 DVD's or the Tiger drop-in to repair a disc (not permissions) on a hard drive running Leopard. Is this what you are saying? I kind of thought this would be the case. If it is, I'm going to install MY stuff that I have the DVD's for on the external as an emergency boot disc.

  • How can implement running total in oracle forms

    I want to implement a running total in oracle form
    like
    100 100
    300 400
    200 600
    500 1100
    200 1300
    100 1400
    PROCEDURE calculate_srno IS
    current_rownum     integer:=:System.Cursor_Record;
    starting_srno integer:=:rs_1;
    last_rownum integer;
    BEGIN
         last_record;
         last_rownum:=:system.cursor_record;
         go_record(1);
         FOR counter IN 1..last_rownum LOOP
              :sum_1:=:rs_1;
              :rs_1:=:sum_1+:rs_1;
         --     :offered_srno_to:=starting_srno;
              if last_rownum=:System.Cursor_Record then exit;
              end if;
         END LOOP;
    END;
    it is not working after want to insert between in the table

    Why write code for this? Oracle Forms 10g has Calculated/Summary fields that will do this for you without the need of writing any PL/SQL.
    Simply add a non-table item to the data block with the item you want to keep the running total for. Then change the following properties of the item:
    Data Type: Number
    Calculation Mode: Summary
    Summary Function: Sum
    Summarized Block: <Your Data Block>
    Summarized Item: <Your Block Item>
    Number of Items Displayed: 1 (if your item is in a Multi-Record (Tabular) layout else you don't need to change this property.
    You will also need to change the following property of the block: Query All Records: Yes
    If changing the Block's "Query All Records" property causes your form to be too slow because of the number of records in your block, then you could keep a running total manually by using a combination of the Post-Query and When-Validate-Item (WVI) triggers. If your block does not allow data entry, then you could do this with just the Post-Query trigger. For example:
    BEGIN
      /* This code sample assumes you have added a non-table item */
      /* to your block called SUMMARY.  */
      :YOUR_BLOCK.SUMMARY := :YOUR_BLOCK.SUMMARY + NVL(:RS_1,0);
    END;If your block allows data entry, then you would add the following to your existing WVI trigger.
    BEGIN
      /* Perform your data entry validation logic first... */
      IF ....
      ELSE
        ...Validation is successful...
        :YOUR_BLOCK.SUMMARY := :YOUR_BLOCK.SUMMARY + NVL(:RS_1,0);
      END IF;
    END;Hope this helps.
    Craig...

  • Can I run a soft without install sql server?

    I just wrote a winform C# program and use SQL server 2012 for data. 
    Can I run this program on other machine without install sql server ? 
    If I can't. Are there other program simpler than sql server help me run it ?
    THANK ALL !

    Agree with Nicolas. You need to modify connection string to point to proper server name. This might help in getting proper name of instance.
    http://sqlserver-help.com/2011/06/19/help-whats-my-sql-server-name/
    Balmukund Lakhani
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    | Facebook
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • Can't run hardware test because probing never completes

    I start the hardware test, it tells me probing will take about a minute and I can't do any tests until it completes, the blue bar goes about 95% of the way and stops, I go away and come back half an hour later and nothing has moved. Has anybody seen anything like this?
    Is it because I have an Acer monitor and a no-name three-button optical mouse? Does the Audioworks speaker system plugged into the headphone jack have anything to do with it?
    I wanted to do a hardware test because a particular application gave me kernel panics. Apple support walked me through erasing the disk, reinstalling the OS, and recovering my settings and data from Time Machine. I did not reinstall the offending application and I have not had any more kernel panics. But I still can't run a hardware test.

    I have a workaround, but not a real solution. I unplugged the no-name mouse and then started the hardware test from the applications install DVD. Probing completed, the hardware test completed, and the final report was "no trouble found."
    It's now Apple's problem, because a hardware test should either report trouble or no trouble, but should never hang, no matter what hardware is connected.

  • Can not run hardware test on nMP

    I have Mac Pro late 2013, 6 cores, 16 Gb RAM, Yosemite. I have followed Apple instructions how to run hardware test. Both using D and Alt D at startup. Unplugged devices, plugged devices. The only thing I see is a row of languages and option to shut down or restart with black background I check English and hit return. After that nothing happens. Is there somone who could explain ?

    Using Apple Diagnostics
    Using Apple Diagnostics - Apple Support
    I take it you are using a wired keyboard and you are not seeing the display:

  • Oracle Express SQL scripts is displaying in Red not Green

    The SQL script display is very hard to read in red. Noramlly it is light Green and easy to read, I belive it is using JAVA to render.

    This is a [long standing problem in some browsers/configurations|http://forums.oracle.com/forums/search.jspa?threadID=&q=%22Script+editor%22+AND+RED&objID=f137&dateRange=all&userID=&numResults=15&rankBy=10001]. There's nothing you can do about it except switch to a supported browser, or use an alternative tool like [SQL Developer|http://www.oracle.com/technology/products/database/sql_developer/index.html] when working with PL/SQL.

  • VStudio is crashing while debugging Oracle PL/SQl scripts from VS

    Hi all,
    I am using Visual Studio 2008 and Oracle11g, ODTwithODAC1110620 for debugging Oracle PL/SQL packages from Visual Studio. My solution has several C# projects and a big chunk of Oracle package. I have configured visual studio and able to debug the scrips. But, while debugging the scripts, all of a sudden, solution gets closes automatically and nothing that I can do other than opening the solution and do it again. It seems weird and I could not trace out what went wrong.
    But, I could see few errors in event viewer and below is the description.
    *".NET Runtime version 2.0.50727.3623 - Fatal Execution Engine Error (7A2F8992) (0)"*
    Please suggest me how to resolve the issue and let me know if further information is required.
    My apologies, if this is not the proper area to post this issue and suggest me where I can get help in this regards. Thanks in advance.
    Regards,
    Kumar

    Hi,
    Thanks for the response and below is the information as required.
    Machine details: Microsoft Windows XP Professional Version 2002 Service Pack 3 (Desktop)
    Oracle Version: Oracle 11.1.0.6.0 client, Oracle Data Provider for .NET 10.2.000 and Oracle Developer Tools for Visual Studio 11.1.0620.
    Please let us know your feedback on this.
    Regards,
    Kumar

  • Can not run forms in Oracle Form Builder

    I get FRM-10142: The HTTP listener is not running on computer1 at port 8890. Please start the listener or check your runtime preferences. When I try running a form in Oracle form builder.
    Can someone please help with a solution to this problem.

    Start the OC4J Instance first....
    Simon

  • Can you run Orchestrator on the same SQL server as SCCM?

    500+ systems, and our SCCM data base is sizable. We're running SQL on a virtual server within our SAN. I can tell you just poking around on the server, I do feel its kinda slow and everything feels to kinda chug.... Might be better to just see if I can get approval on the spend for another license... I do know deep down thats the correct way to go. 
    Unless Orch is so light and hardly uses any resources that it can piggyback SCCM? The hard part is going to be to convince them to use something I am still learning to use. Ha! But I do have a book for it, so thats a step in the right direction. 

    So our current solution is MDT for deployments, and SCCM for software and updates deployment as well as software center self service.
    I'm wanting to bring in Orchestrator to start using playbooks to automate everything. I see that all of Software Center's add-on parts don't cost anything, but all require SQL Server. Well I already have that running for SCCM. So can I share between the two? SCCM is already kind of a big hog, but I have zero to little knowledge of Orchestrator... Would that be just a little more stress on the server or a lot more? Does Orchestrator really need its own server?
    This topic first appeared in the Spiceworks Community

  • Can not run form in oracle 9i ds

    Dear Sir,
    I has installed oracle 9i ds and oracle 9i database on my singlr machine in two different partition. I configured as far as possible, but i could'not able to run the forms in web brouser showing error "registry not found".
    Pl help me to configure the same.
    Thank You

    hi
    i have installed Oracle9iDS and when i run the form the following problem message are showen in the web browser
    FRM-90928:Positional parameter after key on command line
    please tell me what can i do to run the form succesfully?!!!

  • Can't run hardware test

    I have a Mac Pro early 2008, os 10.3.3. It is running two monitors, a 30 inch cinema display and a nec multi sync ex231. The video card is nvidia quadro 4000. Recently both monitors are going black after the computer has been on for a short amount of time and I have to manually shut down  and restart. I get a message about no DVI.  This is increasing with more and more frequency.
    I would like to run a Hardware Test. I am shutting down the computer and holding down the D key after the startup chime but before the grey screen appears but hardware test does not appear. It just goes to the screen where I choose a user. Any help please? Thanks.

    AHT is only installed to the Mac when using the original OS installer. I you have migrated via updates it can still be installed, however it is removed when 'clean installing' newer OS's since the disk is erased. The grey OS disks will have instructions printing for starting AHT on the relevant DVD.
    You can find a list of downloads & instructions for finding out your model info (it is easier than searching on Apple.com for them). Only use the ones linked on Apple.com.
    https://github.com/upekkha/AppleHardwareTest
    Try burning it to a CD in Disk Utility - I had limited success with that so I made a script to copy it onto a USB stick…
    https://gist.github.com/drewreece/2e5eed7dbfbd5dd7e929
    It should also be possible to copy the .diagnostics folder back onto the system disk, but that also failed for me too.

  • Can't run hardware test to resolve charger light issue.

    I've got a macbook pro 17" early 2009 model w 2.93 processor (5,2) with mountain lion (osX 10.8.2) installed on it.
    My chargers work but the light cuts in and out, regarless of which charger I use.  I want to run the Apple Hardware Test.
    I've tried option-D on start, which I'm told won't work on this model.  I've also tried D on start.  In both cases it just boots to the login screen.
    I tried downloading the Apple Hardware Test image for this model from Apple and after converting the image discover it has folders, but there are no files in those folders (yes I turned on hidden file viewing)
    How does one run the hardware test on MBP 5,2 once mountain lion is installed.

    The original installation DVDs are indispensable for many reasons and can be a challenge to replace. Contact Apple. Explaining to them exactly what you need is the tough part. They will charge a nominal fee for replacement DVDs.
    You will need your MBP's serial number - it is printed on the rear case near the display hinge.
    In the meantime try an SMC reset. It may fix the problem.
    Resetting the SMC on Mac portables with a battery you can remove
    Shut down the computer.
    Disconnect the MagSafe power adapter from the computer, if it's connected.
    Remove the battery (to remove the battery - click here: MacBook or MacBook Pro).
    Press and hold the power button for 5 seconds.
    Release the power button.
    Reconnect the battery and MagSafe power adapter.
    Press the power button to turn on the computer.
    Still having problems? Replace steps 6 and 7 with the following: 
      6.  Reconnect MagSafe power adapter.
      7.  Press the power button to turn on the computer,
      8.  Then reconnect the battery.

Maybe you are looking for

  • Iphone deletes email by itself

    I have an iphone 3G and access my imap email account. All has been fine until this morning when all of a sudden the iphone deleted all emails that have been read on either the phone or the mac. They remain however on the mac in the email account inbo

  • Cannot wake from display sleeping freezes up

    I just did a HD upgrade on my 24" imac 2.16ghz to a 1TB drive. All went well as I have done several others and I also switched from 10.4.11 to 10.5 and updated to 10.5.8 with no issues. I have a problem with it waking back up when the display goes to

  • Call List Issue

    Hi there, I'm not a novice to BBs however I've come across a tiny issue that I can't seem to sort out. I have Contacts who have various numbers (for work, home, mobile etc) and on my Contact List they are all saved under their respective names and I

  • BPC on Virtual server

    Hello all, We are running a multiserver environment SAP BPC 5.1 sp3. With 4 different appservers / webbservers. and 2 db/analysis servers. The question i got if its possible to run the app/webbervers/database on vmware? The question is kinda of inter

  • Is it possible to modify private member of a class directly from main?

    This is the code which modifies the private String stk[] indirectly from main method when sorting option is called from main method: import java.io.*; class Stack     private String stk[];     private int tos;     private int size;     Stack()