Viewing 15 posts - 1,501 through 1,515 (of 1,654 total)
Assuming that your accounts have db_owner rights in your database, you could give one account access to all your databases. When use that account to backup your databases.
Hope this helps
M
September 12, 2005 at 12:14 pm
Thanks for your reply Andy,
I tried that but after stopping the session it wouldn't start a new session anymore. Also resetting the logfile had no effect.
I finally solved it by...
June 14, 2005 at 12:49 am
SELECT col1,col2 from table1 (index=0) -- Using no index
where col1 = ....
For mor info see BOL on Index Hints
May 4, 2005 at 1:37 am
I've seen this kind of error before. It can be caused by several reasons, but best thing to fix it is remove replication including the distributor role first and then...
May 4, 2005 at 1:30 am
Are they using SET IMPLICIT_TRANSACTION ON ??? This could explain that so much has been rolled back.
See BOL: Transactions that are automatically opened as the result of this setting...
April 11, 2005 at 8:16 am
Since when is it possible to post comment on QOD's for the following day ????
March 3, 2005 at 1:36 am
Are you sure theproblem appears when you synchronize the subscription ?
Sounds to me more like the second subscritpion is trying to initialize.
By default on initilization the tables are...
March 2, 2005 at 5:37 am
Sorry, I don't have a solution but I can confirm that this should not happen I ran merge replication over ISDN line myself with much more updates and I've never...
February 8, 2005 at 2:16 am
Why don't you just change the replication triggers on s2 to only fire for inserts and updates, but not for deletes. This way a delete won't be recorded as a...
January 27, 2005 at 7:51 am
How large is your DB. What kind of connection lies between the two servers ?
With larger tables over slower connections very often the reason for this message is a timeout....
January 4, 2005 at 8:21 am
As far as I know there are 2 possibilities. Either join the MS Beta tester group at http://windowsbeta.microsoft.com or if you have a MSDN subscription you...
November 8, 2004 at 7:17 am
The resource kit for SQL2005 Beta2 contains a tool called databasepopulator. I think it will also work for SQL2K. Another option, though it's not free would be Quest Software (http://www.quest.com),...
November 8, 2004 at 7:12 am
You can add columns without removing the replication by using the sp_repladdcolum stored procedure. Check BOL for the full syntax.
If you need to stop replication anyhow you have the option...
November 7, 2004 at 5:54 am
I agree with Peter that most 3rd party tools are faster and offer extra features. Also most of them create smaller backups than zipping a "standard" backup manually, though this...
November 5, 2004 at 11:50 am
Hi Dave
I'm not totally sure but you need at least db_ddladmin, db_datareader and db_datawriter. The last two are obvious and ddladmin is needed during initialization because the tables on the subscriber...
November 5, 2004 at 11:43 am
Viewing 15 posts - 1,501 through 1,515 (of 1,654 total)