sql 加载器日志文件结果
我在 ASP.NET 应用程序中使用 SQLloader 自动将数据从 CSV/EXCEL 批量上传到 Oracle 数据库。 Sqlloader 创建一个日志文件,显示在服务器上创建的导入结果。
我想向我的用户显示一些信息
读取了多少行? 有多少成功导入? 在 aspx 页面上
我该怎么做?
I am using SQLloader in ASP.NET appliaction to automate the bulk upload data to oracle db from CSV/EXCEL.
Sqlloader creates a log file that shows the result of import that is created on server.
I want to show some info to my users
How many rows read?
How many successfully imported?
on an aspx page
How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建外部表来读取日志文件。这样做的好处是可以在 SQL 查询中使用外部表。
首先,您需要创建一个目录对象来标识操作系统目录路径。这需要由具有 CREATE ANY DIRECTORY 权限的用户(可能是 DBA 帐户)来完成......
接下来我们创建表。请注意位置子句中日志文件的占位符名称...
现在到操作系统进行导入...
该目录应该与您之前使用的目录相同。回到SQL。首先,我们将外部表指向我们之前使用的日志文件,然后从中查询...
格式化输出很容易,特别是如果您有 10g 或更高版本,因此可以使用 Regex 函数。
You can create an external table to read the log files. The virtue of this is that external tables can be used in SQL queries.
Firstly you need to create a directory object to identify the OS directory path. This needs to be done by a user with the CREATE ANY DIRECTORY privilege (probably a DBA account)....
Next we create the table. Note the placeholder name for the logfile in the location clause....
Now out to the OS to do an import ...
This directory should be the same diectory you used before. Back into SQL. First we point the external table at the log file we used earlier and then query from it ...
Formatting the output is easy, especially if you have 10g or higher, and so can use Regex functions.