作为迁移任务的一部分,我尝试使用.NET应用程序的数组绑定(使用ODP.NET)将大量数据(> 30M)插入到1000/10000行的一个表中);有用。我认为如果直接使用路径加载提示/*+ APPEND_VALUES */
可能会更快。但每当我尝试这样做时,我都会遇到异常:ORA-38910:BATCH ERROR MODE is not supported for this operation
。在跟踪文件(由tkprof收集,没有sys)中,我找到了这些:
...
********************************************************************************
insert /*+ APPEND_VALUES */ into MYTABLE(COL1, COL2)
values (:COL1, :COL2)
call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 2 0.00 0.00 0 0 0 0
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 3 0.00 0.00 0 0 0 0
Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: 122
Rows Row Source Operation
------- ---------------------------------------------------
0 LOAD AS SELECT (cr=0 pr=0 pw=0 time=0 us)
0 BULK BINDS GET (cr=0 pr=0 pw=0 time=0 us)
Elapsed times include waiting on following events:
Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2 0.00 0.00
SQL*Net message from client 2 3.14 3.20
SQL*Net break/reset to client 2 0.00 0.00
********************************************************************************
declare
m_stmt varchar2(512);
begin
m_stmt:='delete from sdo_geor_ddl__table$$';
EXECUTE IMMEDIATE m_stmt;
EXCEPTION
WHEN OTHERS THEN
NULL;
end;
call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 1
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 0.00 0.00 0 0 0 1
Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: 57 (recursive depth: 1)
********************************************************************************
SQL ID: 3972rvxu3knn3
Plan Hash: 3007952250
delete from sdo_geor_ddl__table$$
call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 0.00 0.00 0 0 0 0
Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: 57 (recursive depth: 2)
Rows Row Source Operation
------- ---------------------------------------------------
0 DELETE SDO_GEOR_DDL__TABLE$$ (cr=0 pr=0 pw=0 time=0 us)
0 TABLE ACCESS FULL SDO_GEOR_DDL__TABLE$$ (cr=0 pr=0 pw=0 time=0 us cost=2 size=0 card=1)
... summary from here
我正在使用的代码:
private void TestArrayBindWithHint()
{
var data = new List<MyTableData>();
// ...
// data fetching + populating code here....
// ...
// Insert
using(var connection = GetConnection())
{
var insertQuery = "insert /*+ APPEND_VALUES */ into MYTABLE(COL1, COL2) values (:COL1, :COL2)";
using (var command = connection.CreateCommand())
{
command.CommandText = insertQuery;
command.CommandType = CommandType.Text;
command.BindByName = true;
command.ArrayBindCount = data.Count;
command.Parameters.Add(":COL1", OracleDbType.Int64, data.Select(d => d.COL1).ToArray(), ParameterDirection.Input);
command.Parameters.Add(":COL2", OracleDbType.Byte, data.Select(d => d.COL2).ToArray(), ParameterDirection.Input);
command.ExecuteNonQuery();
}
}
}
private ManagedDataAccess.Client.OracleConnection GetConnection()
{
const string identifier = "MYAPP";
var connection = new ManagedDataAccess.Client.OracleConnection(ConfigurationManager.AppSettings["connectionString"]);
connection.Open();
connection.ClientId = identifier;
ExecuteNonQuery(connection, string.Format(@"ALTER SESSION SET TRACEFILE_IDENTIFIER = ""{0}""", identifier));
return connection;
}
所以我的问题:
delete from sdo_geor_ddl__table$$
DDL是什么?为什么要生成?答案 0 :(得分:2)
/*+ APPEND_VALUES */
提示Oracle 11.2中引入了一个非常新的提示
通常,当您执行批量操作时,请使用FORALL ... SAVE EXCEPTIONS
语句,请参阅FORALL。使用可选SAVE EXCEPTIONS
可以访问SQL%BULK_EXCEPTIONS
属性,您可以在其中检索单个记录的异常。
当您使用/*+ APPEND_VALUES */
提示时,SQL%BULK_EXCEPTIONS
属性不可用,即您无法使用SAVE EXCEPTIONS
。我个人认为这是Oracle中的一个错误,也许它将在未来的版本中得到纠正。
显然,ODP.NET ExecuteNonQuery()
方法始终在&#34; Batch Error Mode&#34;内部运行,请参阅Execution Modes of OCIStmtExecute()。这会导致错误。我没有看到任何关闭&#34; Batch Error Mode&#34;所以你必须在没有/*+ APPEND_VALUES */
提示的情况下运行你的插入。
答案 1 :(得分:1)
但每当我尝试这样做时,我都会遇到异常:ORA-38910:此操作不支持BATCH ERROR MODE。
38910,00000,&#34;此操作不支持BATCH ERROR模式&#34;
原因:为此操作指定了BATCH ERROR模式。
操作:不要在此操作中使用BATCH ERROR模式。
删除save exceptions子句,因为insert语句不会抛出任何异常。
详细信息: 11g升级后,当Forall查询附加提示时收到Ora-38910(文档ID 759929.1)
在数组绑定中使用直接路径加载提示是错误的吗?
不,它比传统的插入更好(当然有副作用),因为它绕过了缓冲区缓存。它对于插入大量行特别有用。
跟踪中
sdo_geor_ddl__table$$
DDL的删除是什么?为什么要生成它?
在SQL跟踪期间,我们不仅获取了我们使用的查询的跟踪结果,还获得了由查询引起的递归SQL的结果。
这是全局临时表。由Oracle Spatial创建,它已安装DDL
触发器,从而导致此操作。我们选择DBCA
上的通用数据库创建。实际上我们应该使用自定义数据库创建,以便我们始终可以选择所需的组件。