Viewing 15 posts - 1 through 15 (of 16 total)
Well, ya learn something new every day.
I hammered away at this and realized:
If I created a primary key in the table, then Access allowed me to add records. Without...
May 8, 2009 at 4:07 pm
The Wrox book had a pretty good introductory chapter on replication:
Beginning SQL Server 2000 Programming
by Robin Dewson
September 2, 2008 at 4:04 pm
Oh. Now I see. So the only way to economize is to make sure that every data change is the final change we want, not just an intermediate...
July 8, 2008 at 3:15 pm
Aha! I didn't realize that indexes and assignment of primary keys would not change along with table names. This is, uh, somewhat counter-intuitive.
I took the path of least...
May 27, 2008 at 7:14 pm
Since we're having a little fun with our favorite quotes, here's another one to add to the collection.
Woody Allen: Nothing worth knowing can be understood with the human mind.
🙂
February 22, 2008 at 6:38 am
Well, I did actually read all of "War And Peace" once.;)
But, no, I'm not gonna want to read all 180K records. So let me modifiy my question:
Would SELECT [field1],...
November 24, 2007 at 1:29 pm
If a SELECT * gives you a full table scan, would a SELECT [field1], [field2] FROM MyTable be significantly faster if all you really needed was the first 2 fields?...
November 24, 2007 at 12:50 pm
Thank you! That worked perfectly!:)
October 16, 2007 at 12:02 pm
Here's the basics. This will loop thru all the records in a table and display them one at a time.
<%SET Connect=Server.CreateObject("ADODB.CONNECTION")
October 14, 2006 at 4:53 pm
What nuwins suggested worked!
I had a nasty red X in replication monitor for a publication that I had long ago deleted. So I just made a quick publication with the...
June 3, 2006 at 9:44 am
Thanks for responding!
The new subscriber is on SP4.
May 8, 2006 at 3:09 pm
Ooops.....I guess I should have read your previous reply more closely. I see you do clearly say that both subscriber and publisher must be in sync before replication begins.
So that...
January 25, 2006 at 8:45 am
Good question! *Does* the publisher have to be in sync with the subscriber before replication can begin?
In my case, I have a publisher and subscriber who are (very) out of...
January 25, 2006 at 8:24 am
This leads to 2 questions, then:
1) If I start out with both tables empty, engage the subscription, and *then* add the record to the subscriber, the record propagates to the...
January 24, 2006 at 5:00 pm
OK, I'm the first to admit I'm still new at this.
I consulted BOL but got lost in there. Could you provide an example of the above-mentioned code please? Thanks.
December 13, 2005 at 12:35 pm
Viewing 15 posts - 1 through 15 (of 16 total)