如何在 Oracle SQL Developer 中设置自定义日期时间格式?
默认情况下,Oracle SQL 开发人员将日期值显示为 15-NOV-11
.我想默认查看时间部分(小时/分钟/秒).
By default, Oracle SQL developer displays date values as 15-NOV-11
. I would like to see the time part (hour/minute/second) by default.
有没有办法在 Oracle SQL Developer 中配置它?
Is there a way to configure this within Oracle SQL Developer?
推荐答案
您可以在首选项中更改:
You can change this in preferences:
- 从 Oracle SQL Developer 的菜单转到:工具 > 首选项.
- 在首选项对话框中,从左侧面板中选择数据库 > NLS.
- 从 NLS 参数列表中,在 日期格式 字段中输入
DD-MON-RR HH24:MI:SS
. - 保存并关闭对话框,完成!
- From Oracle SQL Developer's menu go to: Tools > Preferences.
- From the Preferences dialog, select Database > NLS from the left panel.
- From the list of NLS parameters, enter
DD-MON-RR HH24:MI:SS
into the Date Format field. - Save and close the dialog, done!
截图如下:
相关文章