|
@@ -5,7 +5,7 @@ import sys
|
|
|
from datetime import datetime
|
|
|
|
|
|
import pandas as pd
|
|
|
-from pyodbc import ProgrammingError
|
|
|
+from pyodbc import Error, ProgrammingError
|
|
|
|
|
|
sys.path.insert(0, "C:\\Projekte\\tools")
|
|
|
from database.db_create import get_table_config # noqa:E402
|
|
@@ -166,6 +166,10 @@ def resolve_mismatch(source_table: SourceTable2, dest_table: DestTable, cfg: DbC
|
|
|
print(res.rowcount)
|
|
|
res.commit()
|
|
|
|
|
|
+ if len(ts_lists[1]) > 100_000:
|
|
|
+ print(f"Tabellen-Import fuer {source_table.table_client} abgebrochen: zu viele Zeilen!")
|
|
|
+ return
|
|
|
+
|
|
|
res = cfg.dest_inspect.cursor.execute(f"TRUNCATE TABLE {dest_table.temp_table_name}")
|
|
|
res.commit()
|
|
|
print(res.rowcount)
|
|
@@ -183,16 +187,17 @@ def resolve_mismatch(source_table: SourceTable2, dest_table: DestTable, cfg: DbC
|
|
|
print(len(insert_rows))
|
|
|
if len(insert_rows) == 0:
|
|
|
break
|
|
|
- insert_query = f"INSERT INTO {dest_table.temp_table_name} VALUES \n" + ", \n".join(insert_rows)
|
|
|
+ insert_query = f"INSERT INTO {dest_table.temp_table_name} with (TABLOCK) VALUES \n" + ", \n".join(insert_rows)
|
|
|
|
|
|
try:
|
|
|
res2 = cfg.dest_inspect.cursor.execute(insert_query)
|
|
|
print(res2.rowcount)
|
|
|
res2.commit()
|
|
|
- except Exception:
|
|
|
+ except Error as e:
|
|
|
with open(f"{cfg.stage_dir}\\diff\\{source_table.table_client}_insert_{i}.sql", "w") as fwh:
|
|
|
fwh.write(insert_query)
|
|
|
print(f"Tabellen-Import fuer {source_table.table_client} abgebrochen")
|
|
|
+ print(e)
|
|
|
|
|
|
res = cfg.dest_inspect.cursor.execute(dest_table.delete_query)
|
|
|
print(res.rowcount)
|