Executing Jobs on remote host.

Good Afternoon, everybody.
It is possible to use dbms_scheduler to run jobs on other hosts?
For instance, the procedure calling the dbms_scheduler.run_jon is in machine A,
but the job is going to run on Machine B and so it's alterations will be made in Machine B.

Hello,
yes in 11.2 you can setup a scheduler agent which can execute jobs that come from a remote database host.
See
http://docs.oracle.com/cd/E14072_01/server.112/e10595/schedadmin001.htm
regards
Peter

Similar Messages

  • Executing PowerShell scripts on a remote host

    I need to execute a PopwerShell script on a remote host (i.e. to add or remove Windows features).
    The script uses some Powershell commands to be executed on the remote host (i.e. to add or remove Windows features).
    I made part of the job but I am unable to go on...
    After enabling PSremoting on the target host I run a script with the following commands:
    winrm s winrm/config/client '@{TrustedHosts="remoteserver"}'
    $mysession = new-pssession -computername remoteserver -credential remotedomain\remoteuser
    If I enter the above lines interactiverly I can go on interactively by entering:
    Enter-PSSession $mysession
    and execute all the PowerShell commands I need.
    My problem is that everything must be part of a script.
    I attempted using "Invoke-command" with no success: maybe there is a syntax error or it is not the right command to be used in a script.
    Can anybody please provede a sample of a script containing PowerShell commands to be executed on the remore host?
    Regards
    marius

    You're on the right track.  You can use Invoke-Command with the same credentials (or PSSession from New-PSSession, if you prefer) to execute code remotely.  The tricky thing, unfortunately, will be the credentials.  Right now you're being
    prompted to enter a username and password, but in an unattended script, you'd need to have these credentials saved somehow.  That can open up a can of worms, depending on your requirements.
    The simplest way to do this is to hard-code the password in your script.  No one on the planet recomments actually doing this, because well, you've just exposed an admin password to the world.
    The safest way to do this is to log on as the same account that will be used to run the script, on the same computer where the script will be run, and enter the credentials once manually, and export them to an XML file.  With this approach, the credentials
    in the XML file will be encrypted with the Windows Data Protection API (DPAPI), and the keys necessary to decrypt that data are only available to the current user, on the current computer.
    If you need to be able to securely save the data and have it read by other users, or on other computers, things start to get more complicated.
    Here's an example of the DPAPI approach:
    # to create the credential file
    $cred = Get-Credential
    $cred | Export-Clixml -Path c:\myEncryptedCreds.xml
    # to use it later (on the same computer, by the same user)
    $cred = Import-Clixml -Path c:\myEncryptedCreds.xml
    Invoke-Command -ComputerName SomeComputer -Credential $cred -ScriptBlock {
    Do-Something

  • CC&B 2.3.1 startup showing "Unable to start remote host JVM" error

    When starting up a newly installed CC&B server (Linux Redhat 5.0, x86_64), using weblogic 10.3.5, and java 1.6.0_35, I am incurring this error. Log file snippet:
    specified via property spl.runtime.cobol.remote.jvmMaxLifetimeSecs, defaulting to 0
    - 2012-09-13 17:49:12,837 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (shared.environ.ApplicationProperties) Child JVM maximum COBOL requests is not spe
    cified via property spl.runtime.cobol.remote.jvmMaxRequests, defaulting to 0
    - 2012-09-13 17:49:12,838 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (cobol.host.CobolHostStartup) Using active JVM count of 2 for remote cobol executi
    on.
    - 2012-09-13 17:49:12,880 [pool-2-thread-1] ERROR (cobol.host.RemoteJVMFactoryImpl) Unable to start remote host JVM.
    java.io.IOException: Cannot run program "/srv/spl/ccb/CCBDEMO/bin/splcobjrun.sh": java.io.IOException: error=2, No such file or directory
    at java.lang.ProcessBuilder.start(ProcessBuilder.java:460)
    at java.lang.Runtime.exec(Runtime.java:593)
    at java.lang.Runtime.exec(Runtime.java:431)
    at java.lang.Runtime.exec(Runtime.java:369)
    at com.splwg.base.support.cobol.host.RemoteJVMFactoryImpl.addConnection(RemoteJVMFactoryImpl.java:87)
    at com.splwg.base.support.cobol.host.RotatingCommandRunnerProvider$ConnectionMonitor.addNecessaryConnections(RotatingCommandRunnerProvider.java:403)
    at com.splwg.base.support.cobol.host.RotatingCommandRunnerProvider$ConnectionMonitor.doHousekeeping(RotatingCommandRunnerProvider.java:330)
    at com.splwg.base.support.cobol.host.RotatingCommandRunnerProvider$ConnectionMonitor.run(RotatingCommandRunnerProvider.java:323)
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
    at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:317)
    at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:150)
    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$101(ScheduledThreadPoolExecutor.java:98)
    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.runPeriodic(ScheduledThreadPoolExecutor.java:180)
    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:204)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: java.io.IOException: java.io.IOException: error=2, No such file or directory
    Does anyone have any ideas?

    hi
    I face a similar issue as u faced . Please let me know the solution .
    Error in Log file : When trying to switch language.
    ZOHAIB - 169696-23-1 2012-01-09 15:23:22,624 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR (web.dataservlet.PageChange) Unexpected error.
    com.splwg.base.support.cobol.host.InputClosedException:
    The following stacked messages were reported as the LoggedException was rethrown:
    com.splwg.base.api.service.ServiceDispatcher$5.execute(ServiceDispatcher.java:248): Caught exception from SessionExecutable.execute()
    com.splwg.base.support.pagemaintenance.AbstractPageMaintenance.changeItem(AbstractPageMaintenance.java:134): Rollback: Change failed
    com.splwg.base.support.cobol.host.CommandRunnerHolder.invoke(CommandRunnerHolder.java:31): An exception occurred calling cobol program CIPZDATA
    com.splwg.base.support.cobol.host.OptimizedRemoteExecuterStub.sendRequestGetResponse(OptimizedRemoteExecuterStub.java:83): An exception has occurred calling the remote JVM
    com.splwg.base.support.cobol.host.OptimizedRemoteExecuterStub.sendRequestGetResponse(OptimizedRemoteExecuterStub.java:83): An exception occurred invoking remote command.

  • 10G dbconsole:  A remote host refused an attempted connect operation.

    We have 10.2 running on AIX. I previously had dbconole running fine, however, something was changed and now when I log into dbconsole I get the error "IOException in sending Request :: A remote host refused an attempted connect operation.". I can still administer database stuff (user, tablespaces) but any operation that tries to access the host fails. For instance I can't schedule a job nor change the operating system credentials. What's really wierd is that on the home page it shows database down, listener down, and agent failed. Obviously, the database and the listener are not down or I wouldn't even be able to get in.
    Help appreciated.
    Kirk

    emagent.trc
    07-03-26 15:50:43 Thread-1026 ERROR fetchlets.oslinetok: Process stderr = /u01/app/oracle/product/10.2.0/db_1/bin/emctl[333]: /tmp/sh401660.13: 0403-005 Cannot create the specified file.
    2007-03-26 15:50:43 Thread-1026 ERROR engine: [oracle_emd,fcotaix2.mccnet.mccneb.edu:3938,EMDUploadStats] : nmeegd_GetMetricData failed : em_error=failed to get upload statistics:
    /u01/app/oracle/product/10.2.0/db_1/bin/emctl[333]: /tmp/sh401660.13: 0403-005 Cannot create the specified file.
    2007-03-26 15:50:52 Thread-1280 ERROR pingManager: nmepm_pingReposURL: Error in request response. code = 400. text =
    2007-03-26 15:50:56 Thread-1027 ERROR http: 11: snmehl_read: error on read: The network is not currently available. (error = 69)
    2007-03-26 15:50:56 Thread-1027 ERROR upload: FxferSend: HTTP Error=-1 reading request response from: http://fcotaix2.mccnet.mccneb.edu:1158/em/upload/
    2007-03-26 15:50:56 Thread-1027 ERROR upload: Failed to upload file B0006595.xml, ret = -2
    2007-03-26 15:50:56 Thread-1027 ERROR http: snmehl_connect: Failed to get address for fcotaix2.mccnet.mccneb.edu: Authoritive Answer Host not found (error = 1)
    2007-03-26 15:50:56 Thread-1027 ERROR upload: FxferSend: Cannot connect to: http://fcotaix2.mccnet.mccneb.edu:1158/em/upload/. retStatus=-32
    2007-03-26 15:50:56 Thread-1027 ERROR upload: Failed to upload file B0006595.xml, ret = -2
    2007-03-26 15:50:56 Thread-1027 ERROR http: snmehl_connect: Failed to get address for fcotaix2.mccnet.mccneb.edu: Authoritive Answer Host not found (error = 1)
    2007-03-26 15:50:56 Thread-1027 ERROR upload: FxferSend: Cannot connect to: http://fcotaix2.mccnet.mccneb.edu:1158/em/upload/. retStatus=-32
    2007-03-26 15:50:56 Thread-1027 ERROR upload: Failed to upload file B0006595.xml, ret = -2
    2007-03-26 15:50:56 Thread-1027 ERROR upload: 3 Failures in a row for B0006595.xml, we give up
    2007-03-26 15:50:56 Thread-1027 ERROR upload: Error in uploadXMLFiles. Trying again in 86.00 seconds.

  • SOAP: call failed: java.io.EOFException: Connection closed by remote host

    Hi folks,
    my friday crusher:
    We have a sync RFC-PI-SOAP scenario.
    All is working fine in Dev system.
    After moving into Test following error is displayed as the SOAP response message:
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIAdapterFramework</SAP:Category>
      <SAP:Code area="MESSAGE">GENERAL</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
    <SAP:AdditionalText>com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.io.EOFException: Connection closed by remote host.</SAP:AdditionalText>
      <SAP:Stack />
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Also Channel Monitoring says:
    Message-Verarbeitung fehlgeschlagen. Grund: com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.io.EOFException: Connection closed by remote host.
    Couldn´t find any hints in SDN and the web to this issue.
    Does anyone of you has made experiences with that problem?
    Maybe it´s a system parameter for time out SOAP connections....?
    Many thanks for your help
    -and-
    have a great weekend!
    Cheers
    André

    Very strange!
    But I have the solution:
    I have looked into channel monitoring / RWB again.
    There I saw, this PI is using two clusters on two application servers.
    Everytime the SOAP call is executed through the frist cluster, all was fine.
    But no SOAP call was successfully executed by the second cluster.
    Fortuity? No!
    The second cluster node / app server wasn´t registered for internet access in the used proxy server.
    So it wasn´t an PI issue.
    Now, all is fine & I´m happy!
    Thanks @all for helping!
    Cheers,
    André

  • How to display a file on remote host?

    Hi, All,
    I want to know how to display a text file on a remote host on APEX.
    In my APEX application, I call a OS command which execute a shell script on a remote host. The shell script will run for 5mins, and send out its running status on the remote host every 10 seconds.
    For APEX application, I want to display the output file on the remote host, and refresh the screen every 10 seconds. So the user can get the running status while the shell script is running.
    Thanks in advance for any advice.
    Sharon.Ni

    I call a OS command which execute a shell script on a remote hostI am assuming that you are using a Java wrapper to execute the OS script.
    <li>If so add another script that 'echo's or displays(cat) the file content in your OS
    <li> Add another java wrapper that runs the script (PLSQL OS COMMAND library can return the unix output of a script to PLSQL and is feature rich)
    <li> Have a PLSQL ondemand process that runs the Java code that returns the file content_(it can even return a clob) to JS ( using htp.p).
    <li> In the page have a timer JS which calls the Ondemadn process and put the content into an HTML div(eg by using html() function) with the Ondemand processes return string.

  • Error in uploading files on remote host

    hello all
    i use commons-net-2.2.jar for connection to my FTP account and managing my directories and uploading files on the remote server
    i use the below statements for 1- connecting to my ftp account of my host 2- listing files on the htdocs/images directory of my host and 3-uploading a file on my host
    firstly i import this classes from commons-net.jar to my servlet
    *import org.apache.commons.net.ftp.FTP;*
    *import org.apache.commons.net.ftp.FTPClient;*
    *import org.apache.commons.net.ftp.FTPFile;*
    *import org.apache.commons.net.ftp.FTPReply;*
    then i connet from ftp protocol to the remote host
    *FTPClient client = new FTPClient();*
                *// Connect to the FTP server as anonymous*
                *client.connect("www.salekan.ir");// setting ftp host*
                *client.login( "MyUsername", "MyPassword" ); //setting ftp username and password*
                *client.setFileType(FTP.BINARY_FILE_TYPE);*
                *String remoteDir = "/htdocs/images";*
                *client.changeWorkingDirectory(remoteDir);// change working directory to htdocs/images*
                *int reply=client.getReplyCode();*
                *if(FTPReply.isPositiveCompletion(reply)){// testing the connection*
                    *out.print("Connected Success...<br/>");*
    then listing the files on the htdocs/images directory by this statements
    Code:
    *FTPFile[] remoteFiles = client.listFiles();//listing files on the folder to a array*
                *out.print( "Files in " + remoteDir+" count= "+ remoteFiles.length +"<br/>" );*
                *for (int i = 0; i < remoteFiles.length; i++) {*
                    *String name = remoteFiles.getName( );*
    *long length = remoteFiles[i].getSize( );*
    out.print( name + ":\t\t" + length +"<br/>" );
    and finally i tried to upload text1.txt file to the working directory of the remote server and then disconnect
    Code:
    File file=new File("c:\\text1.txt");
    *if(file.isFile()){*
    out.print("<br/>"+file.getName()+"<br/>");
    InputStream in=new FileInputStream(file);
    client.storeFile(file.getName(), in);
    out.print("Uploading Success");
    client.disconnect( );
    when i run this web app and this servlet on my computer and localhost this servlet execute correctly and the file upload on the server correctly
    but when i send this web app and run from there step1: connecting to the host using ftp protocole and step2: listing the files execute correctly but step3:uploading file on the server dont run and don't send any errors(run incorrectly)
    Edited by: EJP on 7/02/2011 11:45: used the code tags. Please copy.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    step3:uploading file on the server dont run and don't send any errors(run incorrectly)Please make up your mind. Either it doesn't run or it runs incorrectly. Which is it? and if 'incorrectly', please define 'incorrect'.

  • CCMS Error - There are system problems on the remote host (system failure)

    Hi,
    I have installed the SAPCCMSR agent in the AccAD(Accelerated Application Delivery) server. However, when I execute OS07 and try to view the CPU usage, I encountered this error:
    There are system problems on the remote host (system failure)
    Message no. S1308
    Any idea what does the error mean?
    Thanks.
    KY

    Hi,
    Thanks for replying. The problem has been resolved after upgrading the sapccmsr.
    Thanks.
    Regards,
    KY

  • Vi fails to load on remote host

    I am trying to run a vi on a remote RT pxi chassis from teststand. I have two vi's the first is very simple and runs on the RT remote host fine. The second is calling niFgen sub vi's which will not run. I get the error "failed to load vi on remote host. The vi is not executable" and I get an error -17600. However if I run this vi from labview targeting the RT system it runs fine. Also if I run the vi from Labview and then without unloading it I run my sequence this also works. Any ideas anyone?
    Nick

    Nick,
    Any dynamic dependencies of the VI need to be on the target if you want to run it using TestStand. LabVIEW takes care of downloading the required DLLs for you, but TestStand won't.
    - The first step is to make sure NI-FGEN is installed on the target.
    - Try to narrow the behavior to a single VI and then open it up to see if it's making a call to a DLL, if it needs a DLL then place it on your NI-RT\System\ folder on the target and try again. If this is the case, please reply with the name of the DLL so we can take a more detailed look at the issue.
    Let me know,
    Alejandro

  • [SOLVED] openssl: REMOTE HOST IDENTIFICATION HAS CHANGED! Hacked?

    There's a bit of Windowsisms in here, but one of the main questions is about openssl. As well, this post could help others regardless of the OS involved.
    I remote into a Windows 7 workstation at my work using xfreerdp going through Server 2008 R2. RDP is closed at the firewall to all but two IP addresses and neither of those uses port 3389. I'm connecting through NTLM for authentication then the connection is encrypted using TLS. FreeRDP uses openssl to handle SSL/TLS connections.
    Last week I remoted in my workstation first thing in the morning as I always do with no problems. I went to work that day and everything was normal. Later that night I went to remote in again and I got the "WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!" message. I followed the advice in the message and contacted the system admin:
    me wrote:skottish, were there any major changes in the system that could cause the RSA fingerprint to change?
    skottish wrote:I don't think so skottish. There were no changes made to the system beyond a simple update to the server's spam filters.
    There was nothing major that changed on the server and I wasn't anywhere in the system that could have forced a change. The only server-side work that I did was with some accounts in Active Directory and updated Exchange's spam filters.
    The way that I see it, and I may be missing something, is that there are four possibilities:
    1) A MITM attack. If this is the case then it was successful and I haven't tracked it down yet
    2) Someone accidentally changed something in the server
    3) Someone intentionally changed something in the server
    4) The server made it's own changes (which sadly wouldn't be out of character for a MS server)
    We do have an outside partner that has server access, but they told me that they weren't in there and I see no evidence to the contrary.
    My first question is am I missing any other possibilities?
    The second is how does openssl generate the RSA fingerprint of a computer? I've read many, many pages and so far I'm not finding any answers. If I could verify the fingerprint manually, that would help.
    The third is that if it is a MITM attack, what are the appropriate steps to identify it? I went through all of the ARP tables on the server and the workstation looking to see if anything is out of line and everything looks fine. I could run a capture off of our firewall and see if there's anything there, but I don't know Wireshark all that well, so I'm not sure what I would be looking for exactly.
    Thoughts?
    Last edited by skottish (2012-09-22 03:10:22)

    litemotiv wrote:Something like this happened to me before and it was caused by an unforeseen clock/time change, is that somehow possible in your case?
    Well, there was a clock change on my end that same day. For some reason openntpd was running about two minutes behind and it had been since I migrated to systemd. I switched to ntpd in order to correct it. I can't imagine why a change on the client side would make a difference though. But, I'm open to the possibility.
    --EDIT--
    I tried some experiments with openntpd, ntp, and changing clocks and such, but I couldn't trigger the error. I'm still open to the possibility though.
    -- RESOLUTION EDIT --
    It's not worth bumping this thread over the resolution of this, but someone may be interested in what happened for their own reference later.
    I realized that I was looking in the wrong direction and discovered that Windows automatically changed security keys for reasons that I don't understand yet. openssl did it's job perfectly. There was a force that wasn't the system administrator that made changes to the security of the system on a machine that hadn't changed physically. Is it possible that there has been an attack still? Yes, it's just much more unlikely now.
    Last edited by skottish (2012-09-22 03:25:31)

  • IAIK: java.io.EOFException: Connection closed by remote host

    Hi Experts,
    I'm having a performance issue during login and I found in Trace log the logs below.
    Can you please tell me what things I should look at or where maybe my issue?
    com.sap.engine.core.manipulator.TCPRunnableConnection
    com.sap.engine.core.manipulator.TCPRunnableConnection.init()
    OrderedChannel for http service
    Warning: System/Network
    Java: Cannot get input and output streams from socket. ConnectionsManipulator is not initialized.
    [EXCEPTION]
    {0}#1#java.io.EOFException: Connection closed by remote host.
         at iaik.security.ssl.Utils.a(Unknown Source)
         at iaik.security.ssl.o.c(Unknown Source)
         at iaik.security.ssl.r.f(Unknown Source)
         at iaik.security.ssl.f.c(Unknown Source)
         at iaik.security.ssl.f.a(Unknown Source)
         at iaik.security.ssl.r.d(Unknown Source)
         at iaik.security.ssl.SSLTransport.startHandshake(Unknown Source)
         at iaik.security.ssl.SSLSocket.startHandshake(Unknown Source)
         at com.sap.engine.services.ssl.factory.SSLSocket.startHandshake(SSLSocket.java:162)
         at com.sap.engine.services.ssl.factory.SSLSocket.getInputStream(SSLSocket.java:280)
         at com.sap.engine.core.manipulator.TCPRunnableConnection.init(TCPRunnableConnection.java:351)
         at com.sap.engine.core.manipulator.TCPRunnableConnection.run(TCPRunnableConnection.java:554)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl6.SingleThread.execute(SingleThread.java:80)
         at com.sap.engine.core.thread.impl6.SingleThread.run(SingleThread.java:150)
    Thank you very much,
    Jemaru

    Hello Jemaru,
    Don't you have some more information. This is the error in the Java stack what does the R3/Abap stack returns on this message?
    Kind regards,
    JK

  • Client framework within SSIS to Access OData Remote Host

    I need some advice on which direction to go regarding the best way to import data from an OData remote host to an mssql2012 instance. On average the data that I would need to import consists of 15 data objects, 8 of which require about 14,000 rows averaging
    about 1,200 bytes per row. The other remaining objects average about 1/3 of that. This will execute about 4 times per day.
    I have created an SSIS controller package using C# scripting with the System.Net.Http classes as a POC, which manages the thresholds and parallelism of accessing and writing the data. This was developed on the Visual Studio version 12 IDE, some of which
    I made visible here: (Stackoverflow Code Review ) . The code works, however, there are timeouts that manifest as thread
    drops/task cancellations, etc. during peak operational hours.
    It is time for me to refactor this package in such a way, that it can be used as an OData pattern we can use in our shop going forward.  I am uncertain how to address this challenge. There are conflicting references online--some approaches lean toward
    WCF, others point out newer asp.net OData assemblies, etc. I am unclear on Microsoft's direction regarding OData consumption of remote data. There is more published clarity on providing OData services as a provider for clients to consume.
    The more ideas, thoughts, etc. that I hear from this community the better! :)

    Arthur,
    Yes, there have been timeout occurrences. I've addressed these by switching up asynch calls to bisynch calls where I wait for return communication--then manage the result accordingly.
    I am doing all of the OData data retrieval and session management through c# tasks within SSIS as an http client to the remote host.
    The OData component you and David mentioned is not included in this POC because I was unable to get it to connect to the 3rd party uri without throwing an xml parsing error on connect attempts. I was however, able to use the OData component in another SSIS
    package connecting to Sharepoint as service documents. I don't have that option for the 3rd party objects.
    This is less of a question and more of an open discussion. Faced with an OData component that isn't working in SSIS, what approach would you take?

  • Use VI server to start an LabVIEW executable on a remote computer ?

    I have VI server starting an executable on the same computer; however, when I try to start an executable on a remote computer I get a message that the remote host refuses connection.
    I think I may have to set priveleges both at the Windows (XP) and perhaps at the LabVIEW LEVEL (in the INI file ?).
    Any help would be greatly appreciated.

    You cannot use the TCP VI Server to start an executable remotely. Open Application Reference opens a connection to an executable that is already running.
    You have to use DCOM/ActiveX to do that. See here.
    LabVIEW, C'est LabVIEW

  • Error message ftp-connection to remote host

    hi guys,
    i have problems with a ftp-connection between a business-service (alsb) and a remote-host.( we used alsb 2.6 rp1)
    i pick-up a file per ftp-proxy-service on a remote host. this is possible without problems. then i convert this file and i want to rewrite this file with a ftp-business-service back to the remotehost. but i get this error-message
    <con:errorCode>BEA-380000</con:errorCode>
    <con:reason>
    General runtime error: Received error response (502) from FTP server [scylla.ce.ced] IP [10.1.224.7] port [21] status [connected] upon executing command [port 192,168,122,254,12,86]
    who can help me??
    regards thomas

    Open up your site definition (double-click on the site name in the File panel or choose Site > Manage Sites > Edit) and go to the Remote Info category. There, click Use Firewall (if it isn't already selected) - press Test to try the default firewall settings. If that doesn't work, click Firewall Settings. You'll see two relevant settings about 2/3 down - Firewall host and Firewall port. If Firewall port is 21, there probably is something blocking the port.
    On Windows XP, you may have the Windows Firewall installed and blocking. Here's how you get to it:
    To open Windows Firewall
    1.
    Click Start and then click Control Panel.
    2.
    In the control panel, click Windows Security Center.
    3.
    Click Windows Firewall.
    Once you have that open, you'll need to set Dreamweaver as an exception to blocking:
    On the Exceptions tab, click Add                     Program.
    In the list of programs, click the name of the program (Dreamweaver) that you                     want to add, and then click OK. If the name of your program is                     not in the list of programs, click Browse to locate the Dreamweaver.exe in the Program Files folder and then click OK.
    Hope this helps - Joe
    Joseph Lowery
    Author, Dreamweaver CS4 Bible

  • Manipulating sql database on a remote host iphone

    well i want to manipulate an sql database on a remote host. The database will have an id and a value. I want to add my id and my value using my iphone and read some id's from the database could you tell me if i can do that on iphone and what tools will i need (like sql lite or what).
    Sorry for my bad english.

    PostgreSQL is a popular open source database which has ported their C client library to iOS.  I am not aware of the MySQL client library having been ported to iOS, but that is something you can research.  An intermediary web service would be something you write (PHP, Groovy, .NET, etc) that would handle requests from the iOS apps and respond with responses are appropriate after executing the SQL statements after proper validation and error checking of input statements.  You can send data in JSON or any easy to use format.

Maybe you are looking for