G
Guest
DoCmd.RunSQL SELECT mat_tbl1.* INTO mat_tbl1
IN 'C:\test\test.mdb' FROM mat_tbl1
The code above copies the mat_tbl1 table into the
C:\test\test.mdb.
It didn't work because C:\test\test.mdb is password
protected.
The password is 1245c
How can I write this same SQL statement to copy the table
into the password protected database C:\test\test.mdb?
Thank you
IN 'C:\test\test.mdb' FROM mat_tbl1
The code above copies the mat_tbl1 table into the
C:\test\test.mdb.
It didn't work because C:\test\test.mdb is password
protected.
The password is 1245c
How can I write this same SQL statement to copy the table
into the password protected database C:\test\test.mdb?
Thank you