Question: Solved: Oracle SQL Issues a DROP TABLE command for the external table that will be created in the following step table field names are Protein

Solved:
Oracle SQL
Issues a "DROP TABLE" command for the external table that will be created in the following step table field names are "Protein ID","RMSD_1"....."RMSD_32".
Creates a query (using a substitution variable to respresent the Protein Identifier) that retrieves all of the RMSD values associated with that protein.
I have started the question, but I'm stuck in the query part if you could help me any way you can it will be greatly appreciated.
drop directory ResearchData;
create directory ResearchData as 'Z:\ResearchData-1.csv';
grant read, write on directory ResearchData to DBA;
drop table Research;
create table Research(
Protein_ID VARCHAR2(6),
Chain_ID VARCHAR(2)
ORGANIZATION EXTERNAL(
TYPE oracle_loader
DEFAULT DIRECTORY ResearchData
ACCESS PARAMETERS
(FIELDS TERMINATED BY
LOCATION ('Z:IResearchData-1.csv')
;
 Solved: Oracle SQL Issues a "DROP TABLE" command for the external

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!