zoukankan      html  css  js  c++  java
  • How to not display “Commit point reached

     

    You can use the keyword silent, which is available in the options clause. You can set the following things to be silent:

    • HEADER - Suppresses the SQL*Loader header messages that normally appear on the screen. Header messages still appear in the log file.
    • FEEDBACK - Suppresses the "commit point reached" feedback messages that normally appear on the screen.
    • ERRORS - Suppresses the data error messages in the log file that occur when a record generates an Oracle error that causes it to be
      written to the bad file. A count of rejected records still appears.
    • DISCARDS - Suppresses the messages in the log file for each record written to the discard file.
    • PARTITIONS - Disables writing the per-partition statistics to the log file during a direct load of a partitioned table.
    • ALL - Implements all of the suppression values: HEADER, FEEDBACK, ERRORS, DISCARDS, and PARTITIONS.

    You would want to suppress feedback.

    You can either use on the command line, for instance:

    sqlldr schema/pw@db silent=(feedback, header)

    On in the options clause of the control file, for instance:

    options (bindsize=100000, silent=(feedback, errors) )
  • 相关阅读:
    HDU 3949 XOR
    [JXOI2018]游戏
    树状数组 Binary Indexed Tree/Fenwick Tree
    Java 多线程编程
    概率算法
    最长回文子串 Manacher算法
    动态规划-最长上升子序列 LIS
    流水作业调度
    多机调度问题
    A*搜索算法
  • 原文地址:https://www.cnblogs.com/kakaisgood/p/9456286.html
Copyright © 2011-2022 走看看