DBMS_SCHEDULER - ORA-02064: distributed operation not supported

I am getting this error:
ORA-02064: distributed operation not supported
using the DBMS_SCHEDULER package in Database 10g. The code works successfully in PL/SQL DEVELOPER inside the database but when I try to run the code through PSP pages on the web, I get this error. The erro happens when this method is executed in DBMS_SCHEDULER:
DBMS_SCHEDULER.CREATE_PROGRAM(
PROGRAM_NAME => 'ROADS_FTP',
PROGRAM_TYPE => 'STORED_PROCEDURE',
PROGRAM_ACTION => 'pkg_report_t3.transfer_report',
NUMBER_OF_ARGUMENTS => 0,
ENABLED => FALSE,
COMMENTS => 'Highway Driving Conditions FTP Program');
Do anybody know how I can get this to work in a browser? Or why I am getting this error?
Thanks!

Agowda wrote:
hi
I'm just passing the values to the procedure .
Procedure is stored on a remote machine
procedure has a ddlAnd the DDL will implicitly issue a commit before and after that DDL statement (as all DDL statements do). So you ARE doing a commit in a romote procedure call, hence why you're getting the error.
If you want to remotely create a user you need to issue the DDL in the manner I described.

Similar Messages

  • ORA-02064: distributed operation not supported

    Im getting this WARNING when im executing my mapping.
    My mapping involves selecting a data from a splitter and updating and inserting two tables respectively. ONe set of data from the splitter will be inserted into 1 table and the other set of output from the splitter is updated into the 2nd table.
    This is working fine. But i dont know why im getting this warning.
    Is it a very serious thing or can i ignore this?

    Hi Vibhuti,
    Looking up the desciption for this warning gives me this:
    ORA-02064: distributed operation not supported
    Cause: One of the following unsupported operations was attempted:
    1. array execute of a remote update with a subquery that references a dblink, or
    2. an update of a long column with bind variable and an update of a second column with a subquery that both references a dblink and a bind variable, or
    3. a commit is issued in a coordinated session from an RPC procedure call with OUT parameters or function call.
    Action: simplify remote update statement
    I have not encountered this error myself, but my guess would be you are running into scenario 1 with your target tables or source tables in a remote database.
    See if running the mapping in row-based mode gets rid of the warning.
    Btw, are you sure it's merely a warning and not an error ? I.e. are you targets really updated the way you expect ?
    Ragnar

  • Getting "ORA-12534: TNS:operation not supported" connecting as sysdba

    Hi,
    We are getting "ORA-12534: TNS:operation not supported" error, while connecting as sysdba.
    bash-2.03$ sqlplus '/as sysdba'
    SQL*Plus: Release 10.2.0.4.0 - Production on Thu Feb 23 10:16:16 2012
    Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
    ERROR:
    ORA-12534: TNS:operation not supported
    Enter user-name:
    I can able to connect to database using tns entry without any issue.
    SQLNET.ORA Contents:
    ====================
    bash-2.03$ cat /var/opt/oracle/sqlnet.ora
    ENCRYPTION_WALLET_LOCATION=(SOURCE=(METHOD=FILE)(METHOD_DATA=(DIRECTORY=/dboracle/orabase/product/10.2.0/dbs/wallet/)))
    SQLNET.WALLET_OVERRIDE = TRUE
    SSL_CLIENT_AUTHENTICATION = FALSE
    SSL_VERSION = 0
    I am not aware of wallet. Please help me out to resolve this issue.
    Thank you.
    Regards,
    Dasarath

    >
    SQLNET.ORA Contents:
    ====================
    bash-2.03$ cat /var/opt/oracle/sqlnet.ora
    ENCRYPTION_WALLET_LOCATION=(SOURCE=(METHOD=FILE)(METHOD_DATA=(DIRECTORY=/dboracle/orabase/product/10.2.0/dbs/wallet/)))
    SQLNET.WALLET_OVERRIDE = TRUE
    SSL_CLIENT_AUTHENTICATION = FALSE
    SSL_VERSION = 0
    >
    You may want to replace ENCRYPTION_WALLET_LOCATION keyword with just WALLET_LOCATION in your sqlnet.ora file.
    EWL is used only for TDE but if you want to use external password store, you will have to use WALLET_LOCATION rather than ENCRYPTION_WALLET_LOCATION. However if you are going to use both TDE and external password respository, then make sure your sqlnet.ora file has both entries ENCRYPTION_WALLET_LOCATION as well as WALLET_LOCATION
    Regards
    Venkat

  • ORA-02070 database does not support semi join in this context

    The following merge sql on Oracle 11g throws "ORA-02070 database does not support semi join in this context".
    MERGE INTO ORDERS tgt
    USING
    SELECT C.short_name, C.customer_id
    FROM customers C
    WHERE customer_id IN ( SELECT distinct customer id FROM orders O WHERE O.order_date > SYSDATE - 3 )
    )src
    ON ( tgt.customer_id=src.customer_id )
    WHEN MATCHED THEN
    UPDATE SET tgt.short_name=src.short_name;
    Any ideas? This piece of code was working on an earlier version of Oracle 11g.
    Thanks,
    Anu

    Hi, Anu,
    You can try this:
    MERGE INTO ORDERS     tgt
    USING
            SELECT  C.short_name, C.customer_id
         FROM      customers C
    )                src
    ON (     tgt.customer_id = src.customer_id
       AND     tgt.order_date     > SYSDATE - 3
    WHEN MATCHED THEN
         UPDATE  SET     tgt.short_name = src.short_name; It's surprising that the error message mentioned a semi-join, because you weren't doing a semi-join. An example of a semi-join is:
    MERGE INTO ORDERS     tgt
    USING
            SELECT DISTINCT
                   C.short_name, C.customer_id
         FROM        customers C
         JOIN       orders    o     ON  c.customer_id  = o.customer_id
         WHERE       o.order_date     > SYSDATE - 3
    )                src
    ON (tgt.customer_id = src.customer_id)
    WHEN MATCHED THEN
         UPDATE  SET     tgt.short_name = src.short_name; but perhaps the optimizer re-wrote your IN sub-query as a semi-join.
    An EXISTS sub-query is another way to get the results you want, unless it causes ORA-02070, also. Natrually, I can't test anythihng, since you didn't post any sample data.
    Edited by: Frank Kulash on Apr 5, 2011 11:34 AM

  • RAID 5 raidctl -- operation not support with volume of this level

    How can I make a RAID-5 with 6 disks?
    raidctl -c -r 5 c1t2d0 c1t3d0 c1t4d0 c1t5d0 c1t6d0
    Creating RAID volume will destroy all data on spare space of member disks, proceed (yes/no)? yes
    Operation not support with volume of this level.
    I'm not sure what the message "Operation not support with volume of this level" means or how to fix it.

    Hi,
    I presume you are trying to create a RAID volume on the internal disks of a Sun Server?
    If so the LSI RAID controller chip may not support RAID5 in this server.
    What is the model of the Sun Server Hardware you are trying this on?
    You may also wish to post the output of "raidctl -S" to show us the particular LSI
    RAID chip in use.
    ta

  • Can't listen for connections - Operation not supported

    Hi,
    We have install OSB Client on HP-UX 11i V2 HP rx5670 Server as per Oracle Secure backup Installation Guide.
    But we are getting following error message. Please help us to solve the issue:
    2010/12/29.10:23:02 can't listen for connections - Operation not supported
    # /sbin/init.d/OracleBackup start
    Starting Oracle Secure Backup services daemon.
    2010/12/29.10:23:27 can't listen for connections - Operation not supported
    Thanks
    Khairul/Bangladesh

    Have a look at the observiced.log file to see if that has any more detail, this is in /usr/tmp.
    I would check to see if there is something else on the system that is using TCP port 400 or 10000. On Solaris I've seen the webmin installation using port 10000. Both those ports need to be free for OSB to be able to start.
    With OSB stopped, you can "telnet <hostname> 400" and "telnet <hostname> 10000" to see if it connects. If it does then something is listening on that port.
    You should be able to do "netstat -na" as well, to show you listening ports.
    Rich

  • Enhancement Implementation - Operation not supported by the selected object

    Hi,
    I have created an Enhancement Implementation (EI) of Enhancement Spot BADI_ACC_DOCUMENT via transaction SE19. When activating the EI, the following message occurs and the EI is not activated:
    Operation not supported by the selected object
    Message no. SEU_MANAGER061
    I have searched the forum and service marketplace for the message, but I still have no resolution of the problem. Any help is greatly appreciated.
    Thank you.

    It turned out to be a basis problem. Looking into transaction SM21 showed that the database was full.

  • "Operation not supported by backend" while getting photos from camera

    The situation is as follows:
    I'm trying to copy photos from camera using a file manager (thunar in this case). The attempt fails with a message "Operation not supported by backend".
    Configuration:
    uname: Linux xxx 3.9.6-1-ARCH #1 SMP PREEMPT Fri Jun 14 08:12:55 CEST 2013 x86_64 GNU/Linux
    libgphoto2 2.5.2-1
    gphoto2 2.5.2-1
    gvfs 1.16.3-1
    gvfs-gphoto2 1.16.3-1
    thunar 1.6.3-1
    mount info for this case:
    gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=1000,group_id=100)
    What is known:
    Everything was fine on 2013/06/13 - I was performing successfull copying operation on the day.
    The exactly same message started to appear on a different machine running Arch, with both unupdated Nautilus from 2.x line and latest pcmanfm. No other machines were tested.
    Only copying and moving files/directories via file manager doesn't work. I can browse the camera and delete files and directories with no problems.
    I can copy the files using cp (via gvfs mount).
    I can grab the files using gphoto2 from command line.
    Applications are able to open the files with no problems (via gvfs mount).
    Downgrading gvfs, gvfs-gphoto2, gphoto2 and libgphoto2 to versions from before 2013/06/13 doesn't fix the issue.
    Logs are clear.
    First I suspected that something is wrong with gvfs or libgphoto2, but I'm able to use them with no problems, as long as I don't try to copy a file via file manager. This could mean something is wrong with the file manager, but the issue suddenly affected three different file managers on two independent machines. And the logs remain silent. I have no idea how to deal with the issue.

    mpan wrote:Usable workaround, not requiring additional tools, was posted in the first post: use cp on mounted partition or gphoto2. The problem is not how to retrieve the files, as this is obvious, but how to copy them using file manager or how to trace source of the problem.
    Stupid me. Yes, you mentioned that. Sorry.

  • Cant Log In - getty: dev/console: Operation not supported by device

    Hello. My computer performance has dropped so I decided to run cron tasks and to rebuild the Launch Database. After doing this, I restarted my computer and all seemed well. I got to the login screen, clicked on my name, entered by credentials, and clicked login. I have my computer forced to use verbose mode for startup, shutdown, login, etc. So, at this point, the computer goes to the black verbose screen and I get a message that says:
    getty: dev/console: Operation not supported by device
    It hangs on that screen for about a minute and then returns back to the login screen. Same thing happens for all users, mine, the guest account, and the root account.
    I tried safe boot. Of course that was all happening in verbose mode, and stuff was flying on the screen. I left the room for a minute, and when I came back, the computer was off, so I started again and still couldn't log in.
    I reset PRAM and NVRAM to no avail.
    Any suggestions would be greatly appreciated. I would rather not have to archive and install because the space on my laptop is very limited and I might not have room for a complete archive and install.
    Thanks.

    in my case I looked back at the system.log when things were good and out of the blue (no punintended), crashdump 'crashed' with a segmentation fault (signal 11). Then getty starting restarting and now this happens on every boot. I replaced crashdump from the install disk and the same thing happens. Bad data should not cause a Unix process to take a segmentation fault (if written correctly) since this is a bad instruction/memory reference. So I am skeptical if a reinstall will help.

  • Cannot get brand new hard drive to work. Disk utility states operation not supported when I try to erase or partition?

    Without any success, I cannot get my hard drive to work in disk utilities. I am able to see the disk in the upper left hand column, but when trying to initiliaze the software always reads operation not supported. Any ideas?

    You probably have too new a hard disk.  Contact the hard disk manufacturer and ask what jumper setting is needed to drop to 1.5 Gbps SATA speed.
    Either that, or return the disk, and go to http://www.macsales.com/
    They can be sure to equip you with a proper hard disk.
    Note formatting is key as well:
    http://discussions.apple.com/docs/DOC-3003

  • LIKE Operator not supported from CMIS Search on Foundation Server

    I am running a CMIS query against Sharepoint foundation server.
    The app is returning the following error: One or more of the input parameters to the service method is missing or invalid
    The log files report the following: 
    CMIS Repository Interfaces    This operator is not supported:   like
    CMIS Repository Interfaces    Exception is thrown of type: Microsoft.SharePoint.CMIS.Data.Exception.InvalidArgumentException
    CMIS Repository Interfaces    Exception thrown in core dll. Microsoft.SharePoint.CMIS.Data.Exception.InvalidArgumentException: One or more of the input parameters to the service method is missing or invalid.
    CMIS Repository Interfaces    Constructing soap exception from  invalidArgument 
    Strange thing is the query works against Sharepoint Enterprise server after setting "Reduce storage requirements for text properties by using a hash for comparison” 
    Does anyone know if this is a limitation of Foundation Server or something in the CMIS Repository Interfaces
    Thank you.

    I've been testing Sharepoint 2010 CMIS api for a while and pretty much everything worked according to CMIS 1.0 spec except the Query which is unfinished work.
    As Alex already wrote only "=", "<=", ">=" and "<>" operators will work. LIKE and IN do not work for me either. And there are other issues that I found.
    Query does not return all properties defined for specific content type, but you can use them in the query: SELECT * FROM "Fixed Assets" WHERE Vendor_x0020_ID = '134' (Select all from "Fixed Assets" document library that holds
    documents of "Fixed Asset" content type). This query will run fine but will not return any custom properties for the "Fixed Asset" content type. Forcing select fields does not help either.
    Selecting SELECT Vendor_x0020_ID,Vendor_x0020_Name FROM "Fixed Asset"
    returns list of empty objects and properties tags:
    <queryResponse xmlns="http://docs.oasis-open.org/ns/cmis/messaging/200908/">
    <objects>
    <objects>
    <properties xmlns="http://docs.oasis-open.org/ns/cmis/core/200908/"/>
    </objects>
    <objects>
    <properties xmlns="http://docs.oasis-open.org/ns/cmis/core/200908/"/>
    </objects>
    <objects>
    <properties xmlns="http://docs.oasis-open.org/ns/cmis/core/200908/"/>
    </objects>
    Content type id (cmis:objectTypeId) is not queryable type. If your document library contains multiple content types you cannot query by content type. Funny thing is that you can query by ContentTypeId which is Sharepoint property name for content type.
    And, I am sure there is more :)
     My conclusion is that this version Sharepoint CMIS DiscoveryService is just a lousy implementation of SQL to CAML query translation. CAML is a strong query language and I don't see any CMIS SQL expression that cannot be easily converted to CAML. Unfortunately
    with the first version of Sharepoint CMIS producer this is not the case.
    Thanks,
    Boris

  • Init.ora error: Load Indicator not supported by OS

    I am getting this error dumped into my init'instance'.ora file
    every 34 seconds. Has anyone seen this before?
    Tue Sep 14 16:02:26 1999
    Load Indicator not supported by OS !
    Tue Sep 14 16:03:00 1999
    Load Indicator not supported by OS !
    Tue Sep 14 16:03:34 1999
    Load Indicator not supported by OS !
    Tue Sep 14 16:04:07 1999
    Load Indicator not supported by OS !
    Tue Sep 14 16:04:41 1999
    Load Indicator not supported by OS !
    Tue Sep 14 16:05:15 1999
    Load Indicator not supported by OS !
    Tue Sep 14 16:05:49 1999
    Load Indicator not supported by OS !
    Tue Sep 14 16:06:23 1999
    Load Indicator not supported by OS !
    Any help, guesses and all, would be welcomed.
    Jeff
    null

    Jeff Wiegand (guest) wrote:
    : I am getting this error dumped into my init'instance'.ora file
    : every 34 seconds. Has anyone seen this before?
    : Tue Sep 14 16:02:26 1999
    : Load Indicator not supported by OS !
    : Tue Sep 14 16:06:23 1999
    : Load Indicator not supported by OS !
    Yes, them are here. Not in init'instance'.ora, but in
    alert_instance.log and pmon_pid.trc. Every 34 secs.
    And as I can see, many people have that "trouble", I'm
    also have. This thread was waked up about month ago without
    any clarification/solutions...
    null

  • Operation Not Supported on Socket/Backup disc wont mount

    For a few months I have been wirelessly backing on a G5 iMac and Intel Macbook to a partition on a G4 mac mini with no problems. All are on Leopard and all updates applied.
    I now cant:
    connect to the Time Machine backup
    back up
    mount the sparesbundle
    Help! I have recently lost a harddrive on my mini and macbook so def want to back up!
    The error I get when I try to do the above is either "the backup disk could not be mounted' or 'not supported on this socket"
    I recently ran all updates. Also, until yesterday I had only used that partition for back ups. I used it to transfer iTunes music then deleted the folder and wondering if this has affected it.
    Thanks!
    Gus

    I run Time Machine between a dual G4 and an external RAID 1 drive connected by Firewire; no problems there, but I also decided to back up a Mac Mini to the same drive via Time Machine, over the network and through the G4 to reach the external drive. I wasn't expecting the sparsebundle structure to be created on the drive-- I had not heard of a sparsebundle before and thought Time Machine on the Mac Mini would create a backup structure similar to the one the G4 had created on the external drive, as I gather happens with a networked disk like Time Capsule. In any case, the Mac Mini created and populated the sparsebundle fine the first time it backed up and continued to add to it hourly/daily, but a few days later, after restarting the machines, the sparsebundle could no longer be mounted. I thought it might be something shaky in the Firewire link to the external drive, so I also tried backing up to a G4 internal drive which would then be backed up by the G4's Time Machine to the external drive. Same result-- the sparsebundle backup worked the first time and continued hourly/daily, but could no longer be mounted after restarting. (This seems to me like a simpler situation than some in the discussion, where people are dealing with a sparsebundle via a different machine than created it.) Permission fixing with chmod does not seem to have helped thus far, though I am not so familiar with chmod as to be sure I am doing it right. I'm approaching this incrementally, as I've heard the warnings about chmod's power and I'm not in a crisis mode at the moment, e.g., having lost data I really need to recover. Still, it seems reasonable to me to be able to use networked machines to spread valuable data recoverably across different physical drives, so I'm wondering why it is not simpler.

  • Mknod on qfs/samfs - mknod: Operation not supported

    I�m trying to install SAPs MaxDB in a cluster on a shared ha filesystem.While trying to create a communication pipe it fails.
    Is that a known limitation?
    xvm003sc >df -h /sapdb
    Filesystem             size   used  avail capacity  Mounted on
    sapdb                 1019M   368M   651M    37%    /sapdb
    xvm003sc >/opt/SUNWsamfs/sbin/samfsinfo sapdb
    samfsinfo: filesystem sapdb is mounted.
    name:     sapdb       version:     2    shared
    time:     Sat May 31 17:06:02 CEST 2008
    count:    2
    capacity:      00000000000fec00          DAU:         64
    space:         000000000009f240
    meta capacity: 0000000000019000          meta DAU:    16
    meta space:    0000000000017280
    ord  eq           capacity              space   device
      0 431   0000000000019000   0000000000017280   /dev/did/dsk/d6s5
      1 432   00000000000fec00   00000000000febc0   /dev/did/dsk/d15s3
    xvm003sc >pwd
    /sapdb/data/fifo
    xvm003sc >mknod test p
    mknod: Operation not supportedAm I missing something?
    Markus

    It was certainly a known limitation with the cluster file system (see http://docs.sun.com/app/docs/doc/820-2555/chapplanning-5007?l=en&a=view&q=cluster+mknod) I think, given your experience, you can assume this also applies to sQFS.
    Regards,
    Tim
    ---

  • ORA-02070: database  does not support operator PLSFUN in this context

    Can anyone tell me how to solve this issue?
    http://www.lslnet.com/linux/edosc/49/linux-49333299.htm
    Basically my problem is i can't put calling function and user defined type's field inside a materialized view. Thanks..

    TO_DISPLAY_UNIT is a function. Does this work if you alias the column? viz
    create materialized view lot_view
    refresh complete start with sysdate next sysdate+1/4096 with rowid for update as
    select GEOLOC, TO_DISPLAY_UNIT(A_AREA) as a_area
    from lot;What happens if you just use the function or the UDT but not both?
    Cheers, APC
    Blog : http://radiofreetooting.blogspot.com/

Maybe you are looking for