Link to home
Start Free TrialLog in
Avatar of Kerbeross
Kerbeross

asked on

View field in table Oracle 8i

Hi...
I want to view field list in file of Orable 8i db. How?
Also, how can I view field/file content by page?
Thanks.
Avatar of sujit_kumar
sujit_kumar
Flag of United States of America image

I presume you want to see the information regarding all the coulmns of table in your schema. You can do that by,

SELECT * FROM USER_TAB_COLUMNS;

  I have no idea of viewing field/file contents. Are you taking about Database files like that of Access?


Regards...
Sujit
Avatar of Kerbeross
Kerbeross

ASKER

I run the command "SELECT * FROM USER_TAB_COLUMNS;" but what I found was it view a very long list of table schema. I just want to view a row so that I can know what field is in it.
Avatar of seazodiac
then try to filter out using LIKE oper



SELECT * FROM USER_TAB_COLUMNS where column_name like '%string%' ; --replace the string with the one you really want to see...
actually I don't know what's the column name. my purpose here is to see the column name, only then display the data inside.
ASKER CERTIFIED SOLUTION
Avatar of Bigfam5
Bigfam5

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
But what about my second question?
use, set pause on