What is the reason for not working of 'describe' command on oracle?

烂漫一生 提交于 2019-12-09 03:40:30

describe is not a SQL statement, otherwise it would have been documented in the SQL language reference:

The documentation for the describe command can be found in the SQL*Plus command reference:

which means it is only available in SQL*Plus (and probably in SQL Developer as well). It is a client side command and thus the SQL client you are using needs to support it.

DESC[RIBE] command is an SQL*Plus command only, even if you try it in SQL Developer it will not work !

Source : https://ss64.com/ora/desc.html

Highlight the object and press f4 , this would give you the table/object details

https://dbeaver.io/forum/viewtopic.php?f=3&t=1937

as @a_horse_with_no_name has already said desc is not a SQL statement. So we can use this shortcut for that

I just tried it on SQL Developer and it worked. Maybe it wasn't available before, but certainly is SQL Developer 19.1.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!