0

エラーが発生する

ORA-00904: "GLOBAL_VARIABLE_ARR": 無効な識別子 ORA-06512: 51 行目。

と何か関係がありglobal_variable_rec.where_clauseます。

誰かがこれを解決するのを手伝ってくれますか? コードは次のとおりです。distribution_idから値を返すと想定されていますglobal_variable_arr('GLOBAL_DISTRIBUTION_ID')。そうではありません。

CREATE OR REPLACE Procedure updateGlobalvariables ( transmittal_id IN NUMBER,      distribution_id IN NUMBER )

IS

sql_data        VARCHAR2(500);    --Holds select statment resulting value
query_string    VARCHAR2(500);    --Holds query/sql
i               VARCHAR2(75);     --Used for looping through the array
--transmittal_id  NUMBER(3) := 321; 
--distribution_id NUMBER(3) := 123;

--place holder for LETTER_GLOBAL_VARIABLE.TABLE_NAME
table_name VARCHAR2(30);

--Array for the Global Variables
TYPE global_variable_table_arr IS TABLE OF VARCHAR2(500) INDEX BY VARCHAR2(30);
global_variable_arr global_variable_table_arr;

--Cursor to hold the global variables
CURSOR global_variable_cur IS 
SELECT * FROM LETTER_GLOBAL_VARIABLES 
WHERE TABLE_NAME IS NOT NULL AND WHERE_CLAUSE IS NOT NULL;

--Record for the cursor to hold the data from the cursor.
global_variable_rec global_variable_cur%rowtype; 

BEGIN  
--Filling the array with(Element) the value from Distribution ID
global_variable_arr('GLOBAL_DISTRIBUTION_ID') := distribution_id;
dbms_output.put_line('GLOBAL_DISTRIBUTION_ID := '||      global_variable_arr('GLOBAL_DISTRIBUTION_ID') );

--Filling the array with(Element) the value from Transmittal ID
global_variable_arr('GLOBAL_TRANSMITTAL_ID') := transmittal_id;
dbms_output.put_line('GLOBAL_TRANSMITTAL_ID := '||     global_variable_arr('GLOBAL_TRANSMITTAL_ID') );

OPEN global_variable_cur;
FETCH global_variable_cur INTO global_variable_rec;
LOOP

    FETCH global_variable_cur INTO global_variable_rec;
    EXIT WHEN global_variable_cur%NOTFOUND;

    --Display table name, column name,global variable and the where clause (All from the LETTER_GLOBAL_VARIABLE table)
    dbms_output.put_line('Table name is: '|| global_variable_rec.table_name ||', column name is: '|| global_variable_rec.column_name ||', global variable name is: '|| global_variable_rec.global_variable || ', where clause is: ' || global_variable_rec.where_clause);

    --This the query that will grab the value(s) from the table(s). It is stored inside a variable
    query_string:= 'SELECT '||global_variable_rec.column_name|| '  FROM '|| global_variable_rec.table_name ||' WHERE '|| global_variable_rec.where_clause;

/* the where_clause contains: DISTRIBUTION_ID=global_variable_arr('GLOBAL_DISTRIBUTION_ID') */

    --Displays the SQL Query (query_string)
    dbms_output.put_line('SQL QUERY IS: ' || query_string);

    --This Executes the Query(SQL statement) inside the query_string variable
    --and saves the result(Value) into the sql_data variable.
    EXECUTE IMMEDIATE query_string INTO sql_data;

    --Display the value inside the variable sql_data
    dbms_output.put_line('SQL data IS: ' || sql_data);

    --Fill in the array with the value(Elements) from the sql_data variable.
    global_variable_arr(global_variable_rec.global_variable) := sql_data;

END LOOP;

CLOSE global_variable_cur;

i := global_variable_arr.FIRST;  -- Get first element of array

WHILE i IS NOT NULL LOOP

    --Displaying the global variable and its value
    dbms_output.put_line('Global Varaible name : ' || i || ' Value : ' || global_variable_arr(i));
    i := global_variable_arr.NEXT(i);  -- Get next element of array

END LOOP;

END;
--EXECUTE updateGlobalvariables;

これは私のアウトプットです:

GLOBAL_DISTRIBUTION_ID := 123 GLOBAL_TRANSMITTAL_ID := 321 表名: DISTRIBUTION、列名: PERSON_ID、グローバル変数名: Global_person_id、句: DISTRIBUTION_ID=global_variable_arr('GLOBAL_DISTRIBUTION_ID') SQL QUERY IS: SELECT PERSON_ID FROM DISTRIBUTION WHERE = DISTRIBUTION_ID global_variable_arr('GLOBAL_DISTRIBUTION_ID')

4

1 に答える 1