backup up tables

  • Thread starter Thread starter mcnewsxp
  • Start date Start date
M

mcnewsxp

anybody have a nice way of backing up tables automatically.
some linked and some not - all access jet.
tia,
mcnewsxp.
 
found what i needed:


sSQL = "SELECT * INTO [" & DestinationFile & "].[" & tbl.name & "] "
sSQL = sSQL & " FROM [" & txtSource.Value & "\" & "EVdb_New.mdb].[" &
tbl.name & "]"
mconJet.Execute sSQL, , adExecuteNoRecords
 
Back
Top