I am new to Linux, I want to check if a table does not exist in Oracle than create a new table using Linux shell script to write the code. I probably need to do an if else statement?
Here is my code for creating table in Oracle
Create table traffic_profile_external
(
  TRAFFIC_PROFILE_ID    NUMBER,     
  PE_INGRESS_FLAG       VARCHAR2(1),
  PE_EGRESS_FLAG        VARCHAR2(1),
  CE_INGRESS_FLAG       VARCHAR2(1),
  CE_EGRESS_FLAG        VARCHAR2(1),
  COS_PROFILE_TYPE      VARCHAR2(10)
);
 
     
     
    