ORA-00604: error occurred at recursive SQL when the proc via db_link

Hello
I'm on 9.2.0.8 and got a strange problem with simple test cases
on source db:
CREATE OR REPLACE PROCEDURE ADMIN.gg_ref(out_tokens OUT SYS_REFCURSOR) is
  BEGIN
  OPEN out_tokens for select dummy from dual;
END ;
/


Now testing code localy:
SQL> var r refcursor
SQL> declare
  2   output sys_refcursor;
  3  begin
  4   adminx.gg_ref(output);
  5  :r:=output;
  6  end;
  7  /

PL/SQL procedure successfully completed.

SQL> print r

D
-
X


So its working.

I've got db_link to that db , and now call that proc via dblink from other 9.2.0.8 DB:


var r refcursor
  1  declare
  2   output sys_refcursor;
  3  begin
  4   admin.gg_ref@LINK_NAME(output);
  5  :r:=output;
  6* end;
SQL> /
declare
*
ERROR at line 1:
ORA-00604: error occurred at recursive SQL level 1
ORA-00900: invalid SQL statement
What wrong with my code?
Is there a any restriction that I'm not aware?
Concerning
GregG

GregG says:

What should my code looks like now?
Should I rewrite this as function returns the index of collection or something?

You can use DBMS_SQL - but use the remote package and not the local. It's a little more complex ito call interface you use a Ref Cursor, but is the same server-side. DBMS_SQL also provides a more comprehensive set of features to use the ref cursor interface.

Most, however, is add code - DBMS_SQL is a lower level interface (much closer to the real Oracle Call Interface/OIC):

 --// on remote database the procedure returns a DBMS_SQL cursor instead of a ref cursor
SQL> create or replace procedure FooProc( cur in out number, deptID number ) is
  2          rc      number;
  3  begin
  4          cur := DBMS_SQL.open_cursor;
  5
  6          DBMS_SQL.parse(
  7                  cur,
  8                  'select ename from emp where deptno = :deptID',
  9                  DBMS_SQL.native
 10          );
 11
 12          DBMS_SQL.Bind_Variable( cur, 'deptID', deptID );
 13
 14          rc := DBMS_SQL.Execute( cur );
 15  end;
 16  /

Procedure created.

--// from the local database side we call this remote proc
SQL> declare
  2          c               number;  --// instead of using sys_refcursor
  3          empName         varchar2(10); --// buffer to fetch column into
  4  begin
  5          FooProc@testdb( c, 10 );  --/ call the proc that creates the cursor
  6
  7          --// we need to define our fetch buffer for the 1st column in the
  8          --// SQL projection of that cursor (10 byte fetch buffer for 1st column)
  9          DBMS_SQL.define_column@testdb( c, 1, empName, 10 );
 10
 11          --// we now fetch from this cursor, but via the DBMS_SQL
 12          --// interface
 13          loop
 14                  --// fetch the row (exit when 0 rows are fetched)
 15                  exit when DBMS_SQL.Fetch_Rows@testdb( c ) = 0;
 16
 17                  --// copy value of 1st column in row into the local PL/SQL buffer
 18                  DBMS_SQL.column_value@testdb( c, 1, empName );
 19
 20                  --// record value it via dbms output
 21                  DBMS_OUTPUT.put_line( 'name='||empName||' deptID=10' );
 22          end loop;
 23
 24          --// close it explicitly as you would a ref cursor
 25          DBMS_SQL.Close_Cursor@testdb( c );
 26  end;
 27  /
name=CLARK deptID=10
name=KING deptID=10
name=MILLER deptID=10

PL/SQL procedure successfully completed.

SQL>

Tags: Database

