Viewing 15 posts - 16 through 30 (of 43 total)
See link below about adding articles and the 'allow immediate sync' property
http://deepakrangarajan.blogspot.com/2009/01/sql-2005-transaction-replication-adding.html
John.
February 18, 2011 at 12:49 pm
See
http://msdn.microsoft.com/en-us/library/ms147311.aspx
but read this article first
http://msdn.microsoft.com/en-us/library/ms152560.aspx
John.
February 18, 2011 at 12:23 pm
Have you tried dropping the article for the table that you are doing the deletes in, doing the deletes and then adding the article back to the publication. This...
February 18, 2011 at 12:02 pm
I agree with Ten Centuries on 'keep it simple'. Before I start this kind of operation, I have a backup of either the database or the table that I...
February 18, 2011 at 6:44 am
Exactly Gail,
But you never know if you are missing something:-)
February 16, 2011 at 5:39 am
Have you tried to create a new backup job with the databases and backup folders with a cleanup task?
I have the same problem on some of my servers, but I...
February 11, 2011 at 8:15 am
I would say that Central Management Server is the best for me. I can right click on my central management server and choose new query. Once a new...
December 17, 2010 at 11:46 am
We use snapshots for one of our reporting databases. All processing is done by 7:00 AM when the old snapshot is dropped and the new snapshot is created. The...
October 22, 2010 at 6:48 am
First of all let me say that I enjoy my work and at times consider it one of those "and you mean that they will pay me to do that...
October 4, 2010 at 1:00 pm
Your backup command does not look correct. Try
backup database pubs to disk='e:\pubs.bak'
In your log files job adjust the schedule to stop before your backup begins and start again...
September 14, 2010 at 6:14 am
I have always looked at my job security as to what skills and knowledge I have to sell. Attitude plays a large part in the job security also. ...
August 20, 2010 at 5:52 am
I have also used Jeff's code as a jumping off point to do date tally tables. Julian date conversions were what started me down this road. I usually...
August 2, 2010 at 11:55 am
select cast(cast(getdate() as varchar(12)) as datetime)
gives
2010-03-22 00:00:00.000
John.
March 22, 2010 at 6:47 am
If nothing else, you might want to start counting the records in the database to see if the database is really growing or not, and if so by how much.
create...
March 22, 2010 at 6:32 am
Here's how I do it with a sp. The path can be local or remote. Here days = 3, all "bak" files in the directory older that 3 days...
March 18, 2010 at 6:59 am
Viewing 15 posts - 16 through 30 (of 43 total)