Posts tagged Access
MS Access – Remove “dbo_” prefix from imported tables
03 years ago
in Access
The procedure below, can be used to remove the “dbo_” prefix from all imported tables within a Microsoft Access Database.
Public Sub Remove_DBO_Prefix()
Dim obj As AccessObject
Dim dbs As Object
Set dbs = Application.CurrentData
'Search for open AccessObject objects in [...]