Dear all, here are the few questions:
1) What SQL*Plus command can I use to list all available tables in the Oracle directory (or when I logged into Student directory)
2) I created a VIEW file called StudAdmssion2006. What SQL Command can I use to print out all tables involved in my view definition For example:
Create View StudAdmssion2006 AS
Select S1.studntName, S1.StudNo,
S2.Cohort,S2.Misc, S2.StudNo,S2.Grad_Date, S2.Lecture
FROM StudPer S1, CO_HOT S2, Person P1
WHERE S1.StudNo = S2.StudNo;
3) I want my output to display fully on screen, just like A4 format, how do I do that?:
For example:
Select name, address, sex, age, Profession, qualificatoin
From Personnel;
1) What SQL*Plus command can I use to list all available tables in the Oracle directory (or when I logged into Student directory)
2) I created a VIEW file called StudAdmssion2006. What SQL Command can I use to print out all tables involved in my view definition For example:
Create View StudAdmssion2006 AS
Select S1.studntName, S1.StudNo,
S2.Cohort,S2.Misc, S2.StudNo,S2.Grad_Date, S2.Lecture
FROM StudPer S1, CO_HOT S2, Person P1
WHERE S1.StudNo = S2.StudNo;
3) I want my output to display fully on screen, just like A4 format, how do I do that?:
For example:
Select name, address, sex, age, Profession, qualificatoin
From Personnel;