Missing Keywords

I created two new topics to an existing project and added
various keywords to the index. When I generate and run the project,
the keywords appear. They also appear in Topic Properties and Topic
References reports. However, when I publish Webhelp, the new
keywords are missing.
(Version RoboHelp 2002)

Have you checked that the publish location is the same as
where you are looking?

Similar Messages

  • ORA-00905: missing keyword error while creating a materialized view

    Hi Gurus,
    I am trying to create a materialized view as :
    1 CREATE MATERIALIZED VIEW AMREG.ClientData
    2 TABLESPACE AMREG_DATA
    3 COMPRESS
    4 PARALLEL
    5 NOLOGGING
    6 BUILD IMMEDIATE
    7 REFRESH COMPLETE
    8 ON DEMAND
    9 DISABLE QUERY REWRITE
    10 REFRESH START WITH TRUNC( SYSDATE + 1 ) + 3/24 NEXT TRUNC( SYSDATE + 1 ) + 3/24
    11 AS
    12 SELECT
    13 CHILD.CLIENT_SGK "Child SGK",
    14 CHILD.CLIENT_NAME "Child Name",
    15 CHILD.ARC_ACCT_CD "Child ARC Acct Code",
    16 ULTIMATE.CLIENT_SGK "Ultimate Parent SGK",
    17 ULTIMATE.CLIENT_NAME "Ultimate Parent Name",
    18 ULTIMATE.ARC_ACCT_CD "Ultimate ARC Acct Code",
    19 HIER.LVL_FROM_ANCESTOR ,
    20 FROM [email protected] CHILD,
    21 [email protected] HIER,
    22 [email protected] ULTIMATE
    23 WHERE HIER.DESCENDANT_CLIENT_SGK = CHILD.CLIENT_SGK
    24* AND ULTIMATE.CLIENT_SGK = HIER.ANCESTOR_CLIENT_SGK;
    SQL> /
    REFRESH START WITH TRUNC( SYSDATE + 1 ) + 3/24 NEXT TRUNC( SYSDATE + 1 ) + 3/24
    ERROR at line 10:
    ORA-00905: missing keyword
    DBLink name is : DNYCPH60.WORLD
    Please guide me on this and help to resolve the issue.

    Ummm how about not posting the same question 4 times in 3 different forums?
    Gints Plivna
    http://www.gplivna.eu

  • ORA-00905: missing keyword error while creating a materialised view

    Hi Gurus,
    I am trying to create a materialized view as :
    1 CREATE MATERIALIZED VIEW AMREG.ClientData
    2 TABLESPACE AMREG_DATA
    3 COMPRESS
    4 PARALLEL
    5 NOLOGGING
    6 BUILD IMMEDIATE
    7 REFRESH COMPLETE
    8 ON DEMAND
    9 DISABLE QUERY REWRITE
    10 REFRESH START WITH TRUNC( SYSDATE + 1 ) + 3/24 NEXT TRUNC( SYSDATE + 1 ) + 3/24
    11 AS
    12 SELECT
    13 CHILD.CLIENT_SGK "Child SGK",
    14 CHILD.CLIENT_NAME "Child Name",
    15 CHILD.ARC_ACCT_CD "Child ARC Acct Code",
    16 ULTIMATE.CLIENT_SGK "Ultimate Parent SGK",
    17 ULTIMATE.CLIENT_NAME "Ultimate Parent Name",
    18 ULTIMATE.ARC_ACCT_CD "Ultimate ARC Acct Code",
    19 HIER.LVL_FROM_ANCESTOR ,
    20 FROM [email protected] CHILD,
    21 [email protected] HIER,
    22 [email protected] ULTIMATE
    23 WHERE HIER.DESCENDANT_CLIENT_SGK = CHILD.CLIENT_SGK
    24* AND ULTIMATE.CLIENT_SGK = HIER.ANCESTOR_CLIENT_SGK;
    SQL> /
    REFRESH START WITH TRUNC( SYSDATE + 1 ) + 3/24 NEXT TRUNC( SYSDATE + 1 ) + 3/24
    ERROR at line 10:
    ORA-00905: missing keyword
    DBLink name is : DNYCPH60.WORLD
    Please guide me on this and help to resolve the issue.

    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_6002.htm#i2063793 gives you the syntax of the command.
    I think the fact that you have two REFRESH clauses separated by a query rewrite clause is causing some confusion.
    7 REFRESH COMPLETE
    8 ON DEMAND
    9 DISABLE QUERY REWRITE
    10 REFRESH START WITH TRUNC( SYSDATE + 1 ) + 3/24 NEXT TRUNC( SYSDATE + 1 ) + 3/24
    11 AS
    probably should be
    REFRESH COMPLETE
            ON DEMAND
            START WITH TRUNC( SYSDATE + 1 ) + 3/24 NEXT TRUNC( SYSDATE + 1 ) + 3/24
    DISABLE QUERY REWRITE

  • Missing keyword error

    Hi all,
    I am getting missing keyword error when trying to execute the below function,it doesn't give an error while compiling though.Tried to debug but to vain,can't understand what i am missing.
       FUNCTION reprint_file (p_format          VARCHAR2,
                              p_printer_number  VARCHAR2,
                              p_request_id      VARCHAR2,
                              p_order_no_from   VARCHAR2 DEFAULT NULL,
                     p_order_no_to     VARCHAR2 DEFAULT NULL,
                     p_order_date_from VARCHAR2 DEFAULT NULL,
                     p_order_date_to   VARCHAR2 DEFAULT NULL
       RETURN VARCHAR2 IS
          CURSOR c_format(p_format VARCHAR2) IS
             SELECT *
             FROM   rgl_lookup_data
             WHERE  format_name = p_format;
          TYPE c_ref IS REF CURSOR;
          c_rec              c_ref;
          l_info             VARCHAR2(32767);
          l_stmt             VARCHAR2(6000);
          l_order_by         VARCHAR2(200):='';
          l_exec_stmt        VARCHAR2(8000);
          l_fp               UTL_FILE.FILE_TYPE;
          l_filename         VARCHAR2(200);
          --p_dir_name         VARCHAR2(200) := '/usr/tmp';
          p_dir_name VARCHAR2(200) := '/d02/oracle/edi/in';
          l_order_by_clause  VARCHAR2(240);
          l_cursor           PLS_INTEGER;
          l_return           NUMBER;
       BEGIN
          UPDATE rgl_mcy_line_data
          SET    printer_info = p_printer_number
          WHERE  header_id = p_request_id;
          l_stmt := 'SELECT ''"''||printer_info||''"'''; -- ||''","''||printer_info ';
          FOR curr_format IN c_format(p_format)
          LOOP
             IF curr_format.quantity IS NOT NULL THEN
                l_stmt := l_stmt || ' ||'',''||DECODE(quantity, NULL, NULL,''"''||'||'quantity||''"'')';
             END IF;
             IF curr_format.field_25 IS NOT NULL THEN
                l_stmt := l_stmt || ' ||'',''||DECODE(field_25, NULL, NULL,''"''||'||'field_25||''"'')';
             END IF;
          END LOOP curr_format;
          l_exec_stmt := l_stmt
                      || ' FROM rgl_lookup_data '
                      || ' WHERE format_name = :format_b';
          l_filename := 'Reprint_'||'ASP'||'_'||p_request_id||'_'||TO_CHAR(SYSDATE, '_DDMMYYYY_hh24MISS')||'.csv';
          l_fp := UTL_FILE.FOPEN(p_dir_name, l_filename, 'w');
          OPEN c_rec FOR l_exec_stmt USING p_format;
          FETCH c_rec INTO l_info;
          CLOSE c_rec;
          write_line(l_fp, l_info);
          l_exec_stmt := l_stmt
                      || ' FROM  rgl_mcy_line_data '
                      || ' WHERE header_id = :header_id_b '
                      || ' AND   format = :format_b '
                      || ' AND   printer_info = :printer_number_b ';
          IF p_order_no_from IS NOT NULL AND p_order_no_to IS NOT NULL THEN
             l_exec_stmt := l_exec_stmt
                         || ' AND order_number BETWEEN :order_no_from_b TO :order_no_from_to ';
          ELSIF p_order_no_from IS NOT NULL THEN
             l_exec_stmt := l_exec_stmt
                         || ' AND order_number >= :order_no_from_b ';
          ELSIF p_order_no_to IS NOT NULL THEN
             l_exec_stmt := l_exec_stmt
                         || ' AND order_number <= :order_no_from_to ';
          END IF;
          IF p_order_date_from IS NOT NULL AND p_order_date_to IS NOT NULL THEN
             l_exec_stmt := l_exec_stmt
                         || ' AND order_date BETWEEN :order_date_from_b TO :order_date_from_to ';
          ELSIF p_order_date_from IS NOT NULL THEN
             l_exec_stmt := l_exec_stmt
                         || ' AND order_date >= :order_date_from_b ';
          ELSIF p_order_date_to IS NOT NULL THEN
             l_exec_stmt := l_exec_stmt
                         || ' AND order_date <= :order_date_from_to ';
          END IF;
          --log_mesg(l_exec_stmt);
    dbms_output.put_line('Entered');
          l_cursor := DBMS_SQL.OPEN_CURSOR;
          DBMS_SQL.PARSE(l_cursor, l_exec_stmt, DBMS_SQL.NATIVE); --Error is showing at this line
          DBMS_SQL.DEFINE_COLUMN(l_cursor, 1, l_info, 32767);
          DBMS_SQL.BIND_VARIABLE(l_cursor, 'header_id_b', p_request_id);
          DBMS_SQL.BIND_VARIABLE(l_cursor, 'format_b', p_format);
          DBMS_SQL.BIND_VARIABLE(l_cursor, 'printer_number_b', p_printer_number);
    dbms_output.put_line('Exit');
          --log_mesg('req:'||p_request_id);
          --log_mesg('for:'||p_format);
          --log_mesg('pno:'||p_printer_number);
          IF p_order_no_from IS NOT NULL THEN
             --log_mesg('onf:'||p_order_no_from);
             DBMS_SQL.BIND_VARIABLE(l_cursor, 'order_no_from_b', p_order_no_from);
          END IF;
          IF p_order_no_to IS NOT NULL THEN
             --log_mesg('ont:'||p_order_no_to);
             DBMS_SQL.BIND_VARIABLE(l_cursor, 'order_no_to_b', p_order_no_to);
          END IF;
          IF p_order_date_from IS NOT NULL THEN
             --log_mesg('odf:'||p_order_date_from);
             DBMS_SQL.BIND_VARIABLE(l_cursor, 'order_date_from_b', p_order_date_from);
          END IF;
          IF p_order_date_to IS NOT NULL THEN
             --log_mesg('odt:'||p_order_date_to);
             DBMS_SQL.BIND_VARIABLE(l_cursor, 'order_date_to_b', p_order_date_to);
          END IF;
          l_return := DBMS_SQL.EXECUTE(l_cursor);
          LOOP
          --log_mesg('inside the loop')
             EXIT WHEN DBMS_SQL.FETCH_ROWS(l_cursor) = 0; --curr_rec%NOTFOUND;
             DBMS_SQL.COLUMN_VALUE(l_cursor, 1, l_info);
             write_line(l_fp, l_info);
          END LOOP;
          DBMS_SQL.CLOSE_CURSOR(l_cursor);
          UTL_FILE.FCLOSE(l_fp);
          UPDATE rgl_header_data
          SET    last_print_date = SYSDATE,
                 reprint_count = NVL(reprint_count, 0) + 1
          WHERE  header_id = p_request_id;
          COMMIT;
          EXCEPTION
    WHEN OTHERS THEN
        DBMS_OUTPUT.PUT_LINE('An error was encountered - '||SQLCODE||' -ERROR- '||SQLERRM);
          RETURN l_filename;
       END rePrint_File;
    Function Call
    DECLARE
    v_result VARCHAR2(1000);
    BEGIN
    v_result := REGAL_MCY_PRINT_PKG.reprint_file('Macys.lwl','hp4000','6473482927','1213049','1213049',NULL,NULL);
    END;
    DBMS Messages
    Entered
    An error was encountered - -905 -ERROR- ORA-00905: missing keyword
    Any suggestions,
    Thanks in advance!!

    i didn't find anything wrong with this
    DBMS Message before parsing
    SELECT '"'||printer_info||'"' ||','||DECODE(quantity, NULL, NULL,'"'||quantity||'"') ||','||DECODE(format, NULL, NULL,'"'||format||'"') ||','||DECODE(duplicates, NULL,NULL,'"'||duplicates||'"') ||','||DECODE(field_1, NULL, NULL,'"'||field_1||'"') ||','||DECODE(field_2, NULL, NULL,'"'||field_2||'"') ||','||DECODE(field_3, NULL, NULL,'"'||field_3||'"') ||','||DECODE(field_4, NULL, NULL,'"'||field_4||'"') ||','||DECODE(field_5, NULL, NULL,'"'||field_5||'"') ||','||DECODE(field_6, NULL, NULL,'"'||field_6||'"') ||','||DECODE(field_7, NULL, NULL,'"'||field_7||'"') ||','||DECODE(field_8, NULL, NULL,'"'||field_8||'"') ||','||DECODE(field_9, NULL, NULL,'"'||field_9||'"') ||','||DECODE(field_10, NULL, NULL,'"'||field_10||'"') ||','||DECODE(field_11, NULL, NULL,'"'||field_11||'"') ||','||DECODE(field_12, NULL, NULL,'"'||field_12||'"') ||','||DECODE(field_13, NULL, NULL,'"'||field_13||'"') ||','||DECODE(field_14, NULL, NULL,'"'||field_14||'"') ||','||DECODE(field_15, NULL, NULL,'"'||field_15||'"') ||','||DECODE(field_16, NULL, NULL,'"'||field_16||'"') ||','||DECODE(field_17, NULL, NULL,'"'||field_17||'"') ||','||DECODE(field_18, NULL, NULL,'"'||field_18||'"') ||','||DECODE(field_19, NULL, NULL,'"'||field_19||'"') ||','||DECODE(field_20, NULL, NULL,'"'||field_20||'"') ||','||DECODE(field_21, NULL, NULL,'"'||field_21||'"') ||','||DECODE(field_22, NULL, NULL,'"'||field_22||'"') ||','||DECODE(field_23, NULL, NULL,'"'||field_23||'"') ||','||DECODE(field_24, NULL, NULL,'"'||field_24||'"') ||','||DECODE(field_25, NULL, NULL,'"'||field_25||'"') FROM  rgl_mcy_line_data  WHERE header_id = :header_id_b  AND   format = :format_b  AND   printer_info = :printer_number_b  AND order_number BETWEEN :order_no_from_b TO :order_no_from_to

  • Missing keyword when try to use MERGE

    I have COUNT_STATISTICS table that needs to be updated daily.
    MODEL
    NEW_COUNT
    NEW_DATE
    OLD_COUNT
    OLD_DATE
    PRNCT_CHANGE
    XEDHRD
    5206358
    21-AUG-13
    0
    19-AUG-13
    (null)
    XLIMS
    72669230
    21-AUG-13
    72669230
    20-AUG-13
    0
    XEDHRD
    5206358
    22-AUG-13
    5206358
    21-AUG-13
    0
    XLIMS
    72859644
    22-AUG-13
    72669230
    21-AUG-13
    0.262
    so on and so forth...
    Sometimes I have a new MODEL name coming in and I have to account for that and create a row in the table in that case.
    Other times, all I have to do is INSERT new row in the table with new values.
    Simple right?
    Well, I was trying to use MERGE INTO but it is giving me problems...
    This is what I did assuming I manually went in the table and added a new MODEL name and zeros for other columns before I did insertion...
    #!/bin/bash
    MODEL=$1
    sqlplus -S username/password << EOF
    whenever sqlerror exit 1;
    set echo on
    set verify off
    INSERT INTO SEMANTIC.COUNT_STATISTICS(MODEL,NEW_COUNT,NEW_DATE,OLD_COUNT,OLD_DATE)
    SELECT MODEL,
            SELECT COUNT(*)
            FROM TABLE(SEM_MATCH(
                    ?s ?p ?o
             }',SEM_Models('$MODEL'),NULL,
            SEM_ALIASES(SEM_ALIAS('','http://VISION/DataSource/SEMANTIC#')),NULL))
        SYSDATE,
        NEW_COUNT,
        NEW_DATE
    FROM SEMANTIC.COUNT_STATISTICS
    WHERE MODEL = '$MODEL'
    AND NEW_DATE = (
                    select max(NEW_DATE)
                    from SEMANTIC.COUNT_STATISTICS
                    where MODEL = '$MODEL'
    update SEMANTIC.COUNT_STATISTICS
    set prnct_change =
       (NEW_COUNT-OLD_COUNT)/NULLIF(OLD_COUNT,0)*100
    where model = '$MODEL'
    AND NEW_DATE = (
                    select max(NEW_DATE)
                    from SEMANTIC.COUNT_STATISTICS
                    where MODEL = '$MODEL'
    COMMIT;
    exit;
    EOF
    Now I added MERGE in front of INSERT so it checks if the MODEL name doesn't exist-it creates it:
    MERGE INTO SEMANTIC.COUNT_STATISTICS s
    USING (SELECT '${MODEL}' AS MODEL, 0 AS NEW_COUNT, SYSDATE AS NEW_DATE,
      0 AS OLD_COUNT, SYSDATE AS OLD_DATE FROM dual) t
    on (s.MODEL = t.MODEL)
    when not matched then
    INSERT (s.MODEL, s.NEW_COUNT, s.NEW_DATE, s.OLD_COUNT, s.OLD_DATE)
    VALUES (t.MODEL, t.NEW_COUNT, t.NEW_DATE, t.OLD_COUNT, t.OLD_DATE);
    My code combined...
    #!/bin/bash
    MODEL=$1
      sqlplus -S username/password << EOF
      whenever sqlerror exit 1;
      set echo on
      set verify off
      MERGE INTO SEMANTIC.COUNT_STATISTICS s
      USING (SELECT '${MODEL}' AS MODEL, 0 AS NEW_COUNT, SYSDATE AS NEW_DATE, 0 AS OLD_COUNT, SYSDATE AS OLD_DATE FROM dual) t
      on (s.MODEL = t.MODEL)
      when not matched then
      INSERT (s.MODEL, s.NEW_COUNT, s.NEW_DATE, s.OLD_COUNT, s.OLD_DATE)
      VALUES (t.MODEL, t.NEW_COUNT, t.NEW_DATE, t.OLD_COUNT, t.OLD_DATE);
      exit;
    EOF
    model_exists () {
      sqlplus -s username/password <<!
        set heading off
        set feedback off
        set verify off
        set pages 0
        SELECT count(MODEL)
        FROM SEMANTIC.COUNT_STATISTICS
        where MODEL ='$MODEL' AND TO_DATE(NEW_DATE, 'DD-MON-YY') = TO_DATE(SYSDATE, 'DD-MON-YY');
        exit;
    modelcount=$(model_exists $1)
    if [ "${modelcount:-0}" -ne 0 ]; then
        sqlplus -S username/password << EOF
        whenever sqlerror exit 1;
        set echo on
        set verify off
        INSERT INTO SEMANTIC.COUNT_STATISTICS(MODEL,NEW_COUNT,NEW_DATE,OLD_COUNT,OLD_DATE)
        SELECT MODEL,
      SELECT COUNT(*)
      FROM TABLE(SEM_MATCH(
      '{?s ?p ?o }',SEM_Models('$MODEL'),NULL,
      SEM_ALIASES(SEM_ALIAS('','http://VISION/DataSource/SEMANTIC#')),NULL))
        SYSDATE,
        NEW_COUNT,
        NEW_DATE
        FROM SEMANTIC.COUNT_STATISTICS
        WHERE MODEL = '$MODEL'
        AND NEW_DATE = (
      select max(NEW_DATE)
      from SEMANTIC.COUNT_STATISTICS
      where MODEL = '$MODEL'
      COMMIT;
      exit;
    EOF
    else
       sqlplus -S  username/password << EOF
      whenever sqlerror exit 1;
      set echo on
      set verify off
      UPDATE COUNT_STATISTICS
      SET  MODEL = '$MODEL',
      NEW_COUNT = (SELECT COUNT(*) FROM TABLE(SEM_MATCH('{?s ?p ?o}',SEM_Models('$MODEL'),NULL,
      SEM_ALIASES(SEM_ALIAS('','http://VISION/DataSource/SEMANTIC#')),NULL))
      NEW_DATE  = SYSDATE,
      OLD_COUNT = NEW_COUNT,
      OLD_DATE  = NEW_DATE
      WHERE MODEL = '$MODEL'
      AND NEW_DATE = (
      select max(NEW_DATE)
      from SEMANTIC.COUNT_STATISTICS
      where MODEL = '$MODEL'
      COMMIT;
      exit;
    EOF
    fi
    sqlplus -S username/password << EOF
      whenever sqlerror exit 1;
      set echo on
      set verify off
      update COUNT_STATISTICS
      set prnct_change =
        (NEW_COUNT-OLD_COUNT)/NULLIF(OLD_COUNT,0)*100
      where model = '$MODEL'
      AND NEW_DATE = (
      select max(NEW_DATE)
      from SEMANTIC.COUNT_STATISTICS
      where MODEL = '$MODEL'
      COMMIT;
      exit;
    EOF
    But this is creating two rows if it is a new MODEL, ie:
    ./load_myScript.sh  MODELNAME
    MODEL
    NEW_COUNT
    NEW_DATE
    OLD_COUNT
    OLD_DATE
    PRNCT_CHANGE
    MODELNAME
    72669230
    22-AUG-13
    0
    22-AUG-13
    (null)
    MODELNAME
    0
    22-AUG-13
    0
    22-AUG-13
    (null)
    This is not what I want. I want to create a new row if it doesn't exist and then update that same one for that day. But tomorrow it should INSERT a new one for that same MODEL name.
    Does anyone see what I am doing wrong?

    Hi,
    MODEL is an Oracle keyword, so it causes confusion to have a column named MODEL.  Errors like "Missing Keyword" can occur when  Oracle thinks you're talking about the MODEL clause, rather than the column.
    The best solution is not to use Oracle keywords (as found in v$reserverd words) for you own column names, or other identifiers.  MODEL_NAME and MODEL_ID are good names for columns
    If you really must use that column name, qualify it with the table name, and/or put the column name in double-quotes (case-sensitive), e.g.
    count_statistics."MODEL"

  • Error: ORA-00905:Missing keyword while creating Materialized view

    Hi Gurus,
    I am trying to create a materialized view as :
    1 CREATE MATERIALIZED VIEW AMREG.ClientData
    2 TABLESPACE AMREG_DATA
    3 COMPRESS
    4 PARALLEL
    5 NOLOGGING
    6 BUILD IMMEDIATE
    7 REFRESH COMPLETE
    8 ON DEMAND
    9 DISABLE QUERY REWRITE
    10 REFRESH START WITH TRUNC( SYSDATE + 1 ) + 3/24 NEXT TRUNC( SYSDATE + 1 ) + 3/24
    11 AS
    12 SELECT
    13 CHILD.CLIENT_SGK "Child SGK",
    14 CHILD.CLIENT_NAME "Child Name",
    15 CHILD.ARC_ACCT_CD "Child ARC Acct Code",
    16 ULTIMATE.CLIENT_SGK "Ultimate Parent SGK",
    17 ULTIMATE.CLIENT_NAME "Ultimate Parent Name",
    18 ULTIMATE.ARC_ACCT_CD "Ultimate ARC Acct Code",
    19 HIER.LVL_FROM_ANCESTOR ,
    20 FROM [email protected] CHILD,
    21 [email protected] HIER,
    22 [email protected] ULTIMATE
    23 WHERE HIER.DESCENDANT_CLIENT_SGK = CHILD.CLIENT_SGK
    24* AND ULTIMATE.CLIENT_SGK = HIER.ANCESTOR_CLIENT_SGK;
    SQL> /
    REFRESH START WITH TRUNC( SYSDATE + 1 ) + 3/24 NEXT TRUNC( SYSDATE + 1 ) + 3/24
    ERROR at line 10:
    ORA-00905: missing keyword
    DBLink name is : DNYCPH60.WORLD
    Please guide me on this and help to resolve the issue.

    I provided the answer over at the duplicate post ...
    ORA-00905: missing keyword error while creating a materialised view
    Please, please, please ... please do not duplicate posts. Pick one. If you don't get an answer in a reasonable time - close it (edit the title) and THEN open in a different forum.

  • 2 identical sets of photos in LR4, one set shows as missing but has all keywords attached; photos not missing are missing keywords

    I had to move photos and LR4 catalog from one external storage to another. I now have two identical sets of photos in the catalog but one full set is shown as missing. Easy enough to delete these but they have all my hours and hours of work on keywords attached to them. The other set of photos, the one that actually exists on the drive, has no keywords attached. I gotta have those keywords! Is there a way that won't take the rest of my life to get photos and keywords connected again?

    Thanks for helping!
    Your suggestion didn't work, but it did get me tinkering around and led me to a solution that's not necessarily quick but definitely easier than re-entering all the keywords.
    I was smart enough to not have deleted the photos from the thumb drive they were first saved on, so I plugged it back in. Then I went to the folders list in LR and deleted the existing, missing-keyword photos, folder by folder. Then I just dragged the images from the original drive to the the new one. Well, I'm still doing it to 1500 photos but it's working and it saves me lots of work. So thank you for helping me think of the problem and its solution in a different way. I appreciate your time.

  • Alter database begin backup; missing keyword error

    Hi all,
    I am trying to put my database in backup mode using the command "alter database begin backup", but it is giving error shown below:
    $ sqlplus '/as sysdba'
    SQL*Plus: Release 9.2.0.5.0 - Production on Wed Nov 25 16:52:58 2009
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.5.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.5.0 - Production
    SQL> select name,open_mode from v$database;
    NAME OPEN_MODE
    N05PCS07 READ WRITE
    SQL> alter database begin backup;
    alter database begin backup
    ERROR at line 1:
    ORA-00905: missing keyword
    NE one can tell why the command is failing??
    pls...
    Thanks in advance.
    SHAILESH

    Hello,
    All the former posts are right, alter database begin backup; doesn't exists in 9.2 althought
    you already have in this release the alter database end backup;.
    So as to put all the tablespaces in backup mode in one command I suggest you to create a
    stored procedure as follows:
    CREATE OR REPLACE PROCEDURE begin_backup IS
    TYPE RefCurTyp IS REF CURSOR;
    cv RefCurTyp;
    sql_cv VARCHAR2(400);
    tbs VARCHAR2(128);
    sql_stmt VARCHAR2(200);
    BEGIN
    -- Mise en BEGIN BACKUP des TABLESPACES
    sql_cv := 'SELECT distinct (A.name) FROM sys.v_$tablespace A, sys.v_$datafile B, sys.v_$backup C where A.TS# = B.TS# and B.FILE# = C.FILE# and C.STATUS = ''NOT ACTIVE''';
    OPEN cv FOR sql_cv;
    LOOP
    FETCH cv INTO tbs;
    EXIT WHEN cv%NOTFOUND;
    sql_stmt := 'ALTER TABLESPACE '||tbs||' BEGIN BACKUP';
    EXECUTE IMMEDIATE sql_stmt;
    END LOOP;
    CLOSE cv;
    END;
    Then, I just have to call the Procedure like that:
    execute <schema>.begin_backup; and all the tablespaces are in backup mode.
    This procedure must be created on a User/Schema with the following privileges:
    alter tablespace
    select on sys.v_$tablespace
    select on sys.v_$datafile
    select on sys.v_$backupHope it can help.
    Best regards,
    Jean-Valentin
    Edited by: Lubiez Jean-Valentin on Nov 25, 2009 9:44 PM

  • Missing Keyword

    Hi,
    I am running a SQL Statement in SQL Developer and it runs ok. When I try running the same statement in BI Publisher, I get the following error:
    An error occurred while processing the EXECUTE PHYSICAL statement. [nQSError: 17001] Oracle Error code: 905, message: ORA-00905: missing keyword
    My SQL is below:
    select a.active_year, round(nvl(b.leavers, 0)/(count(a.active_month)/12)*100, 1) as left_in_period
    from(
    select 'Avg No of Staff' TABLE_NAME, s.person_id, s.active_month,
    case when(case when to_number(to_char(s.active_month, 'mm')) in(11, 12) then substr(s.active_month,8,4)+1 else to_number(to_char(s.active_month, 'YYYY')) end) = 7 then 2007
    when (case when to_number(to_char(s.active_month, 'mm')) in(11, 12) then substr(s.active_month,8,4)+1 else to_number(to_char(s.active_month, 'YYYY')) end) = 8 then 2008
    when (case when to_number(to_char(s.active_month, 'mm')) in(11, 12) then substr(s.active_month,8,4)+1 else to_number(to_char(s.active_month, 'YYYY')) end) = 9 then 2009
    when (case when to_number(to_char(s.active_month, 'mm')) in(11, 12) then substr(s.active_month,8,4)+1 else to_number(to_char(s.active_month, 'YYYY')) end) = 10 then 2010
    when (case when to_number(to_char(s.active_month, 'mm')) in(11, 12) then substr(s.active_month,8,4)+1 else to_number(to_char(s.active_month, 'YYYY')) end) = 11 then 2011
    when (case when to_number(to_char(s.active_month, 'mm')) in(11, 12) then substr(s.active_month,8,4)+1 else to_number(to_char(s.active_month, 'YYYY')) end) = 12 then 2012
    when (case when to_number(to_char(s.active_month, 'mm')) in(11, 12) then substr(s.active_month,8,4)+1 else to_number(to_char(s.active_month, 'YYYY')) end) = 13 then 2013
    else to_number(to_char(s.active_month, 'YYYY')) end ACTIVE_YEAR
    from hc_employee_turnover_staff s
    union
    select * from(
    WITH my_data as (
    SELECT f.person_id,
    f.person_type_id,
    f.effective_start_date,
    f.effective_end_date,
    substr(p.internal_location, 1, 5) as loc,
    l.location_code,
    d.group_name
    from per_all_people_f f,
    --per_person_type_usages_f t,
    per_people_x p,
    per_assignments_x a,
    hr_locations l,
    pay_people_groups d
    --WHERE f.person_id     = 1182
    where f.person_id = p.person_id
    --and p.person_id           = t.person_id
    AND p.person_id = a.person_id(+)
    AND a.location_id = l.location_id(+)
    and a.people_group_id = d.people_group_id(+)
    and f.person_type_id in(1120,2122, 2123, 2120, 2121, 2118, 2119)),
    month_starts AS (
    SELECT DISTINCT DT FROM (
    SELECT LAST_DAY(to_date('01-OCT-2010','DD-MON-YYYY') + (LEVEL +1))+1 AS DT
    FROM DUAL
    CONNECT BY LEVEL <= to_date('01-NOV-2012','DD-MON-YYYY') - (to_date('01-OCT-2010','DD-MON-YYYY'))))
    SELECT 'Avg No of Staff' TABLE_NAME, person_id, month_starts.dt ACTIVE_MONTH,
    case when to_number(to_char(month_starts.dt, 'mm')) in(11, 12) then substr(month_starts.dt,8,4)+1 else to_number(to_char(month_starts.dt, 'YYYY')) end ACTIVE_YEAR
    from my_data
    INNER JOIN MONTH_STARTS
    ON (month_starts.dt between my_data.effective_start_date and my_data.effective_end_date))
    where table_name = 'Avg No of Staff') a,
    (select leaving_year, count(leaving_month) AS leavers from(
    select 'No of Leavers' TABLE_NAME, l.person_id, l.leaving_month,
    case when(case when to_number(to_char(l.leaving_month, 'mm')) in(11, 12) then substr(l.leaving_month,8,4)+1 else to_number(to_char(l.leaving_month, 'YYYY')) end) = 7 then 2007
    when (case when to_number(to_char(l.leaving_month, 'mm')) in(11, 12) then substr(l.leaving_month,8,4)+1 else to_number(to_char(l.leaving_month, 'YYYY')) end) = 8 then 2008
    when (case when to_number(to_char(l.leaving_month, 'mm')) in(11, 12) then substr(l.leaving_month,8,4)+1 else to_number(to_char(l.leaving_month, 'YYYY')) end) = 9 then 2009
    when (case when to_number(to_char(l.leaving_month, 'mm')) in(11, 12) then substr(l.leaving_month,8,4)+1 else to_number(to_char(l.leaving_month, 'YYYY')) end) = 10 then 2010
    when (case when to_number(to_char(l.leaving_month, 'mm')) in(11, 12) then substr(l.leaving_month,8,4)+1 else to_number(to_char(l.leaving_month, 'YYYY')) end) = 11 then 2011
    when (case when to_number(to_char(l.leaving_month, 'mm')) in(11, 12) then substr(l.leaving_month,8,4)+1 else to_number(to_char(l.leaving_month, 'YYYY')) end) = 12 then 2012
    when (case when to_number(to_char(l.leaving_month, 'mm')) in(11, 12) then substr(l.leaving_month,8,4)+1 else to_number(to_char(l.leaving_month, 'YYYY')) end) = 13 then 2013
    else to_number(to_char(l.leaving_month, 'YYYY')) end LEAVING_YEAR
    from HC_EMPLOYEE_TURNOVER_LEAVERS l
    union all
    select 'No of Leavers' TABLE_NAME, p.person_id,
    trunc(to_date(e.effective_start_date - 1), 'MONTH') as leaving_month,
    case when to_number(to_char(e.effective_start_date - 1, 'mm')) in(11, 12) then substr(e.effective_start_date - 1,8,4)+1 else to_number(to_char(e.effective_start_date - 1, 'YYYY')) end LEAVING_YEAR
    from per_all_people_f e,
    per_people_x p,
    per_assignments_x a,
    hr_locations l,
    pay_people_groups d,
    per_jobs_v j,
    per_grade_definitions g
    WHERE e.person_type_id = 1123
    and e.person_id = p.person_id
    and p.person_id = a.person_id(+)
    and a.location_id = l.location_id(+)
    and a.grade_id = g.grade_definition_id(+)
    and a.people_group_id = d.people_group_id(+)
    and a.job_id = j.job_id(+)
    and e.effective_start_date - 1 >= '01-NOV-2010')
    group by division, leaving_year) b
    where a.division = b.division(+)
    and a.active_year = b.leaving_year(+)
    GROUP BY A.ACTIVE_YEAR, B.LEAVERS
    ORDER BY 2, 1
    Can anyone help?
    Thanks
    Edited by: sliderrules on 03-Dec-2010 03:10

    Hi,
    I know this post is a while old though it's more for the future individuals who experiencing the issue
    I followed this by removing the comments though I was unable to resolve the issue. In my scenario, I was experiencing the issue with the naming convention of CTE's
    http://technicalconfessions.com/posts.php?post_id=199&title=Bi%20Publisher%2011g%20(OBIEE)%20ORA-00905:%20missing%20keyword
    Regards,
    Daniel

  • ORA-00905: missing keyword

    CREATE TABLE STG
      X  NUMBER
    )INSERT INTO STG(X) VALUES (1);
    COMMIT;
    this table will be created dynamically in my program, somewhere I want to get the count
    so i tried this
    declare
    l_cnt number := 0;
      begin
      execute immediate 'select count(x)
    into l_cnt
    from stg';
    dbms_output.put_line('l_cnt: '||l_cnt);
      end;
    /it gives me the error
    ORA-00905: missing keyword
    how do i get the count dynamically for a table created dynamically ?

    Hi,
    user650888 wrote:
    CREATE TABLE STG
    X  NUMBER
    )INSERT INTO STG(X) VALUES (1);
    COMMIT;
    this table will be created dynamically in my program, Why are you creating a table in your program? That's almost never needed in Oracle.
    somewhere I want to get the count
    so i tried this
    declare
    l_cnt number := 0;
    begin
    execute immediate 'select count(x)
    into l_cnt
    from stg';
    dbms_output.put_line('l_cnt: '||l_cnt);
    end;
    /it gives me the error
    ORA-00905: missing keyword
    how do i get the count dynamically for a table created dynamically ?
    EXECUTE IMMEDIATE 'SELECT COUNT (x) FROM stg' INTO l_cnt;

  • ORA-00905: missing keyword while generating sqltxplain.sql

    Hi All,
    I got the below error while generating the sqltxplain.sql, please help me to sort it out.
    SQL>/
    old 1: ^^explain_plan_for.
    new 1: EXPLAIN PLAN SET statement_id = '42881' INTO sqltxplain.sqlt$_sql_plan_table FOR
    Dump file /q02/app/oracle/oaqadb/oaqa_oaqadb/udump/oaqa_ora_1847432.trc
    ERROR at line 2:
    ORA-00905: missing keyword
    Database resides in
    Oracle Database 10g Enterprise Edition
    10.2.0.4.0
    64bit
    AIX(Operating System)
    Regards,
    Jagadish.
    Edited by: 941792 on Jun 26, 2012 4:25 PM

    Please read this:
    https://forums.oracle.com/forums/ann.jspa?annID=718

  • ORA-00905: missing keyword -- with analytical query

    Hi Gurus,
    I created a function in my developer 10g server. where it worked fine.
    But my SIT server is a Version 9.2.0.6.0 . The same function is giving me this error.
    create or replace function test22 return number
    is
    CURSOR C2 IS
    SELECT MAX(sysdate) OVER(PARTITION BY TO_CHAR(sysdate, 'MMRRRR') ORDER BY sysdate ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) EFF_FROM_DT_CONV
    from dual ;
    begin
    for i in c2
    loop
    DBMS_OUTPUT.PUT_LINE('HI' || I.EFF_FROM_DT_CONV);
    end loop;
    null;
    return 1;
    end;
    Show error
    5/1 PL/SQL: SQL Statement ignored
    5/130 PL/SQL: ORA-00905: missing keyword
    Please help me how to resolve this issue.
    If I run the sql statement in sqlprmt it works fine. But when I integrate with PL/SQL am getting error

    You properbly hit bug
    Bug 3083373 ORA-905 when using an analytic clause in SQL within PLSQL
    which is fixed in 9.2.0.7
    As Workaround you could use dynamic SQL (EXECUTE IMMEDIATE...)

  • SAP Upgrade ORA-00905: missing keyword

    Dear experts,
    we have a very urgent SAP upgrade case,
    From SAP R/3 470 SR1 110 to ECC 6 EHP4 SPS09
    source system have three languages ZH EN DE,it's a
    non-unicode system,before SAP upgrade,From rscpinst, i delete language
    German and change contry code to CN,
    (China). Then there is only code page 8400,T-code: I18N check ok,now we have
    a error during upgrade,i was already replace the kernel to 385 version(640_Rel Non-unicode,TP and R3trans alreay the latest version) repeat the SHADOW_IMPORT_UPG1 step but still fail,log result as follow,the SAPKLZHSR1EHP4ERP6F8.GS1 has incomplete conversion
    but the previous log file I.E SAPKLZHSR1EHP4ERP6F7.GS1 also have incomplete conversion but no ORA-00905,we only have codepage 8400 and Non-unicode but why the log mention 4103 it's a Unicode code page,thanks a lot!
    SHDUPGIMP1.ELG
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    SHADOW IMPORT ERRORS and RETURN CODE in SAPKLZHSR1EHP4ERP6F8.GS1
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    2EETW000 SQL error 905 occured: ORA-00905: missing keyword
    2EETW000 SQL error 905 occured: ORA-00905: missing keyword
    1 ETP111 exit code           : "8"
    SAPKLZHSR1EHP4ERP6F8.GS1
    4 ETW000  22 entries for RSMPTEXTS~ imported (SAPLMCB2                                1*).
    4 ETW000   1 entry for TLIBT~ updated  (1MCB2).
    3WETW000 language = '1', converted from codepage 4103 to codepage 8400, incomplete conversion due to invalid chars: '41004e0041004c005900530045005f00440055005200430048004600dc004800520045004e0020002000200020002000200020002000200020002000' -> 'ANALYSE_DURCHF#HREN           '
    4 ETW000   0 entries from FUNCT~ (1ANALYSE_DURCHF#HREN           %) deleted.
    3WETW000 language = '1', converted from codepage 4103 to codepage 8400, incomplete conversion due to invalid chars: '41004e0041004c005900530045005f00440055005200430048004600dc004800520045004e0020002000200020002000200020002000200020002000' -> 'ANALYSE_DURCHF#HREN           '
    4 ETW000   0 entries from FUNCT~ (1ANALYSE_DURCHF#HREN           %) deleted.
    3WETW000 language = '1', converted from codepage 4103 to codepage 8400, incomplete conversion due to invalid chars: '41004e0041004c005900530045005f00440055005200430048004600dc004800520045004e0020002000200020002000200020002000200020002000' -> 'ANALYSE_DURCHF#HREN           '
    4 ETW000   0 entries from FUNCT~ (1ANALYSE_DURCHF#HREN           %) deleted.
    3WETW000 language = '1', converted from codepage 4103 to codepage 8400, incomplete conversion due to invalid chars: '41004e0041004c005900530045005f00440055005200430048004600dc004800520045004e0020002000200020002000200020002000200020002000' -> 'ANALYSE_DURCHF#HREN           '
    4 ETW000   0 entries from TFTIT~ (1ANALYSE_DURCHF#HREN           ) deleted.
    3WETW000 language = '1', converted from codepage 4103 to codepage 8400, incomplete conversion due to invalid chars: '41004e0041004c005900530045005f00440055005200430048004600dc004800520045004e0020002000200020002000200020002000200020002000' -> 'ANALYSE_DURCHF#HREN           '
    4 ETW000   0 entries from TFTIT~ (1ANALYSE_DURCHF#HREN           ) deleted.
    3WETW000 language = '1', converted from codepage 4103 to codepage 8400, incomplete conversion due to invalid chars: '41004e0041004c005900530045005f00440055005200430048004600dc004800520045004e0020002000200020002000200020002000200020002000' -> 'ANALYSE_DURCHF#HREN           '
    4 ETW000   0 entries from TFTIT~ (1ANALYSE_DURCHF#HREN           ) deleted.
    4 ETW000  [     dev trc,00000]  Wed Sep  7 10:41:04 2011                                             815387003  1338.120210
    4 ETW000  [     dev trc,00000]     OCIStmtExecute() failed with -1=OCI_ERROR                              10  1338.120220
    4 ETW000  [     dev trc,00000]     SQL error 905:                                                          6  1338.120226
    4 ETW000  [    dbsloci.,00000]  *** ERROR => Error 905 in stmt_fetch() from oci_execute_stmt(), orpc=0
    4 ETW000                                                                                12  1338.120238
    4 ETW000  [    dbsloci.,00000]  *** ERROR => ORA-905 occurred when executing SQL stmt (parse error offset=110)
    4 ETW000                                                                                9  1338.120247
    4 ETW000  [     dev trc,00000]  sc_p=0x140f618,no=67,idc_p=(nil),con=0,act=1,slen=149,smax=256,#vars=4,stmt=0x1783c10,table=
    4 ETW000                                                                                17  1338.120264
    4 ETW000  [     dev trc,00000]  SELECT ID,OBJECT,LANGU,TYP,VERSION FROM "DOKIL~" WHERE (LANGU IN ( :A0 )) AND ID = :A1 AND OBJECT BE\
    4 ETW000                                                                                9  1338.120273
    4 ETW000  [     dev trc,00000]  TWEEN :A2 ANALYSE#_DURCHF#REN           % :A3 #?;                         5  1338.120278
    4 ETW000  [     dev trc,00000]  sc_p=0x140f618,no=67,idc_p=(nil),con=0,act=1,slen=149,smax=256,#vars=4,stmt=0x1783c10,table=
    4 ETW000                                                                                11  1338.120289
    4 ETW000  [     dev trc,00000]  Dumping DBSL stmt. cache:                                                  5  1338.120294
    4 ETW000  [     dev trc,00000]  prep=0,lit=0,nsql=1,lobret=0,xop=1,dbcnt=0,upsh=(nil),stmtp=0x1784758,rtc=0
    4 ETW000                                                                                29  1338.120323
    4 ETW000  [     dev trc,00000]  IN : cols=4,rmax=1,xcnt=0,rpc=0,rowi=0,rtot=0,upto=4294967295,rsize=28,vmax=32,bound=1,iobuf_p=0x1493510,vda_p=0x1784db0
    4 ETW000                                                                                10  1338.120333
    4 ETW000  [     dev trc,00000]       lobs=0,lmax=0,lpcnt=0,larr=(nil),lcurr_p=(nil),rret=0                 6  1338.120339
    4 ETW000  [     dev trc,00000]  SELECT ID,OBJECT,LANGU,TYP,VERSION FROM "DOKIL~" WHERE (LANGU IN ( :A0 )) AND ID = :A1 AND OBJECT BE\
    4 ETW000                                                                                7  1338.120346
    4 ETW000  [     dev trc,00000]  TWEEN :A2 ANALYSE#_DURCHF#REN           % :A3 #?;                         5  1338.120351
    4 ETW000  [    dbds    ,00596]  ***LOG BY2=>sql error 905        performing FET        [dbds#2 @ 596]
    4 ETW000                                                                                14  1338.120365
    4 ETW000  [    dbds    ,00596]  ***LOG BY0=>ORA-00905: missing keyword [dbds#2 @ 596]                      6  1338.120371
    2EETW000 SQL error 905 occured: ORA-00905: missing keyword
    4 ETW000   0 entries from FUNCT~ (1MCB_GRAPHIC_DAILY             %) deleted.
    4 ETW000   0 entries from FUNCT~ (%MCB_GRAPHIC_DAILY             %) deleted.
    4 ETW000   0 entries from TFTIT~ (1MCB_GRAPHIC_DAILY             ) deleted.
    4 ETW000   0 entries from TFTIT~ (%MCB_GRAPHIC_DAILY             ) deleted.
    SAPKLZHSR1EHP4ERP6F7.GS1
    4 ETW000   1 entry for LDBNT~ imported (1FTI_TR_PL_CF        *).
    4 ETW000   0 d /   1 i /   0 u /   0 =   0% ucf LDBT~
    4 ETW000   1 entry for LDBT~ imported (1FTI_TR_PL_CF).
    4 ETW000   1 entry for TRDIRT~ inserted (SAPDBFTI_TR_POSITIONS                   1*).
    3WETW000 some text was mutilated during conversion from unicode to ascii in language '1'. This is the result: 'SP_JOTC          ###############'
    3WETW000 language = '1', converted from codepage 4103 to codepage 8400, incomplete conversion due to invalid chars: '530050005f004a004f005400430020002000200020002000200020002000200020003a571659a44e13664d881f75a74ec1542000200020002000200020002000' -> 'SP_JOTC          ###############'
    4 ETW000 REPOT1SAPDBFTI_TR_POSITIONS                    A replaced.
    4 ETW000   0 entries from D020T~ (SAPDBFTI_TR_POSITIONS                   %) deleted.
    4 ETW000   0 entries from D021T~ (SAPDBFTI_TR_POSITIONS                   %) deleted.
    4 ETW000   0 entries from TRDIRT~ (DBFTI_TR_POSITIONSFXXX                  1%) deleted.
    4 ETW000   0 entries from TRDIRT~ (DBFTI_TR_POSITIONSNXXX                  1%) deleted.
    4 ETW000   0 entries from TRDIRT~ (DBFTI_TR_POSITIONSN001                  1%) deleted.
    4 ETW000   0 entries from TRDIRT~ (DBFTI_TR_POSITIONSSEL                   1%) deleted.
    4 ETW000   0 entries from TRDIRT~ (DBFTI_TR_POSITIONSSXXX                  1%) deleted.
    4 ETW000   0 entries from TRDIRT~ (DBFTI_TR_POSITIONSTOP                   1%) deleted.
    SAPup.ECO
    Phase SHADOW_IMPORT_UPG1:
    BLOCKED SIGNALS: ''
    SAPup> Starting subprocess 2865 at 20110907101845
    ENV: DIR_LIBRARY=/usr/sap/upgrade/upg_dir/abap/exenew
    ENV: LD_LIBRARY_PATH=/usr/sap/upgrade/upg_dir/abap/exenew:/usr/sap/upgrade/upg_dir/jvm/jre/lib/amd64/server:/usr/sap/upgrade/upg_dir/jvm/jre/lib/amd64:/usr/sap/upgrade/upg_dir/jvm/jre/../lib/amd64:/usr/sap/GS1/SYS/exe/run:/oracle/GS1/102_64/lib
    ENV: NLS_LANG=AMERICAN_AMERICA.WE8DEC
    ENV: ORACLE_BASE=/oracle
    ENV: ORACLE_HOME=/oracle/GS1/102_64
    ENV: ORACLE_PSRV=GS1
    ENV: ORACLE_SID=GS1
    ENV: ORA_NLS33=/oracle/client/92x_64/ocommon/nls/admin/data
    ENV: PATH=/usr/sap/upgrade/upg_dir/abap/exenew:/oracle/GS1/102_64/bin:.:/home/gs1adm:/usr/sap/GS1/SYS/exe/run:/opt/gcc295/bin:/opt/gnome/bin:/usr/games:/usr/bin/X11:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/global_lx/bin:/usr/global/bin
    ENV: SAPSYSTEMNAME=GS1
    ENV: auth_shadow_upgrade=0
    ENV: dbms_type=ORA
    ENV: dbs_ora_schema=SAPDAT
    ENV: dbs_ora_tnsname=GS1
    EXECUTING /usr/sap/upgrade/upg_dir/abap/exenew/tp (/usr/sap/upgrade/upg_dir/abap/exenew/tp) pf=/usr/sap/upgrade/upg_dir/abap/bin/SHDUPGIMP1.TPP put GS1
    This is /usr/sap/upgrade/upg_dir/abap/exenew/tp version 376.03.38 (release 701)
    This is /usr/sap/upgrade/upg_dir/abap/exenew/R3trans version 6.14 (release 701 - 03.06.11 - 17:57:00).
    2EETW000 SQL error 905 occured: ORA-00905: missing keyword
    2EETW000 SQL error 905 occured: ORA-00905: missing keyword
    /usr/sap/upgrade/upg_dir/abap/exenew/R3trans finished (0008).
    ERROR: stopping on error 8 during SHADOW IMPORT
    Warning: Parameter INTERRUPT is no longer used.
    Warning: Parameter DAYLIGHT_SHUTDOWN is no longer used.
    Warning: Parameter WITH_TACOB is no longer used.
    Warning: Parameter IMPDP_BY_EVENT is no longer used.
    Warning: Parameter INTERRUPT is no longer used.
    Warning: Parameter DAYLIGHT_SHUTDOWN is no longer used.
    Warning: Parameter WITH_TACOB is no longer used.
    Warning: Parameter IMPDP_BY_EVENT is no longer used.
    Warning: Parameter DBCONFPATH is no longer used.
    stopping on error 8 during SHADOW IMPORT
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 8
    WARNS: Highest tp internal warning was: 0118
    tp finished with return code: 8
    meaning:
      A tool used by tp produced errors
    Process with ID 2865 terminated with status 8
    B.R
    Lance.
    Edited by: Yen on Sep 7, 2011 8:11 AM

    Hello,
    Following upg master was used -
    51036889_1 BS 7 SR1 Upgrade Master 1/2
    51036889_2 BS 7 SR1 Upgrade Master 2/2
    And the kernel dvd used was NUC -
    51036767_4 BS 7 SR1 Kernel 7.01
    After successful upgrade to ecc6 EhP4, Unicode conversion was done later with UC kernel DVD (during IMPORT)
    Thanks

  • DBMS_ADVANCED_REQRITE getting ORA-00905: missing keyword

    What am I doing wrong here?
    17:17:29 NJ3417@pubd1> create table test_a (col_a varchar2(20));
    Table created.
    Elapsed: 00:00:00.04
    17:17:55 NJ3417@pubd1> insert into test_a values('Red');
    1 row created.
    Elapsed: 00:00:00.02
    17:18:09 NJ3417@pubd1> create table test_b (col_b varchar2(20));
    Table created.
    Elapsed: 00:00:00.02
    17:18:32 NJ3417@pubd1> insert into test_b values('Blue');
    1 row created.
    Elapsed: 00:00:00.03
    17:18:55 NJ3417@pubd1> commit;
    Commit complete.
    17:34:56 NJ3417@pubd1> begin
    17:34:56   2    sys.dbms_advanced_rewrite.declare_rewrite_equivalence(
    17:34:56   3           name => 'Mikes SQL override',
    17:34:56   4           source_stmt => 'SELECT col_a FROM test_a',
    17:34:56   5           destination_stmt => 'SELECT col_b FROM test_b',
    17:34:56   6           validate => FALSE);
    17:34:56   7  end;
    17:34:56   8  /
    begin
    ERROR at line 1:
    ORA-00905: missing keyword
    ORA-06512: at "SYS.DBMS_ADVANCED_REWRITE", line 29
    ORA-06512: at "SYS.DBMS_ADVANCED_REWRITE", line 185
    ORA-06512: at line 2
    17:54:18 NJ3417@pubd1> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE    11.2.0.3.0      Production
    TNS for Solaris: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    5 rows selected.Thanks,
    Mike

    mtefft wrote:
    What am I doing wrong here?I don't have your exact version but I believe you can not have any string as the name of the rewrite rule. See the documentation
    Here is the working example:
    SQL> select * from v$version ;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    SQL> create table test_a (col_a varchar2(20));
    Table created.
    SQL> insert into test_a values('Red');
    1 row created.
    SQL> create table test_b (col_b varchar2(20));
    Table created.
    SQL> insert into test_b values('Blue');
    1 row created.
    SQL> commit ;
    Commit complete.
    SQL> select col_a from test_a ;
    COL_A
    Red
    SQL> select col_b from test_b ;
    COL_B
    Blue
    begin
      sys.dbms_advanced_rewrite.declare_rewrite_equivalence(
           name => 'Mikes SQL override',
           source_stmt => 'SELECT col_a FROM test_a',
           destination_stmt => 'SELECT col_b FROM test_b',
           validate => FALSE);
    end;
      8  /
    begin
    ERROR at line 1:
    ORA-00905: missing keyword
    ORA-06512: at "SYS.DBMS_ADVANCED_REWRITE", line 29
    ORA-06512: at "SYS.DBMS_ADVANCED_REWRITE", line 185
    ORA-06512: at line 2
    begin
      sys.dbms_advanced_rewrite.declare_rewrite_equivalence(
           name => 'myrule',
           source_stmt => 'SELECT col_a FROM test_a',
           destination_stmt => 'SELECT col_b FROM test_b',
           validate => FALSE);
    end;
      8  /
    PL/SQL procedure successfully completed.
    SQL> show parameter rewrite
    NAME                                 TYPE        VALUE
    query_rewrite_enabled                string      TRUE
    query_rewrite_integrity              string      enforced
    SQL> alter session set query_rewrite_integrity=trusted ;
    Session altered.
    SQL> show parameter rewrite
    NAME                                 TYPE        VALUE
    query_rewrite_enabled                string      TRUE
    query_rewrite_integrity              string      TRUSTED
    SQL> select col_a from test_a ;
    COL_A
    Blue

  • Copy File From One Drive to Another & Missing Keyword Tags

    Hi,
    I use LR 2.7.  I want to copy one file from one drive to another drive with the same file name.  I thought you could drag the file, but it doesn't copy over the file in the other drive, can you explain what I have to do? 
    Also, I tried to import the folder into another drive, but it doesn't copy the keyword tags.  Is there a way to do this?
    Thanks
    Barb

    Hey Barb,
       Well, if you use the Year/Month/Day/pictures_here  format, none of the folders contains a massive amount of folders.  It's not the number of folders that generates problems, it's having them all in _one_ folder that creates slow-down issues.  Imagine if you had a deck of cards; look for one card... you have to go through all 52 cards to find it.  But, if you broke it down into the 4 groups, you only have to go through 13, which is lots faster.  Now imagine going through 15000 instead of 52...
    Look at the way lightroom can automatically import by date;  it has several preset formats.  If you pick one of those, then when you import new photos, it will automatically create any missing ones, and you have lots less to do.
    Depending on how much work you have already done, you might consider making a new catalog and just importing all of your photos again, and let it create everything quickly for you.
    You could save all of your "edit" changes by writing out all of the xmp files first.  But with 15000 files in one directory, this will double it to 30000 (one per image!), but will preserve all of your edits if you choose to make a new catalog approach.
    As for combing catalogs, once you have one catalog the way you want it, you can select "import from catalog" and it will suck it into a new one, thus combining the catalogs.  The only problem I can see is that it will import it in the format you already have it, so you have to organize it manually before you import it.  Otherwise, you'll get your old format and your new format in the one catalog (but can then move pictures around if you need to).
    Personally,  I'd go the 'write xmp files, create new catalog' approach.  Then just recreate my collections, etc.
    But either way you do it, it will take some time processing, as that's a lot of files to start with!
    Ciao!
    Jason

Maybe you are looking for

  • I have an iphone 4 contract that's up in july 2013, but my iphone is broken...can i buy a used phone and activate it?

    I'm not under warranty, insurance or anything like that. The reps at the store when I bought my phone were not very clear about really anything with me and I'm just not sure if the contract is ONLY for iphones..? I was thinking of getting a Samsung o

  • AP:  Procedure in SAP to void payment methods

    Good Morning, What is the procedure in SAP to void payment methods? For checks?  Is it possible to void range of checks as well? EFT?  Is it possible to void payment method for EFT?  If so, how?  Also, what if the payment was already sent to the bank

  • Could not connect to any JRun/ColdFusion servers on host localhost

    I am a new CF admin and I am trying to upgrade my Apache.  I am following the instructions in http://help.adobe.com/en_US/ColdFusion/9.0/Admin/WSc3ff6d0ea77859461172e0811cbf364104-7fd9 .html but am getting an error.  Could not connect to any JRun/Col

  • IOS 8, iPad, and Safari

    This has not been a smooth transition for me. I upgraded to iOS 8 on my iPad 4 with no problem. That said, Safari has never been the same. My biggest complaint at this point is the top "area" (url, forward/back arrow, bookmarks, etc.) disappears. I h

  • Transcode settings in Encore CS3 for 24 frames?

    Ok so I exported my 3 short films (all 23.976) and then dropped them into encore. Used the "automatic" transcode settings, and burned a DVD. Looks like crap. I found I can make my own preset for transcoding, so what settings should I be using to make