控制文件中的时间戳
我有一个脚本,它采用表名并通过查询表的所有列/行来生成控制文件。 这适用于数字和字符数据,但不适用于时间戳数据,因此我需要调整脚本以将时间戳数据输出到控件中,以便可以正确读取它。
所以本质上,我的问题是如何格式化控制文件中的时间戳数据,以便可以将其输入到时间戳列中。
I have a script that takes a table name and generates a control file by querying all the columns/rows the table. This works fine for numeric and character data but fails on timestamp data so I need to adjust the script to output the timestamp data into the control in such a way that it can be read in properly.
So essentially, my question is how to format TimeStamp data in a control file so that it can be inputed into a TimeStamp column.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在列列表中使用
to_date
,如下所示 在这里。 就像是:You need to use
to_date
in your column listing as demonstrated here. Something like: