S
Scott
I want to upsize my Access DB which is already split as FE BE to SQL Server
2000; in upsizing you have 2 options.
1. Upsize just tables, and then all data processing is done locally on
Access Jet DB Engine.
2. Upsize Tables and queries, then you have to create an ADP file instead of
an MDB, the benefit of this option is that the data processing is done on
SQL Server which is much faster than Jet.
I have in my DB a lot of Queries that uses me own defined function as the
criteria, the function is as follows:
*************************************
Public Function Client() As Long
Client =
CurrentDb.Containers!Databases.Documents!UserDefined.Properties("Client")
End Function
************************************
That refers to the property I have added to the Database Properties, and in
my Queries I set the criteria of the client field to:
Client()
Now how do I upsize these Queries to SQL Server. ?
Thanks in advance,
Scott
2000; in upsizing you have 2 options.
1. Upsize just tables, and then all data processing is done locally on
Access Jet DB Engine.
2. Upsize Tables and queries, then you have to create an ADP file instead of
an MDB, the benefit of this option is that the data processing is done on
SQL Server which is much faster than Jet.
I have in my DB a lot of Queries that uses me own defined function as the
criteria, the function is as follows:
*************************************
Public Function Client() As Long
Client =
CurrentDb.Containers!Databases.Documents!UserDefined.Properties("Client")
End Function
************************************
That refers to the property I have added to the Database Properties, and in
my Queries I set the criteria of the client field to:
Client()
Now how do I upsize these Queries to SQL Server. ?
Thanks in advance,
Scott