Hi, I'm working on a project where we are migrating an ms access backend db to Oracle. one of the things I need to do efficiently is delete an oracle table. when using the delete function, it takes forever. I understand that there is a way to "truncate" the table which is much faster, but I have yet figured out how to do it.
I have tried the below, but it didn't work:
'Dim dbs1 As Database
Set dbs1 = CurrentDb
dbs1.Execute "Truncate Table " & NVR0_offline
any help is appreciated
I have tried the below, but it didn't work:
'Dim dbs1 As Database
Set dbs1 = CurrentDb
dbs1.Execute "Truncate Table " & NVR0_offline
any help is appreciated