Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to replace a query from one DB to another

Status
Not open for further replies.

ammodog6942

Programmer
Feb 5, 2008
7
US
Can anyone help me, I would like to open a db that has the code or macro to run on start up. I would like to have this code delete a query on C:\Program Files\database1\database.mdb and insert a query from C:\Program Files\database2\database.mdb into C:\Program Files\database1\database.mdb. In essense replace the query. Any help is appreciated.
 
Are you changing the query name or just the SQL property of the query? If you are only changing the SQL, you can use some DAO code to create 2 database objects and then set the SQL property of the target query.

This function will change the SQL property of a query in another MDB file:
Code:
Function ChangeSQLOtherMDB(strMDBOther As String, strQuery As String, strSQL As String) As String
    Dim dbOther As DAO.Database
    Dim qd As DAO.QueryDef
   On Error GoTo ChangeSQLOtherMDB_Error

    Set dbOther = OpenDatabase(strMDBOther)
    Set qd = dbOther.QueryDefs(strQuery)
    ChangeSQLOtherMDB = qd.SQL
    qd.SQL = strSQL
    Set qd = Nothing
    Set dbOther = Nothing

   On Error GoTo 0
   Exit Function

ChangeSQLOtherMDB_Error:

    MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure ChangeSQLOtherMDB of Module SystemUtilities"
End Function

Duane
Hook'D on Access
MS Access MVP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top