J
juvi
Hello,
I have got database which imports data from csv every night. So all data are
up to date next day when the clients are "downloading" the data to their
local mdb through sql query.
But their are over 100.000 records and this takes a while to download. I
found this in the d.g.:
// SELECT col1, col2, ..., colN, MIN(version) AS version
// FROM (SELECT col1, col2, ..., colN, 'Yesterday' AS version
// FROM YesterdaysVersion
// UNION ALL
// SELECT col1, col2, ..., colN, 'Today' AS version
// FROM YesterdaysVersion)
// GROUP BY col1, col2, ..., colN
// WHERE COUNT(*) = 1
How could I use this to look for changes made in today's version and how can
I tell my client mdbs only to "sync/update" the changed fields/columns?? I
have no idea how I could manage this now and it would be very important for
me as soon as possible - maybe someone can help me
thx
juvi
I have got database which imports data from csv every night. So all data are
up to date next day when the clients are "downloading" the data to their
local mdb through sql query.
But their are over 100.000 records and this takes a while to download. I
found this in the d.g.:
// SELECT col1, col2, ..., colN, MIN(version) AS version
// FROM (SELECT col1, col2, ..., colN, 'Yesterday' AS version
// FROM YesterdaysVersion
// UNION ALL
// SELECT col1, col2, ..., colN, 'Today' AS version
// FROM YesterdaysVersion)
// GROUP BY col1, col2, ..., colN
// WHERE COUNT(*) = 1
How could I use this to look for changes made in today's version and how can
I tell my client mdbs only to "sync/update" the changed fields/columns?? I
have no idea how I could manage this now and it would be very important for
me as soon as possible - maybe someone can help me
thx
juvi