Viewing 3 posts - 16 through 18 (of 18 total)
Using either methods, the client account must be known on the server side or an existing connection must exist between the two machines, for example connecting to the server in...
October 28, 2004 at 6:00 am
I once implemented such a notification system using a three-tier mechanism. Instead of connecting directly to the database, the client would connect to an intermediary component. The componant would dispatch...
October 26, 2004 at 3:31 am
You can use the DISTINCT keywords like
INSERT INTO _tblDupes ( ....)
SELECT DISTINCT * FROM _A a
WHERE EXISTS (
SELECT NULL FROM _A b
WHERE
b.[fld_1] = a.[fld_1]
AND b.[fld_2] = a.[fld_2]
AND b.[fld_3] = a.[fld_3]
AND...
October 20, 2004 at 1:59 am
Viewing 3 posts - 16 through 18 (of 18 total)