EduardoArias
Programmer
HELP!!!!
Hey everybody ... I'm in some kind of trouble trying to complete this week's lab assignment.
There are several reasons why I cannot get it done:
1- First of all, when I have to load the ORDER_TRANS.SQL file, I have to it with the following code:
@Q:\SAI430_002\ORDER_TRANS.SQL
The weird thing is that in my project instructions say that if we have a copy of the ODER_TRANS.SQL in the Q: drive (Our school drive) we don't need to use the "@" at the beginning. Well, for me does not work and it gives me an error saying the the command is not recognize. But when I use the "@" before the "Q" works.
Then, when the file is loaded, I get many errors saying " table or view does not exist"
2- This is the code I'm using to create the table:
CREATE TABLE ERROR_AUDIT
(REF_ID VARCHAR2(10),
CUR_USER VARCHAR2(15),
PROCESS_DATE DATE,
INPUT_FILE VARCHAR2(20),
RECORD_ID VARCHAR2(15),
HANDLED_ERROR VARCHAR2(100));
Well, when this code runs, it gives me an error message saying "name is already used by an existing object". In addition, I did this with the other table names in the assigment and the result was the same.
Can someone give me feedback to resolve this?
Thanks
Hey everybody ... I'm in some kind of trouble trying to complete this week's lab assignment.
There are several reasons why I cannot get it done:
1- First of all, when I have to load the ORDER_TRANS.SQL file, I have to it with the following code:
@Q:\SAI430_002\ORDER_TRANS.SQL
The weird thing is that in my project instructions say that if we have a copy of the ODER_TRANS.SQL in the Q: drive (Our school drive) we don't need to use the "@" at the beginning. Well, for me does not work and it gives me an error saying the the command is not recognize. But when I use the "@" before the "Q" works.
Then, when the file is loaded, I get many errors saying " table or view does not exist"
2- This is the code I'm using to create the table:
CREATE TABLE ERROR_AUDIT
(REF_ID VARCHAR2(10),
CUR_USER VARCHAR2(15),
PROCESS_DATE DATE,
INPUT_FILE VARCHAR2(20),
RECORD_ID VARCHAR2(15),
HANDLED_ERROR VARCHAR2(100));
Well, when this code runs, it gives me an error message saying "name is already used by an existing object". In addition, I did this with the other table names in the assigment and the result was the same.
Can someone give me feedback to resolve this?
Thanks