OracleCommand command, ExecuteNonQuery issue

前端 未结 4 1086
难免孤独
难免孤独 2021-01-20 03:28

I have to clear certain tables in the oracle database however when I\'m having issues with running the following code

public static void ClearDataTables(ILis         


        
4条回答
  •  有刺的猬
    2021-01-20 04:02

    Is there a lot of data in that table? This would explain, why it takes so long to delete the data.
    Anyway, I suggest to use TRUNC for clearing tables.

提交回复
热议问题