Similar Questions

  • ORA-00604: error occurred at recursive SQL level 1 ORA-01882: region time zone not found

    Dear all,

    IAM trying to connect to establish a connection to a database using JDBC thin oracle client. IAM getting the following error.

    Could someone help me with a solution please

    Operating system: Oracle linux

    Database Version: 12 c

    java.sql.SQLException: ORA-00604: error occurred at the SQL level 1 recursive

    ORA-01882: zone schedule region not found

    at oracle.odi.jdbc.datasource.LoginTimeoutDatasourceAdapter.doGetConnection(LoginTimeoutDatasourceAdapter.java:144)

    at oracle.odi.jdbc.datasource.LoginTimeoutDatasourceAdapter.getConnection(LoginTimeoutDatasourceAdapter.java:73)

    at com.sunopsis.sql.SnpsConnection.testConnection(SnpsConnection.java:1243)

    at com.sunopsis.graphical.dialog.SnpsDialogTestConnet.getLocalConnect(SnpsDialogTestConnet.java:173)

    to com.sunopsis.graphical.dialog.SnpsDialogTestConnet.access$ 400 (SnpsDialogTestConnet.java:51)

    to com.sunopsis.graphical.dialog.SnpsDialogTestConnet$ 5.doInBackground(SnpsDialogTestConnet.java:629)

    to com.sunopsis.graphical.dialog.SnpsDialogTestConnet$ 5.doInBackground(SnpsDialogTestConnet.java:625)

    at oracle.odi.ui.framework.AbsUIRunnableTask.run(AbsUIRunnableTask.java:258)

    at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:947)

    at java.lang.Thread.run(Thread.java:745)

    Caused by: java.sql.SQLException: ORA-00604: error occurred at the SQL level 1 recursive

    ORA-01882: zone schedule region not found

    at oracle.odi.jdbc.datasource.LoginTimeoutDatasourceAdapter.doGetConnection(LoginTimeoutDatasourceAdapter.java:144)

    at oracle.odi.jdbc.datasource.LoginTimeoutDatasourceAdapter.getConnection(LoginTimeoutDatasourceAdapter.java:73)

    at oracle.odi.core.datasource.dwgobject.support.OnConnectOnDisconnectDataSourceAdapter.getConnection(OnConnectOnDisconnectDataSourceAdapter.java:87)

    to oracle.odi.jdbc.datasource.LoginTimeoutDatasourceAdapter$ ConnectionProcessor.run (LoginTimeoutDatasourceAdapter.java:228)

    to java.util.concurrent.Executors$ RunnableAdapter.call (Executors.java:471)

    at java.util.concurrent.FutureTask.run(FutureTask.java:262)

    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:615)

    ... 1 more

    Caused by: java.sql.SQLException: ORA-00604: error occurred at the SQL level 1 recursive

    ORA-01882: zone schedule region not found

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:466)

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:399)

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:391)

    at oracle.jdbc.driver.T4CTTIfun.processError(T4CTTIfun.java:1126)

    at oracle.jdbc.driver.T4CTTIoauthenticate.processError(T4CTTIoauthenticate.java:503)

    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:546)

    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:269)

    at oracle.jdbc.driver.T4CTTIoauthenticate.doOAUTH(T4CTTIoauthenticate.java:436)

    at oracle.jdbc.driver.T4CTTIoauthenticate.doOAUTH(T4CTTIoauthenticate.java:1021)

    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:682)

    at oracle.jdbc.driver.PhysicalConnection.connect(PhysicalConnection.java:789)

    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:33)

    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:608)

    at oracle.odi.jdbc.datasource.DriverManagerDataSource.getConnectionFromDriver(DriverManagerDataSource.java:412)

    at oracle.odi.jdbc.datasource.DriverManagerDataSource.getConnectionFromDriver(DriverManagerDataSource.java:385)

    at oracle.odi.jdbc.datasource.DriverManagerDataSource.getConnectionFromDriver(DriverManagerDataSource.java:352)

    at oracle.odi.jdbc.datasource.DriverManagerDataSource.getConnection(DriverManagerDataSource.java:331)

    ... 6 more


    Best regards


    Hi CPR1,.

    I tried to connect to database using ODI.

    What I did at work is

    Double-click the database server--->, click Properties, and then you have the key and the value

    In the Insert key as oracle.jdbc.timezoneAsRegion, and its value is FALSE

    Thank you

    Best regards

  • Test failed: ORA-00604: error occurred at the SQL level 1 recursive

    Hi am in weblogic 10.3.6 will have this error when I try to create the data source

    ORA-01882: zone schedule found region < br / > oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462) < br / > oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:397) < br / > oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:389) < br / > oracle.jdbc.driver.T4CTTIfun.processError(T4CTTIfun.java:689) < br / > oracle.jdbc.driver.T4CTTIoauthenticate.processError(T4CTTIoauthenticate.java:455) < br / > oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481) < br / > oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205) < br / > oracle.jdbc.driver.T4CTTIoauthenticate.doOAUTH(T4CTTIoauthenticate.java:387) < br / > oracle.jdbc.driver.T4CTTIoauthenticate.doOAUTH(T4CTTIoauthenticate.java:814) < br / > oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:418) < br / > oracle.jdbc.driver.PhysicalConnection. < init > (PhysicalConnection.java:678) < br / > oracle.jdbc.driver.T4CConnection. (< init > (T4CConnection.java:234) < br / > oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:34) < br / > oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:567) < br / > oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:404) < br / > oracle.jdbc.xa.client.OracleXADataSource.getPooledConnection(OracleXADataSource.java:674) < br / > oracle.jdbc.xa.client.OracleXADataSource.getXAConnection(OracleXADataSource.java:267) < br / > oracle.jdbc.xa.client.OracleXADataSource.getXAConnection(OracleXADataSource.java:134) < br / > () weblogic.jdbc.common.internal.DataSourceUtil.testConnection DataSourceUtil.java:314) < br / > com.bea.console.utils.jdbc.JDBCUtils.testConnection(JDBCUtils.java:734) < br / >...

    Try to change the regional settings to English (US or UK)

    In addition, adf apps work properly with pilots XA then create your data source with non - XA driver.

    Dario

  • ORA-04052: error occurred when searching to the top of the remote object REPADMIN. SYS@CEL2. W

    Hello
    on 10 gr 2 on WIN 2003 server:
    C:\>sqlplus repadmin/***@CEL2.WORLD
    
    SQL*Plus: Release 10.2.0.4.0 - Production on Tue Jun 22 09:54:18 2010
    
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    
    
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    And then:
    CONNECT repadmin/******@CEL1.WORLD
    
    BEGIN
       DBMS_REPCAT.ADD_MASTER_DATABASE (
          gname => 'REPG',
          master => 'CEL2.WORLD',
          use_existing_objects => TRUE,
          copy_rows => FALSE,
          propagation_mode => 'ASYNCHRONOUS');
    END;
    / 
    
    BEGIN
    *
    ERROR at line 1:
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 2
    ORA-12545: Connect failed because target host or object does not exist
    ORA-06512: at "SYS.DBMS_REPCAT_UTL", line 4271
    ORA-06512: at "SYS.DBMS_REPCAT_MAS", line 2156
    ORA-06512: at "SYS.DBMS_REPCAT", line 146
    ORA-06512: at line 2
    Thanks for the help.

    connect to the remote database as sys and

    SQL > grant execute on sys. DBMS_REPCAT repadmin;

  • ORA-04052: error occurred while the remote object by raising

    Please help I m this error

    ORA-00604: an error has occurred at the SQL level 1 recursive
    ORA-04052: error occurred while the remote object by raising
    ORA-01017: name of user and password invalid.
    connection refused ORA-02063: preceding the line of LINK DB

    Tom wrote:
    Please help I m this error
    ORA-01017: name of user and password invalid.
    connection refused ORA-02063: preceding the line of LINK DB

    Well, what part of the name of user and password invalid needs to explain?

    SY.

  • Error message ' year error occurred while trying to access the service ' when I try to convert a file?

    When I try to convert a file to PDF or PDF I get the error message ' year error occurred while trying to access the service "what can I do to fix?  I already applied the updates and attempted to correct?

    You could always connect to Acrobat.com directly and use the service via the web site, if it's a critical need.

  • What does "an error occurred while trying to add the selected device: average 0xffffffce.»

    Hello

    "I'm in need of answers get the resolved message."

    "an error occurred while trying to add the selected device: 0xffffffce.

    This happens when I try to add my printer Epson WF 3640 in my queue via WIFI.

    Reset the printing on your Mac - Apple Support System

  • an error occurred while trying to access the server

    an error occurred while trying to access the server, I get this message when you try to convert, what's the problem, the user of windows 7

    Hi Laura,

    It looks like you can try to access one of the services of Adobe Document Cloud in Adobe Reader. If so, please close the session, and then reconnect.

    If you're still having problems, please try to connect via the web interface at https://cloud.acrobat.com.

    Let us know how it goes!

    Best,

    Sara

  • An error occurred during re-Association of the application programs.

    Hi Experts,

    As he tried to apply the patch

    FAMILY PACK OF FIXES (R12. ATG_PF. B.3 (8919491))

    I was getting error while applying the sine qua non patch 9239089 .. Is the error produced when re - link application programs.

    Follow the steps while applying the patch: -.

    • Stop all application services (only the database and the database listener operational)
    • Downloaded the patch (8919491) from Metalink, have also downloaded the patch pre - req (9239089)
    • Unzip the patches for "/ home/applmgr/patches»
    • Now, as a user applmgr source of the environment file and follow these steps: -.
    • [applmgr@oracleupk appl] $. ./APPSPROD_oracleupk.env
    • Issue "adadmin" and select "Enable Maintenance mode", then exit
    • CD < Patches >
    • Now go to the README.txt, he said: we must apply R12. AD. B.Delta.3 as a prerequisite before you apply this hotfix. Merge not R12. AD. B.Delta.3 with this patch. It must be applied separately.
    • So I will apply 9239089 aka R12. AD. B.Delta.3 first patch.
    • Go to the unzipped patch directory (for example: [applmgr@oracleupk 9239089] $ pwd)

    (/ Home/applmgr/patches/9239089)

    • Question "adpatch.

    • When it prompts you to enter the patch driver, enter the name of the driver

    The error of the logfile adpatch : -.

    Reissue of executable links...

    An error occurred during re-Association of the application programs.

    Continue as if it was successful [No.]: Yes

    Made the recovery of executable links.

    STRT_TASK: [Run adjcopy.class] [] [Tue Sep 17 2013 03:32:08]

    Adjcopy.class running:

    adjava-mx512m - nojit oracle.apps.ad.jri.adjcopy @/u01/appl_top/apps/apps_st/appl/admin/PROD/out/apps.cmd

    / bin/sh: adjava: command not found

    I also see warnings in adpatch.log: -.

    AutoPatch WARNING:

    Product data file

    /U01/APPL_TOP/apps/apps_st/appl/Admin/zfaprod.txt

    There is no product "zfa".

    This product is registered in the database, but the

    above the file does not exist in APPL_TOP.  The product

    will be ignored without error.

    AutoPatch WARNING:

    Product data file

    /U01/APPL_TOP/apps/apps_st/appl/Admin/zsaprod.txt

    There is no product "zsa".

    This product is registered in the database, but the

    above the file does not exist in APPL_TOP.  The product

    will be ignored without error.

    AutoPatch WARNING:

    Product data file

    /U01/APPL_TOP/apps/apps_st/appl/Admin/jtsprod.txt

    There is no product "jts".

    This product is registered in the database, but the

    above the file does not exist in APPL_TOP.  The product

    will be ignored without error.

    Ankur,

    Please see the following documents.

    Lack of responsibilities after that put 12.1.3 at level [ID 1309852.1]

    SYSADMIN responsibility missing after upgrade to 12.1.3 [ID 1246824.1]

    Troubleshooting missing responsibilities for user [ID 429852.1]

    See also (known on top of Patch 9114911 - R12.HR_PF issues. B.Delta.3 (Doc ID 1075479.1)).

    Thank you

    Hussein

  • Storage VMotion - a general error occurred: could not wait for the data.  Error bad0007.

    People,

    I searched through this forum and have not found an answer that works in many positions out there, I say to myself that I would ask him once again.

    Here's the context:

    We have 12 identical Dell M600 blades in 2 chassis with 16 GB of Ram, 2 x Xeon E5430, they are all connected to an Equallogic PS 5000XV iSCSI SAN on a separate iSCSI (vswitch1) with 2 cards network dedicated network and dedicated switch, console svc iscsi dedicated, dedicated VMkernel port for iscsi access. Net access (vswitch0) contains port groups VM for our various networks and a console port and vmkernel svc for VMotion with 2 separate NETWORK cards as well.

    We are running ESX 3.5 U3 and VCenter 2.5 U3 on Win2k3 R2

    VMotion works between all servers, Storage Vmotion works for most machines, HA works and the value 2 host failurs with no monitoring of vm, DRS is set to manual for now I have a few machines on the local stores that I complete my rebuilt LUN, there is no set of rules for DRS and VMware EVC is enabled for guests of the Intel. However, I'll just describe one machine to do svmotion below.

    Here's the problem:

    I'm trying to Svmotion via svmotion.pl - interactive, a Machine to Windows 2000 with a virtual disk and a virtual RDM. I am aware of the requirements for the RDM and required parameters for svmotion, independent is not selected for the RDM, and I also have svmotioned several machines linux and win2k3 with the same configuration without problem. In the interactive session, I choose to individually place the disks and I chose the virtual disk to only the virtual machine to be moved, essentially, as I saw it move vdisk virtual machine and then copy to the pointer of the RDM.

    The use of the processor in this machine is about 25% average. but I try to run migrations at the time the lowest. and The Host it itself shows only about 5.5 GB of the 16 GB of RAM used. so I think we're good on the RAM. the volume/datastore that I'm migrating from has 485 GB free and the volume/datastore I migration towards a 145 GB free. the VM virtual disk is only about 33 GB.

    I run the script the windows version of the RCLI svmotion. and when to begin the process, I get the following error at around 2 percent of the progress:

    "Since the server has encountered an error: a general error occurred: could not wait for the data."  Error bad0007. Invalid parameter. »

    After searching around, I found the following hotfixes to the U2 release notes

    • Migrate.PageInTimeoutResetOnProgress: Set the value to 1.

    • Migrate.PageInProgress: The value 30, if you get an error even after the setting of the Migrate.PageInTimeoutResetOnProgress variable.

    I've made these changes, and I still get the same error.

    When I dig in the newspaper, I see these entries in the journal of vmkwarning:

    (Feb 24 00:17:32 vmkernel iq-virt-c2-b6: 82:04:13:56.794 cpu4:1394) WARNING: bunch: 1397: migHeap0 already at its maximumSize bunch. Cannot extend.

    (Feb 24 00:17:32 vmkernel iq-virt-c2-b6: 82:04:13:56.794 cpu4:1394) WARNING: bunch: 1522: Heap_Align (migHeap0, 1030120338/1030120338 bytes, 4 align) failed.  calling: 0x988f61

    (Feb 24 00:17:32 vmkernel iq-virt-c2-b6: 82:04:13:56.794 cpu4:1394) WARNING: migrate: 1243: 1235452646235015: failure: out of memory (0xbad0014) @0x98da8b

    (Feb 24 00:17:32 vmkernel iq-virt-c2-b6: 82:04:13:56.794 cpu2:1395) WARNING: MigrateNet: 309: 1235452646235015: 5 - 0xa023818: sent only 4096 bytes of data in message 0: Broken pipe

    (Feb 24 00:17:32 vmkernel iq-virt-c2-b6: 82:04:13:56.794 cpu6:1396) WARNING: migrate: 1243: 1235452646235015: failed: Migration protocol error (0xbad003e) @0x98da8b

    (Feb 24 00:17:32 vmkernel iq-virt-c2-b6: 82:04:13:56.794 cpu2:1395) WARNING: migrate: 6776: 1235452646235015: could not send data for 56486: Broken pipe

    At this point, I'm stuck... What is Windows RCLI? the vcenter Server? or the service console with not enough of RAM? We have already increased all our consoles service 512 MB...

    Any help would be greatly appreciated...

    Thanks in advance.

    Alvin

    The vmkernel on out of memory error, I had that before. And vmware support recommends setting 800M Max service console memory. And I did it and have no problems after that.

    See if that helps the issue.

    Mike

  • a fatal error occurred while trying to sysprep the machine Windows 7

    Install a new copy of Windows 7 64-bit on a computer company dell laptop.
    After completing the installation, I used Windows update to get all the current patches and so forth.
    No other software has been installed. No antivirus at this stage.
    I have disabled the Windows Media Player Network Sharing Service
    I used the original sysprep on the W7 machine.

    I received this error message: a fatal error occurred while trying to sysprep the machine

    Log files show this:

    Setupact.log:
    2009-10-28 08:18:01, error [0x0e00ba] TOOL GeneralizeBcdStore: could not open the BCD to generalize object. Status = [0xC0000034] [gle = 0 x 00000012]
    2009-10-28 08:18:01, error [0x0e00b1] TOOL Sysprep_Generalize_Bcd: it was a mistake to generalize the bcd store. Status = [0xC0000034] [gle = 0 x 00000012]
    2009-10-28 08:18:01, error [0x0f0082] SYSPRP LaunchDll:Failure occurred during the execution of 'C:\Windows\System32\spbcd.dll,Sysprep_Generalize_Bcd', returned an error code 2 [gle = 0 x 00000012]
    2009-10-28 08:18:01, error [0x0f0070] SYSPRP RunExternalDlls: an error occurred running sysprep register dll, put an end to running sysprep. dwRet = 2 [gle = 0 x 00000012]
    2009-10-28 08:18:01, error [0x0f00a8] SYSPRP WinMain:Hit failure while processing sysprep generalize providers internal; HR = 0 x 80070002 [gle = 0 x 00000012]

    Setuperr.log:
    2009-10-28 08:17:54, error SYSPRP SPPNP: error 0 x 3 SDDL parameter on the C:\Windows\nvtmpinst\nvcpl.cpl driver file.
    2009-10-28 08:17:54, error SYSPRP SPPNP: error 0 x 3 listing locked files!
    2009-10-28 08:18:01, error [0x0e00ba] TOOL GeneralizeBcdStore: could not open the BCD to generalize object. Status = [0xC0000034] [gle = 0 x 00000012]
    2009-10-28 08:18:01, error [0x0e00b1] TOOL Sysprep_Generalize_Bcd: it was a mistake to generalize the bcd store. Status = [0xC0000034] [gle = 0 x 00000012]
    2009-10-28 08:18:01, error [0x0f0082] SYSPRP LaunchDll:Failure occurred during the execution of 'C:\Windows\System32\spbcd.dll,Sysprep_Generalize_Bcd', returned an error code 2 [gle = 0 x 00000012]
    2009-10-28 08:18:01, error [0x0f0070] SYSPRP RunExternalDlls: an error occurred running sysprep register dll, put an end to running sysprep. dwRet = 2 [gle = 0 x 00000012]
    2009-10-28 08:18:01, error [0x0f00a8] SYSPRP WinMain:Hit failure while processing sysprep generalize providers internal; HR = 0 x 80070002 [gle = 0 x 00000012]

    Questions about the deployment of clients in the domain is better handled in the ITPro Forums.

    These answers forums are more oriented to undergo only the consumer of system issues.

    Category: Windows 7 - ITPro.url

    Messages rating helps other users

    Mark L. Ferguson MS - MVP

  • During ANY installation of a program (e.g. Skype), I get the "year error occurred while attempting to create the directory C:\Program\Microsoft\Windows\Start Menu.

    original title: facilities program

    During ANY installation of a program (e.g. Skype), I get the "year error occurred while attempting to create the directory C:\Program\Microsoft\Windows\Start Menu. What happened with cd installs, but also downloads on the internet.  I already "took possession" of the computer, which is still delayed freaking, but am still unable to fight through all the questions of security, I guess that.  Any help would be greatly appreciated as I'm about to DOWNGRADE to something more user-friendly.  Thank you

    BTW, this is WINDOWS 7 Home Premium

    I had this problem for a long time on Windows 7. Finally, by pure chance I came across this solution that solved the problem. -Take the shortcut of the property

    http://www.SevenForums.com/tutorials/1911-take-ownership-shortcut.html

    You will need to run the "fusion" in the context menu of a reg file, published as part of the solution to change some registry settings. On any folder, you'll get a context menu 'Take Ownership' which restores the property correctly. This solves a lot of problems installing.

    Many people have trouble with this and therefore decided to post here.

    Gem of a solution. Thanks to GRIM and Brink on Windows 7 Forum!

    -Jayawanth

  • "Year error occurred while trying to access the service.

    Attempts to convert the PDF to Word file. Have done successfully until last week until we started getting an error "year error occurred while trying to access the service.

    Please can you kindly advise on the possible cause?

    Hi quantum recruitment,.

    You try to access the service via a web browser or via Adobe Reader? If you use a browser, please clear the cache and try again or try another browser (see system requirements |) Acrobat.com

    (or a list of supported browsers).

    If you use Reader, choose Help > updates to ensure that you are using the latest version of the player. You must have the 11.0.09 reader.

    Kind regards

    Florence

  • ExportPDF - "year error occurred while trying to access the service.

    I've never had a problem using ExportPDF in the past, but recently, I get an error message saying "year error occurred while trying to access the service.  I am using the same browser, Chrome, I've always used.  Please tell me how to solve this problem.

    Hi metal_anthropo,

    Please log and clear the browser cache and then reload https://cloud.acrobat.com. If this does not work, please try to connect by using a different web browser (just as a trial).

    Something has changed on your system as you were last able to connect to Acrobat.com? You use Mac OS or Windows?

    Best,

    Sara

  • ORA-20100: error: failure FND_FILE. Cannot create the file

    Hi all
    Simultaneous application of Bellow error

    We using ORACLE 10 g. R12
    OS: RHEL 4.4 (LINUX)





    ---------------------------------------------------------------------------
    Execution of the expedition: Version: 12.0.0

    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.

    Module WSHINTERFACES: Interface travel Stop - SRS
    ---------------------------------------------------------------------------

    Current system time is January 27, 2013 09:58:58

    ---------------------------------------------------------------------------

    * Starts * January 27, 2013 09:58:58
    Error ORACLE 20100 in FDPSTP

    Cause: FDPSTP failed due to the ORA-20100: error: failure FND_FILE. Cannot create the file, l0633393.tmp in the directory/usr/tmp.
    You can find more information in the applications log.
    ORA-06512: at the 'APPS '. FND_FILE', line 554
    ORA-06
    ---------------------------------------------------------------------------
    Beginning of the FND_FILE log messages
    ---------------------------------------------------------------------------
    ---------------------------------------------------------------------------
    End of the FND_FILE log messages
    ---------------------------------------------------------------------------


    ---------------------------------------------------------------------------
    Options, AutoComplete, the request for enforcement.


    End of query options AutoComplete.

    ---------------------------------------------------------------------------
    Simultaneous request ended
    Current system time is January 27, 2013 09:58:58

    ---------------------------------------------------------------------------

    This issue is related to the Oracle EBS, mark it as here the answer and open it

    Oracle Discussion forums' E-Business Suite

Maybe you are looking for

  • Tecra M4: the upgrade of ram, guaranteed

    HelloI have Tecra M4. If I upgrade my memory would only be validade warranty or not? has obtained a guarantee of 3 years, would be a shame to lose.

  • Qosmio F50 - Windows 7 and OfficeJet G55

    Hello I use a Toshiba Qosmio 50. Since I've upgraded to Windows 7, my OfficeJet G55 no longer print.Windows 7 cannot install the appropriate driver.Scan and copy functions are available, but not the print function.I tried all the solutions on HP and

  • Install the driver OR DAQmx 9.7.0 Application Development Support

    Hello I'm currently trying to install Labview 2009 (my old copy was lost in case of overheating of the motherboard of my old computer). The installation went very well, I think, and I am able to create new projects etc. When I downloaded the driver N

  • x 220 noisy space bar

    Just got my new x 220, overall, it looks like a very solid machine (as a true ThinkPad). A matter of concern: The space seems louder than the other keys. Almost, it feels a little loose and makes a boring clackety sound when used. The keyboard on my

  • Will be shooting the camera any way hurt Sun Peaks - e.g. to burn the sensor?

    Will be shooting the camera any way hurt Sun Peaks - e.g. to burn the sensor?