ORA-00604   ;  ORA-01406

Hi all,
11.2.0.3
I am dropping a user with QUEUE objects but I got error
SQL> /
drop user Q_ADMIN
ERROR at line 1:
ORA-00604: error occurred at recursive SQL level 1
ORA-01406: fetched column value was truncated
Please help...
Thanks,
pK

No help is required.
Your posting history shows you have a general inability to Google anything before asking a question and basically you expect this forum to that for you.
I just Googled for 'drop user with queue objects' and got some responses that looked valid, I also noticed this topic has discussed earlier in this forum.
Every single question you have asked here is abuse of this forum!
I would love to see moderators taking appropriate action and remove your account.
Yes, I am quite aware you will create a new account, and you will continue to abuse this forum.
However, people like you have to be stopped somewhere.
I will also address, again, your posting history in the community feedback forum.
Sybrand Bakker
Senior Oracle DBA

Similar Messages

  • ORA-00604 ORA-00904 When query partitioned table with partitioned indexes

    Got ORA-00604 ORA-00904 When query partitioned table with partitioned indexes in the data warehouse environment.
    Query runs fine when query the partitioned table without partitioned indexes.
    Here is the query.
    SELECT al2.vdc_name, al7.model_series_name, COUNT (DISTINCT (al1.vin)),
    al27.accessory_code
    FROM vlc.veh_vdc_accessorization_fact al1,
    vlc.vdc_dim al2,
    vlc.model_attribute_dim al7,
    vlc.ppo_list_dim al18,
    vlc.ppo_list_indiv_type_dim al23,
    vlc.accy_type_dim al27
    WHERE ( al2.vdc_id = al1.vdc_location_id
    AND al7.model_attribute_id = al1.model_attribute_id
    AND al18.mydppolist_id = al1.ppo_list_id
    AND al23.mydppolist_id = al18.mydppolist_id
    AND al23.mydaccytyp_id = al27.mydaccytyp_id
    AND ( al7.model_series_name IN ('SCION TC', 'SCION XA', 'SCION XB')
    AND al2.vdc_name IN
    ('PORT OF BALTIMORE',
    'PORT OF JACKSONVILLE - LEXUS',
    'PORT OF LONG BEACH',
    'PORT OF NEWARK',
    'PORT OF PORTLAND'
    AND al27.accessory_code IN ('42', '43', '44', '45')
    GROUP BY al2.vdc_name, al7.model_series_name, al27.accessory_code

    I would recommend that you post this at the following OTN forum:
    Database - General
    General Database Discussions
    and perhaps at:
    Oracle Warehouse Builder
    Warehouse Builder
    The Oracle OLAP forum typically does not cover general data warehousing topics.

  • Client installation with Net Configuration-Assistant : ora-00604 / ora-0224

    Hi forum,
    I am trying to install a client on a remote computer with Net Configuration-Assistant. When testing connection as user system I always get oracle errors
    ora-00604 / ora-0224.
    When I try connection with sys the reaction is : should be done with sysdba or sysoper privilege.
    On command line level I can login with : sqlplus sys/...@srvtstora:1527/oeg
    where oeg is the ORACLE_SID in question and srvtstora is the PC on which the
    database resides.
    what can i do ?
    Kind regards
    Samplitude

    error ORA-00604: error occurred at recursive SQL level
    ORA-00224, 00000, "controlfile resize attempted with illegal record type (%s)"
    Is it what it shows?
    Then there are problems with the controlfile. Make sure you have a valid backup before proceeding any further.
    On the other hand, the error when connection with sys it's because you have to specify the SYSDBA/SYSOPER role at the connecting string ( sqlplus sys/SysPasswd as sysdba)

  • Ora-00604,ora-01422 error while dropping the table

    Hi gurus,
    I am using Oracle 10g R2 on windows 2000 platform,while dropping the table the following error occured.
    ORA-00604 : error occurred at recursive sql level 1.
    ORA-01422: exact fetch returns more than requested number of rows.
    Need urgent help.
    Thanks in advance

    Is there an AFTER EVENT trigger defined on this database? Can you check that?
    Secondly, was this database migrated from earlier version? I remember having seen this problem on 9i (it was 9.2.0.1 or 9.2.0.2; I can't recall exactly).

  • PL/SQL-Error: ORA-00604 - ORA-01422 makes no sense. Any Idea anyone ?

    Problem:
    No matter if creating new or recompiling old procedures
    (that had been compiled successfully lon ago),
    I always receive the very same error message:
    ORA-00604: ...recursive SQL level 1
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-at line 5 (mouse cursor blinks at teh first line of code...)
    It is the same with PLEdit, HORA and SQL*PLUS:
    even the most simple procedures are not compiled
    Hints: I encounter this problem since I installed Forms 6i.
    I am using database 8.1.7 on Redhat Linux (as a server),
    and working on a W2K client.
    Any idea anyone ?
    ThanX in advance !

    Sorry, I found my error : Trigger on Database
    Maybe others are interested too:
    Be careful when using triggers "on schema" or "on database",
    because, as I have found, the error message doesn4t say that.
    I had a few such triggers for logging purposes.
    After I disabled my database triggers, I could continue compiling.
    Bye, Jan.

  • ORA-00604 & ORA-30512 CANNOT MODIFY TABLE MORE THAN ONCE IN A TRANSACTION

    We have a requirement where two tables should be in sync at any given point
    in time with respect to the structure of the tables.
    Any change on table/column via ALTER (MODIFY, ADD, RENAME COLUMN, DROP
    COLUMN) on the parent table should be replicated to the replica table.
    I created a DDL_TRIGGER on the schema and the desired result is achieved but
    for the following one scenario for which its failing.
    The issue is, if we try to reduce the width of the column (via ALTER ..
    MODIFY) it fails with the following error
    ORA-00604: error occurred at recursive SQL level 1
    ORA-30512: cannot modify DEVTESTF_OIM.REPLICA_ABC more than once in a
    transaction
    Please follow the steps to reproduce the issue (the issue is across the DB
    version checked on 10.2, 11.1 and 11.2 DB version)
    -- Step1 Create Parent Table
    CREATE TABLE abc (col1 VARCHAR2(10))
    -- Step2 Create Replica Table
    CREATE TABLE replica_abc (col1 VARCHAR2(10))
    -- Step3 Create DDL Trigger
    CREATE OR REPLACE TRIGGER ddl_trigger
    AFTER ALTER ON SCHEMA
    DECLARE
    operation VARCHAR2(30);
    object_name VARCHAR2(30);
    l_sqltext VARCHAR2(100);
    i PLS_INTEGER;
    l_count NUMBER:=0;
    sql_text dbms_standard.ora_name_list_t;
    BEGIN
    i := dbms_standard.sql_txt(sql_text);
    SELECT ora_sysevent, ora_dict_obj_name, UPPER(sql_text(i))
    INTO operation, object_name, l_sqltext
    FROM dual;
    IF ora_dict_obj_name = 'ABC' THEN
    l_count := INSTR(l_sqltext,'ADD CONSTRAINT',1,1);
    l_count := l_count + INSTR(l_sqltext,'DISABLE',1,1);
    l_count := l_count + INSTR(l_sqltext,'DROP CONSTRAINT',1,1);
    l_count := l_count + INSTR(l_sqltext,'PRIMARY KEY',1,1);
    l_count := l_count + INSTR(l_sqltext,'ADD CHECK',1,1);
    IF (l_count = 0) THEN
    l_count := INSTR(l_sqltext,'ADD',1,1);
    l_count := l_count + INSTR(l_sqltext,'MODIFY',1,1);
    l_count := l_count + INSTR(l_sqltext,'DROP COLUMN',1,1);
    l_count := l_count + INSTR(l_sqltext,'RENAME
    COLUMN',1,1);
    IF (l_count >0) THEN
    l_sqltext := REPLACE(l_sqltext,'TABLE ABC','TABLE REPLICA_ABC');
    execute immediate l_sqltext;
    END IF;
    END IF;
    END IF;
    EXCEPTION
    WHEN OTHERS THEN
    RAISE ;
    END;
    -- Step 4 Issue the following ALTER command on the Parent table 'ABC'
    ALTER TABLE ABC MODIFY COL1 VARCHAR2(9);
    will show the following
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-30512: cannot modify DEVTESTF_OIM.REPLICA_ABC more than once in a
    transaction
    ORA-06512: at line 34
    whereas the following commands works fine
    ALTER TABLE ABC MODIFY COL1 VARCHAR2(11);
    and also the rest of the operations
    ALTER TABLE ABC ADD COL2 VARCHAR2(20);
    ALTER TABLE ABC RENAME COLUMN COL2 TO COL3;
    ALTER TABLE ABC DROP COLUMN COL3;
    The issue is while reducing the size of VARCHAR2 columns, while the rest of
    option works fine.
    Any suggestion or workaround please.

    It looks like a bug to me. The failing statement from the SQL trace is
    PARSE ERROR #12:len=77 dep=3 uid=0 oct=3 lid=0 tim=1263332549608656 err=30512
    select /*+ first_rows */ 1 from "TIM"."REPLICA_ABC" where LENGTHB("COL1") > 9and exception cannot explain it.

  • While creating a simple VIEW Error comes ORA-00604,ORA-00001

    I am using
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Prod
    a simple view statement gives an error.
    ORA-00604: error occurred at recursive SQL level 1
    ORA-00001: unique constraint (SYS.I_COL1) violated
    what may be the reason

    Hi,
    It seems that SHORT_NAME cause problem.
    SQL> CREATE OR REPLACE FORCE VIEW V_META_IMAGELIST
      2  AS
      3  SELECT A.SEQ_NUM, A.SHORT_NAME, A.DESCRIPTION, A.MULTISELECT, A.ENTITY_SEQ_NUM, A.SECTION_TYPE_
    SEQ_NUM,
      4  B.SHORT_NAME, A.ACTIVE, A.ENTERED_BY,
      5  A.ENTRY_DATE, A.IMAGELIST_LEVEL, A.STARTINGSENTENCE, A.SEPARATOR, A.CONJUNCTION, A.ENDINGSENTEN
    CE,
      6  A.META_IMAGELIST_ELEMENT_SEQ_NUM
      7  FROM meta_imagelist A, SECTION_TYPES B
      8  WHERE A.SECTION_TYPE_SEQ_NUM = B.SEQ_NUM(+) ;
    B.SHORT_NAME, A.ACTIVE, A.ENTERED_BY,
    ERROR at line 4:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-00001: unique constraint (SYS.I_COL1) violated
    SQL> ed
    Wrote file afiedt.buf
      1  CREATE OR REPLACE FORCE VIEW V_META_IMAGELIST
      2  AS
      3  SELECT A.SEQ_NUM, A.SHORT_NAME, A.DESCRIPTION, A.MULTISELECT, A.ENTITY_SEQ_NUM, A.SECTION_TYPE_
      4  B.SHORTNAME, A.ACTIVE, A.ENTERED_BY,
      5  A.ENTRY_DATE, A.IMAGELIST_LEVEL, A.STARTINGSENTENCE, A.SEPARATOR, A.CONJUNCTION, A.ENDINGSENTEN
      6  A.META_IMAGELIST_ELEMENT_SEQ_NUM
      7  FROM meta_imagelist A, SECTION_TYPES B
      8* WHERE A.SECTION_TYPE_SEQ_NUM = B.SEQ_NUM(+)
    SQL> /
    Warning: View created with compilation errors. --this is because I haven't any tables
    SQL> show error
    No errors.
    SQL> Try to rename SHORT_NAME to an other word.
    Nicolas.

  • PROBLEM JDEVELOPER 10.1.3.1.0 ORA-00604 ORA-12705

    Hi,
    I am following the instructions of the tutorial "Build a Web Application with ADF Faces and Oracle TopLink" on http://www.oracle.com/technology/obe/obe1013jdev/10131/10131_adftoplink/master-detail-edit_page_adf_toplink.htm
    I use:
    - Jdeveloper 10.1.3.1.0
    - Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    First, when I tried to create a connection, I got the errors:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-12705: invalid or unknown NLS parameter value specified
    Then, I add this lines to my jdev.conf:
    AddVMOption -Duser.region=es
    AddVMOption -Duser.language=es
    After that, I could create a connection succesfully, but when I run the application, I got the following messages:
    1. JBO-29000: Excepción [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 061004)): oracle.toplink.exceptions.DatabaseException Excepción Interna: java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1 ORA-12705: invalid or unknown NLS parameter value specified Código de Error: 604; nested exception is: Excepción [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 061004)): oracle.toplink.exceptions.DatabaseException Excepción Interna: java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1 ORA-12705: invalid or unknown NLS parameter value specified Código de Error: 604
    2. Excepción [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 061004)): oracle.toplink.exceptions.DatabaseException Excepción Interna: java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1 ORA-12705: invalid or unknown NLS parameter value specified Código de Error: 604; nested exception is: Excepción [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 061004)): oracle.toplink.exceptions.DatabaseException Excepción Interna: java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1 ORA-12705: invalid or unknown NLS parameter value specified Código de Error: 604
    It seems like I got the same errors that I got at first time when I was trying to create a connection.....
    I also downloaded the ojdbc14.jar for my oracle database version, and replace it with the one in ..../jdbc/lib. However nothing works, I can create the connection, I could browse any database object in the Jdeveloper enviroment, but when I run the application, no thing works....
    Asking for help please

    Hi user538543 , i've had the same situation and solved
    changing my O.S. regional settings to English and USA.
    Please try that.
    Regards,
    Luis R.

  • Offline Backup failed : ORA-00704, ORA-00604, ORA-01089 Errors

    Hi Guys
    I am facing issues with Offline backup in Production system.
    I had Scheduled the offline backup for sunday evening, but monday morning i found prodution box, was down and i killed the netbackup Process.
    checked Oracle was up.
    Just started SAP and system start running fine.
    Then found that backup (offline backup) was never started.
    Found following errors in alert_<sid>.log and in *.trc files:
    ORA-00704: bootstrap process failure
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01089: immediate shutdown in progress - no operations are permitted
    Oracle 9.2.0.7
    Windows 2000
    Can you guide me on this, as this has happened second time ?
    Regards

    Your database was trying to shut down, but in was hanging for some reason.
    not much can be done, you are using Oracle 9207, try with 9208
    you ware on an unsupported Windows 2000 version.

  • Import data - errors: IMP-00017, IMP-00003, ORA-04052, ORA-00604, ORA-12154

    When I try to import data from dmp file to my database I found errors whitch repeat all time..
    First console show me:
    IMP-00017: following statement failed with ORACLE error 4052
    then show all procedure in which there are errors. After procedure I've got:
    IMP-00003: ORACLE error 4052 encountered
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 1
    ORA-12154: TNS:could not resolve service name
    IMP-00017: following statement failed with ORACLE error 4043:
    "ALTER PROCEDURE "CHECK_TIMESTAMP" COMPILE TIMESTAMP '2006-09-18:14:45:"
    "05'"
    IMP-00003: ORACLE error 4043 encountered
    ORA-04043: object CHECK_TIMESTAMP does not exist
    and after that the same errors for another procedures :( What can I do??

    ORA-04052: error occurred when looking up remote
    object [email protected]
    ORA-00604: error occurred at recursive SQL level 1
    ORA-12154: TNS:could not resolve service name
    and after that the same errors for another procedures
    :( What can I do??Fix the tnsnames.ora i.e. name resolution problem (lookup the description for ora-12154).

  • ORA-00604/ORA-01422/ORA-06512 Error on trigger

    Hi,
    I have an database which is of version 10.2.0.3.0 on Enterprise Edition.
    I want to restrict a user from usage of an schema . Therefore i have written a trigger but i have encountered with another errors:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at line 5
    Trigger Being::
    SQL> create or replace trigger session_access
    2 after logon on database
    3 declare
    4 v_username varchar2(30);
    5 v_osuser varchar2(30);
    6 begin
    7 select username,osuser into v_username,v_osuser from v$session;
    8 if v_username = 'SUSANJO' and v_osuser= 'ORACLE' then
    9 raise_application_error (-20001,'Access restricted for this USER');
    10 end if;
    11 end;
    12 /
    Trigger created.
    SQL> show errors;
    No errors.
    SQL> connect susanjo
    Enter password:
    ERROR:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at line 5
    Warning: You are no longer connected to ORACLE.
    i have run out of ideas of whats to be done onto the trigger now.
    Regards.
    Susan John

    Um , i have implemented the following pl/sql. It seem to kick the person out BUT (now this is a big BUT) within the grid control it mentions :
    Details          Failed to connect to database instance: ORA-00604: error occurred at recursive SQL level 1.
    create or replace trigger session_access
    DECLARE
    v_username sys.v_$session.username%type;
    v_osuser sys.v_$session.osuser%type;
    BEGIN
    select s.username ,s.osuser into v_username,v_osuser
    from v$session s where s.username='SUSANJO' and s.osuser='oracle';
    IF (v_username ='SUSANJO' AND V_OSUSER='oracle' )
    THEN
    RAISE_APPLICATION_ERROR(-20001, 'You are not allowed to login using the program');
    END IF;
    END session_access;
    Output :
    SQL*Plus: Release 10.2.0.3.0 - Production on Mon Mar 23 12:36:43 2009
    Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Production
    With the Partitioning and Data Mining options
    SQL> connect susanjo
    Enter password:
    ERROR:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-20001: You are not allowed to login using the program
    ORA-06512: at line 10
    Warning: You are no longer connected to ORACLE.
    SQL>
    I did conduct a research which was not all that helpful too. So i am back to square one again.
    regards
    Susan John

  • ORA-00604,ORA-00036,ORA-06521 for any query.

    Hello,
    I have
    ORACLE 10g R2
    Windows Server 2003 32bit
    I have done no changes in my database. No new triggers, nothing at all. Up-till last evening it was working fine , then i started to face this error on every query we fired.
    for ex:-
    SQL>Create table sample(a number);
    ORA-00604: error occurred at recursive SQL level 2
    ORA-00036: maximum number of recursive SQL levels(50) exceeded
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2
    ORA-06521: at line 2I searched on internet for the same but many said its about some mutating table error problem but its not. If i am the only user to work on the database with no trigger enabled then also i get the error.
    I get this error on execution of procedures,functions & all the code which needs to get executed in database.
    What should i do ??? any solution will be appreciated , please also let me know what could have been the reason for this so as next time i would be careful.
    Thanks in advance.

    Hello ,
    I did some R&D on my server & found the solution for the same error. It was so simple but because of the error's description i was getting confused.....
    What i did is had a look at the tablespaces & found that some of the most important tablespaces a full. Like system , ERP, USER, ERPINDEX .....
    So just i increased the size of the tablespace & everything is working fine now ....
    Cheers !!!!
    Thanks to all the people who gave their supportive answers ...

  • ORA-00604, ORA-04031

    How can I handle this error message?
    ERROR:
    ORA-00604: error occurred at recursive SQL level 2
    ORA-04031: unable to allocate 4048 bytes of shared memory ("shared pool","TRIGGER$","sga heap","state objects")
    ORA-00604: error occured at recursive SQL levle1
    ORA-04031: unable to allocate 4048 bytes of shred memory
    ("shared pool","unknown object","sga heap","state objects")
    I changed shared_pool_size.
    Initial shared_pool_size is 52428800
    and I changed it to 1500000000.
    Isn't 150M enough?
    Should I have to set shared_pool_size to lager size?
    Or is there any other way to fix this problem?
    Oracle Version is 8.1.6.
    Platform is SGI , IRIX 6.4.10+.
    Please, help me.
    Tanki

    - Use bind variables in your applications (if they are not used allready)
    - Pin larger packages (the ones you actaully use) immediately uppon database startup
    - Increase your shared pool (if it's not unreasonably large allready)
    - ALTER SYSTEM FLUSH SHARED_POOL; when you encounter ORA-4031 (this is more of a temporary workaround than a real sollution)

  • Oracle error   ORA-00604 & ORA-04031

    ORA-00604: error occurred at recursive SQL level 2
    ORA-04031: unable to allocate 4200 bytes of shared memory ("shared pool","TRIGGER$","sga heap","state objects")
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04031: unable to allocate 4200 bytes of shared memory ("shared pool","unknown object","sga heap","state objects")
    plz help me to find why this error is coming . I am running Oracle8i Release 8.1.7.0.0 on windows 32 bit server. And also how to resolve it

    ORA-04031: unable to allocate string bytes of shared memory ("string","string","string","string")
    Cause:      More shared memory is needed than was allocated in the shared pool.
    Action:      If the shared pool is out of memory, either use the dbms_shared_pool package to pin large packages, reduce your use of shared memory, or increase the amount of available shared memory by increasing the value of the INIT.ORA parameters "shared_pool_reserved_size" and "shared_pool_size". If the large pool is out of memory, increase the INIT.ORA parameter "large_pool_size".
    Regards
    Asif Kabir

  • Strange errors ORA-00604 ORA-30511 ORA-06512

    Hello, any clues about what could casuse this error? It is Oracle 11.2.0.1
    SQL> drop user config cascade;
    drop user config cascade
    ERROR en linea 1:
    ORA-00604: se ha producido un error a nivel 1 de SQL recursivo
    ORA-30511: operacion DDL no valida en los disparadores del sistema
    ORA-06512: en linea 993
    ORA-30511: operacion DDL no valida en los disparadores del sistemaIf I try to drop a table I get the same error. Never seen that before... Any clues?

    DBA-ES wrote:
    Hello, any clues about what could casuse this error? It is Oracle 11.2.0.1
    SQL> drop user config cascade;
    drop user config cascade
    ERROR en linea 1:
    ORA-00604: se ha producido un error a nivel 1 de SQL recursivo
    ORA-30511: operacion DDL no valida en los disparadores del sistema
    ORA-06512: en linea 993
    ORA-30511: operacion DDL no valida en los disparadores del sistemaIf I try to drop a table I get the same error. Never seen that before... Any clues?
    30511, 00000, "invalid DDL operation in system triggers"
    // *Cause:  An attempt was made to perform an invalid DDL operation
    //          in a system trigger. Most DDL operations currently are not
    //          supported in system triggers. The only currently supported DDL
    //          operations are table operations and ALTER?COMPILE operations.
    // *Action: Remove invalid DDL operations in system triggers.

Maybe you are looking for

  • MS Access 2003 and Data Services 3.0

    I want to access MS Access 2003 from Aqualogic Data Services 3.0. The documentation tells me that Aqualogic Data Services 3.0 supports MS Access 2003 I read the "Extending Database Support" from the Administration Guide to deploy the xml file ... I d

  • Issue in MIGO item detail tab Enhancement

    Hi, I have enhanced MIGO by adding a text tab in the item detail section which shows the PO texts as in ME23N 'texts' tab. Now when the user executes tcode MIGO and enters the PO number for doing goods receipt the the text tab screen flashes before t

  • How do you use Time Machine to reinstall Safari 4.05?

    I have Time Machine with back ups, but don't know how to make it reinstall just Safari> I can't revert my entire hard drive back a few days. Too much work would be lost. Help please if someone knows how to do this!! I need step by step directions! Th

  • HUGE problem (literally) - FCPX about to eat up my HD

    Hey there, this is my current config: imac 2010 (27", 2.8GHz, 32GB RAM) // 255GB SSD (83.2 GB free) --- "Internal" // 1TB SSD (236.6 GB free) --- "External" (both SSDs are actually built into the iMac, I just refer to them by different names) Now, I'

  • 802.1x MAB with Microsoft NPS ieee802Device object group

    Hi, according to http://www.cisco.com/en/US/prod/collateral/iosswrel/ps6537/ps6586/ps6638/config_guide_c17-663759.pdf (MAC Authentication Bypass Deployment Guide as of May 2011), when you use Microsoft NPS, you cannot simply add MAC-Adresses as Activ