1)
Is there any way to update the data in this table(MSysQueri es). I have a bunch of passthrough queries where I need to update the ODBC connection.Inst ead of updating the properties in each query individually, is there any way to do an update to that data in the MSysQueries table.
I need to update NAME1 Column
2)
From above sql i will get list of queries in my MDB file
Assume Output of above query is
abc
xyz
lmn
I have to put the above values 1 by one in below ??
Is there any way to update the data in this table(MSysQueri es). I have a bunch of passthrough queries where I need to update the ODBC connection.Inst ead of updating the properties in each query individually, is there any way to do an update to that data in the MSysQueries table.
I need to update NAME1 Column
Code:
SELECT MSysQueries.Name1 FROM MSysQueries WHERE (((MSysQueries.Attribute)=1));
Code:
SELECT MSysObjects.Name FROM MSysObjects WHERE (((MSysObjects.Type)=5));
Assume Output of above query is
abc
xyz
lmn
I have to put the above values 1 by one in below ??
Code:
DoCmd.OutputTo acOutputQuery, [B]"??"[/B],acFormatXLS, [B]"D:\??"[/B] [U][B]Example[/B][/U] DoCmd.OutputTo acOutputQuery, [B]"abc"[/B],acFormatXLS, [B]"D:\abc"[/B] DoCmd.OutputTo acOutputQuery, [B]"xyz"[/B],acFormatXLS, [B]"D:\xyz"[/B]
Comment