Ask a Question related to Coldfusion Database Access, Design and Development.
-
SteveThePilot #1
Get list of all Field Names in ORACLE DB
I'm wondering if there is a way I can list all of the field names in an Oracle table easily? Any ideas?
SteveThePilot Guest
-
Contribute CS3 Recipient (Names) List
When sending a Contribute (CS3) draft to other users, how does the selection list of users get populated? We have created Contribute users... -
cfgridupdate can't find oracle field names
This is a simple enough test case, but it simply doesn't work. I have tried it w/ & w/o action="#cgi.script_name#" & format="flash". I have made... -
List all query names
I'm on a server that does not allow me to look at the normal debuging information. Does anyone know how to loop over all the queries and dump the... -
List Hash 'Field' Names
I am trying to write more automated code - either I am a lazy typist or am just trying to get more with it! I have a hash I define; I have a form... -
List all and field names database contents
I have been provided with a DSN, user name and password for one of my clients sites. I'm not an ASP developer and need to view all the contents... -
jdeline #2
Re: Get list of all Field Names in ORACLE DB
If you SELECT * FROM tableName WHERE id = (SELECT Max(id) AS maxId FROM
tableName), you will have a variable named Foo.ColumnList, where Foo is the
name of your query. This is a comma delimited list of all fields in the table
jdeline Guest
-
paross1 #3
Re: Get list of all Field Names in ORACLE DB
Depends on your particular privileges in regards to your data dictionary, but....
SELECT column_name
FROM user_tab_cols
WHERE table_name=UPPER('YOUR_TABLE_NAME')
Phil
paross1 Guest
-
BON #4
Re: Get list of all Field Names in ORACLE DB
select table_name, column_name from all_tab_columns where table_name like 'EMP'
BON Guest
-
Unregistered #5Unregistered Guest
-
Unregistered #6
Get list of all Field Names in ORACLE DB
Select fieldname from psrecfielddefn where recname like 'YourTableName'
Unregistered Guest
-
Unregistered #7
Get list of all Field Names in ORACLE DB
select table_name, column_name from all_tab_columns where table_name like 'EMP'
Awesome it helped!Unregistered Guest



Reply With Quote


