Vista: use the windows program manager to execute operating system commands

attempting to run forms 6 on vista... the forms app attempts a call sqlplus using the host builtin to populate some tables before calling the report.
in windows vista i get a message box indicating "use the windows program manager to execute operating system commands".
is this windwos vista message? would this have to do with permissions?
any insight most appreciated and thanks in advance.

I don't know about the HOST-problem, but..
the forms app attempts a call sqlplus using the host builtin to populate some tables before calling the report.What about putting the logic from the SQL*Plus-scripts into a database-procedure and call that instead. I think,, with the current approach you will get problems at least when you have to migrate to Web (e.g. Forms 10g).

Similar Messages

  • I'm using the iPhone 5. IOS 7 operating system. I'm having problems gyroscope. Does an adjustment can be made programmatically?

    I'm using the iPhone 5. IOS 7 operating system. I'm having problems gyroscope. Does an adjustment can be made programmatically?

    said article below....
    HT1747: iTunes: How to remove and reinstall the Apple Mobile Device Service on Mac OS X 10.6.8 or Earlier
    Learn about iTunes: How to remove and reinstall the Apple Mobile Device Service on Mac OS X 10.6.8 or Earlier

  • Executing operating system command within trigger or procedure

    Hello
    Can some one help me out as how to execute operating system command (unix or windows ex.. stop,start,cc,del or copy etc...) in a trigger or procedure.
    My requirement is, if some predefined error occure then listener listener should be stopped automatically.
    Thanks in advance
    kvss

    Here is some code to tell you how to do:
    First a small Java program that taker a string as a parameter and executes it as an os-command
    import java.lang.Runtime;
    import java.lang.Process;
    public class Commands extends Object {
    * Constructor
    public Commands() {
    // On NT the command should be like this "cmd /c del c:\temp\readme.txt"
    // exec execute('cmd /c del c:\temp\readme.txt');
    public static void execute (String cmd ) {
    try {
    Process p = Runtime.getRuntime().exec(cmd);
    try {
    p.waitFor();
    catch (java.lang.InterruptedException intex ) {
    intex.printStackTrace();
    System.out.println("Return = "+ p.exitValue());
    System.out.println(" Done ...");
    catch ( java.io.IOException iox) {
    iox.printStackTrace();
    ===================end of java ====
    Use loadjava to load it into the database and create a pl/sql wrapper around the java code.
    See the manual about loadjava details.
    Log in to sqlplus as SYSTEM and create a role for this purpose e.g. 'JAVA_ROLE'
    and exec the following as SYSTEM or SYS to make sure the user has the the needed privs.
    dbms_java.grant_permission('JAVA_ROLE','SYS:java.io.FilePermission','<<ALL FILES>>','read,write,execute,delete');
    dbms_java.grant_permission('JAVA_ROLE','SYS:java.lang.RuntimePermission','writeFileDescriptor',null);
    dbms_java.grant_permission('JAVA_ROLE','SYS:java.lang.RuntimePermission','readFileDescriptor',null);
    and you're done.

  • How to: execute operating system commands from PL/SQL

    System: IBM pSeries AIX
    Oracle: 11g Enterprise
    Is there a quick way to execute operating system commands from PL/SQL?
    Without creating a JAVA class....
    I need to execute a Loader script.
    I want to do this from within PL/SQL.
    I need to to do 4 things.
    Three require SQL scripts.
    The fourth is SQL*Loader.
    The usual way is with a UNIX script calling 3 SQL scripts and one Loader control file.
    Is there way to do all this from within ONE PL/SQL SCRIPT ??
    Just let me know.

    Is there a quick way to execute operating system commands from PL/SQL?
    NO
    Without creating a JAVA class....
    I need to execute a Loader script.
    I want to do this from within PL/SQL.
    WHY ON EARTH, such action will create a new connection and become a resource hog?
    I need to to do 4 things.
    Three require SQL scripts.
    The fourth is SQL*Loader.
    The usual way is with a UNIX script calling 3 SQL scripts and one Loader control file.
    Which is perfect for the purpose.
    Is there way to do all this from within ONE PL/SQL SCRIPT ??
    Just let me know.
    NO, there is NOT. Nor should there be. Why create unstable ineffcient Mickey Mouse systems, glued together by hacking?
    Sybrand Bakker
    Senior Oracle DBA

  • How to execute Operating System commands from Stored procedure.

    Any help on how to execute Operating System commands from stored procedures will be appreciated.
    Nanditha.

    Search the forums for 'External Procedure' and you will find example code that has been posted before.

  • Using the Parallels program to run a Windows program, can two Macs network to use the Windows program?

    When using the Parallels program to run a Windows program, can I network my MacBook Pro with my friend so we can use the same Windows program.

    Not legally.

  • How to execute operation system commands by using TSQL without enabling xp_cmdshell.

    Hi Experts
    Looking for advise if one can use operation system commands using TSQL without enabling xp_cmdshell. 
    actually using xp_cmdshell requires sysadmin privs which I am unable to provide (directly or using proc) to a user  but the user needs some operating system commands to execute for file manipulation from sql server session. Please share your thought.
    Best Regards 
    khalil

    >but the user needs some operating system commands to execute for file manipulation from sql server session
    See article here
    http://www.mssqltips.com/sqlservertip/2014/replace-xpcmdshell-command-line-use-with-sql-server-agent/:
    "Problem
    I need to run something from the command-line, but based on best practices xp_cmdshell has been disabled. The task that needs to run is an internal process that will originate from within SQL Server. Is there a way to do this without using xp_cmdshell?
    Solution
    The use of xp_cmdshell is generally frowned upon and is now recommended to be disabled, unless it is absolutely necessary.  There is a solution that works around this restriction via the use of SQL Server Agent.
    Wherever SQL Server is installed, SQL Server Agent is installed with it (except for SQL Express). SQL Server Agent has the ability to run job steps which invoke the command shell. And in the case that the job is owned by a member of the sysadmin fixed server
    role, the job will execute as the service account under which the SQL Server Agent is running. "
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Database Design
    New Book / Kindle: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2014

  • Executing Operating system commands in ABAP

    Hi
    I want to execute a unix operating system command in an ABAP program. I remember seeing code which executes an operating system command. Could any please let me know about that code?
    Thank You.
    Eswar

    Hi,
    you can try something like this.
    data:cmd(254) type c.
    data: RESULT(255) OCCURS 100 WITH HEADER LINE.
                cmd = 'ls'.
    ** Execute command
      REFRESH RESULT.
      CALL 'SYSTEM' ID 'COMMAND' FIELD CMD
                    ID 'TAB'     FIELD RESULT-*SYS*.
    Kostas

  • Executing Operating system command

    I have a file(ftp)-xi-file(ftp) scenario. I want to run a operating system command on output/processed file which is on a different physical server through a script. But I have seen my script is not working. But when I did the same on the same physical server on which XI is hosted it is working fine. Could you plz somebody advise whether it works ?? if it is the case what precaustions should we take ??
    thanks
    kumar

    Hi Palnati
    OS command will run on XI OS only so you need to use FTP parameter in the script and "permanent connection" as connection mode
    Check this thread also
    Re: FTP ReceiverChannel and OS commands help
    Thanks
    Gaurav

  • Using the Dvd recovery disks results in "operating system not found"

    I recently bought the DVD recovery disks for Windows 8 from HP. After following the procedure using the 3 recovery disks plus the supplemental "Application and Driver recovery" disk. Immediately after installing the supplemental disk I receive a message that says "contact HP support and "in most cases recovering the hard drive will fix the problem".
    When I try to reboot another message appears saying "the operating system is missing". I repeated the procedure several times (also skipping the supplemental disk) and the message is the same.

    Hi:
    I can't help you with that problem but if you want to try making your own plain W8 installation media, you can use this file and it should work with the embedded product key in your notebook's BIOS.
    https://docs.google.com/file/d/0B0W9PBigPy94aVJWSndyTFNFMzg/edit?pli=1
    Then use this tool to transfer the file to a 4 GB USB flash drive or DVD.
    The tool will also make the media bootable.
    http://www.microsoft.com/en-us/download/windows-usb-dvd-download-tool
    Then go to the g6z-2200 download page and get the drivers and available software you need.
    http://h10025.www1.hp.com/ewfrf/wc/product?cc=us&dlc=en&lc=en&product=5328122
    You will also need to install the AMD Chipset Drivers from the link below.
    http://support.amd.com/en-us/download/chipset?os=Windows%208%20-%2064
    If it works, see if you can get your money refunded from HP for the disks.

  • I've had issues with Firefox hanging in memory even if I try to remove it using the Windows task manager's "End Process" button. My only alternative is to force a reboot on my PC.

    Since upgrading to Firefox 7.0.1 I've noticed the abovementioned problem. I usually have a couple of app tabs with GMail information on them (two different e-mail accounts, one of which is just the contacts page and the other is the inbox and one tab with a GMail calendar for one of the accounts) and my home page, which is Google News. While I cannot say for certain that it is related to multimedia streaming, it does appear to happen after I play some kind of video file like the videos for The Daily Show with Jon Stewart. My O/S is XP Pro SP3, my PC is a Dell Inspiron 700m w/2GB RAM. The Add-Ons that I have, as far as I can remember, are AdBlock Plus, Tab Mix Plus, WOT Safe Browsing Tool, and Download Statusbar along with the usual Java stuff. My Adobe plug-ins are always updated whenever I get an update message.

    Since upgrading to Firefox 7.0.1 I've noticed the abovementioned problem. I usually have a couple of app tabs with GMail information on them (two different e-mail accounts, one of which is just the contacts page and the other is the inbox and one tab with a GMail calendar for one of the accounts) and my home page, which is Google News. While I cannot say for certain that it is related to multimedia streaming, it does appear to happen after I play some kind of video file like the videos for The Daily Show with Jon Stewart. My O/S is XP Pro SP3, my PC is a Dell Inspiron 700m w/2GB RAM. The Add-Ons that I have, as far as I can remember, are AdBlock Plus, Tab Mix Plus, WOT Safe Browsing Tool, and Download Statusbar along with the usual Java stuff. My Adobe plug-ins are always updated whenever I get an update message.

  • Executing Operating system commands

    Hi,
    I need to execute sql*loader from APEX(sqlldr scott/tiger CONTROL=ulcas1.ctl ). How can I implement this in APEX. In oracle forms , I can execute this by a trigger when-button-pressed in a push button - host('sqlldr scott/tiger CONTROL=ulcas1.ctl ').
    Regards
    JIJU

    I took the mention of the Forms method to indicate that the requirement was another manifestation of that currently popular meme Calling calc.exe from APEX
    (At least I've thought there was a lot of it about at the moment...)
    @Jiju - there is no equivalent of host in ApEx. You can write your application to allow files to be uploaded to the server and parsed by your application, or written to the server file system and read as an external table. There are a lot of threads about this kind of thing in this forum: search for "file upload"...

  • How to open files using the Windows associated program?

    I have a LV program that is generating a list of files that I may want to open using the associated Windows program. Some are standard Office files but others require proprietary analysis programs.  All have Windows associations such that I can double click on the file name in the Windows file manager and launch the appropriate program. I would like to mimic this behavior within my LV program but without coding a case for each file extension, some of which I may not anticipate now.

    There are some problems with that VI.  I have one user that I had to track a problem down with trying to open a PDF file.  Their registry key HKEY_CLASSES_ROOT\.pdf was read in with a value of "AcroExch.Document                 " (with a lot of spaces after it), which prevented this VI from finding the next key (AcroExch.Document\shell\open\command) which identifies the path to Adobe Acrobat.  Instead of getting the path to Adobe Acrobat, I got back "Adobe Acrobat 7.0 Document" as the path (see attached error).
    I checked the key with the Windows registry editor, and it did NOT show the extra spaces.  However, just opening the key and selecting OK (without making changes) was enough to clear the problem.
    Not sure if this problem is with the registry keys that Adobe Acrobat created when it was installed or upgraded (the user was on version 9.0, but there are older versions on that machine, too), or if the problem was with the LabVIEW registry key readers in Open a Document on Disk.vi.
    Message Edited by Joe Gerhardstein on 05-13-2009 03:13 PM
    Message Edited by Joe Gerhardstein on 05-13-2009 03:17 PM
    Joe Gerhardstein
    Averna Test Systems
    Certified LabVIEW Architect
    http://www.averna.com
    Attachments:
    Open a Document.jpg ‏82 KB

  • Captivate 8 Continually Crashes: When trying to publish, When trying to use the Object Style Manager. Also it is blocked by Windows Firewall (adobecaptivatews) every time it launches. Working with Captivate App Packager the pane to import from Adobe Edge

    Captivate 8 Continually Crashes: When trying to publish, When trying to use the Object Style Manager. Also it is blocked by Windows Firewall (adobecaptivatews) every time it launches. Working with Captivate App Packager the pane to import from Adobe Edge is missing, so not clear how to import. Overall it seems unstable. Am I doing something wrong? Trying to evaluate before buying so working on a trial version (14 days left), but a bit concerned with Captivate 8 Performance. Please help! :-

    Hi Vikram and Lilybiri,
    Thanks for your responses :-)
    I'm working on Windows 8.1... I think that I may have found the issue... I was saving the file in a project directory rather than the default My Captivate Projects folder...
    Perhaps Captivate was struggling to find resources it needed?
    It hasn't crashed for a while now, though it is struggling - I'm working with a 54 slide PPT presentation that is linked and it takes a very long time to interact.
    Sometimes it says that I've removed slides, which I haven't?
    Best,
    Christy.

  • Force code execute when user closes OOB lightswitch app using the windows close red X

    I've created a lightswitch app using Forms Authentication.  If the user closes the application using the window close red 'X', I need to update a custom user profile table.  Is this possible?

    I use this code and it works!
    I handle the closing event of the user and I break it, execute my code ed after closing the application.
    Under you see the code that I use in my application.vb :
    Public Class Uscita
    ' Dichiara un evento per la classe
    Public Event Event1()
    ' Definisce un metodo per richiamare l'evento
    Sub CausaEvento()
    RaiseEvent Event1()
    End Sub
    End Class
    Protected Sub EsceAPP()
    Dim Obj As New Uscita
    AddHandler Obj.Event1, AddressOf Me.EventoUscita
    ' Provoca l'esecuzione dell'evento
    Obj.CausaEvento()
    End Sub
    Sub Eventouscita()
    Dispatchers.Main.BeginInvoke(Sub()
    RemoveHandler _mainWindowClose.Closing, AddressOf MainWindow_Closing
    System.Windows.Application.Current.MainWindow.Close()
    End Sub)
    End Sub
    Private Sub Application_loggedin()
    Try
    Dispatchers.Main.BeginInvoke(Sub()
    _mainWindowClose = System.Windows.Application.Current.MainWindow
    AddHandler _mainWindowClose.Closing, AddressOf MainWindow_Closing
    End Sub)
    Catch ex As Exception
    MessageBox.Show(ex.Message)
    End Try
    End Sub
    Private Sub MainWindow_Closing(ByVal sender As Object, ByVal e As ClosingEventArgs)
    If MessageBox.Show("Vuoi Veramente uscire?", "Conferma", MessageBoxOption.OkCancel) = Windows.MessageBoxResult.Cancel Then
    'Elimina l'uscita utente
    e.Cancel = True
    Else
    'Interrompe momentaneamente l'uscita dell'utente per eseguire l'aggiornamento della tabella utenti loggati
    e.Cancel = True
    'Aggiorna la tabella utenti loggati ed esce dall'applicativo
    Me.Details.Dispatcher.BeginInvoke(Sub()
    Dim ws = CreateDataWorkspace()
    Dim query = ws.ApplicationData.UtentiLoggatis.Where(Function(c) c.UserName = Me.User.FullName).FirstOrDefault
    query.OnLineImage = MyImageHelper.GetImageByName("RedLight.png")
    query.OnLIne = "OFF"
    query.Logout = Now
    ws.ApplicationData.SaveChanges()
    'Chiama la routine per uscire dall'applicazione
    EsceAPP()
    End Sub)
    End If
    End Sub

Maybe you are looking for

  • Master Detail on same page

    Hi, I have a custom master detail requirement. The page is currently only for CREATE, no query requirement. There are 2 custom tables involved and a common column (process_id). When I only have the MASTER detail on the page (VO-EO) and save it is fin

  • How do i access files from my old hard drive on my mac book pro with a new hard drive?

    I recently got more RAM as well as a new and bigger hard drive installed on my 2008 MacBook Pro. I backed up the files on an external hard drive, and now I want to be able to access those files (ie: my passwords from my old computer hard drive "keych

  • Can't associate Planning Outline to Business Rule in EAS

    Hi all I've searched through this forum but can't seem to find a solution to my issue on any of the existing threads, I have tried what has been suggested to others who seem to have the same problem. My issue is this ... When I have a Business Rule o

  • Upload feature

    I am creating a a website for someone else who would like the option of uploading there own pictures to the photo gallery if anyone knows any java script or HTML that will allow me to add this feature or knows were to find it I would greatly apprecia

  • Startup Class in WebLogic server 6.1

    I Have a Java application as startup class in Weblogic server 6.1 . I need to stop the application without restarting the Weblogi server (The startup class should be removed and the change should be reflected in WebLogic server). Is it possible to ac