Jobs: fix typo, use truncate instead of delete

This commit is contained in:
Jonathan Jenne 2022-11-25 11:04:36 +01:00
parent dbbacd2623
commit e3c500938b

View File

@ -120,7 +120,7 @@ Public Class GraphQLJob
' Clear Table before inserting ' Clear Table before inserting
If pQuery.ClearBeforeFill = True Then If pQuery.ClearBeforeFill = True Then
If DeleteWithQueryName(pQuery) Then If DeleteWithQueryName(pQuery) = False Then
Throw New ApplicationException($"Error while clearing table before fill for Query [{pQuery.Name}]") Throw New ApplicationException($"Error while clearing table before fill for Query [{pQuery.Name}]")
End If End If
End If End If
@ -198,7 +198,7 @@ Public Class GraphQLJob
End Function End Function
Private Function DeleteWithQueryName(pQuery) Private Function DeleteWithQueryName(pQuery)
Dim oDeleteSQL = $"DELETE FROM {pQuery.DestinationTable}" Dim oDeleteSQL = $"TRUNCATE TABLE {pQuery.DestinationTable}"
Return _MSSQL.ExecuteNonQuery(oDeleteSQL) Return _MSSQL.ExecuteNonQuery(oDeleteSQL)
End Function End Function