Viewing 15 posts - 136 through 150 (of 1,098 total)
You can also use:
sp_helpreplicationdboption 'dbname'
May 7, 2004 at 6:39 am
I think that Scan Density shows the true fragmentation value. So you should only be aware of that value. The higher the best.
May 7, 2004 at 6:30 am
Are all the subscribers, publishers and distributor of your replication schema with the same service Pack?
Check in the SP3 documentation (in microsoft) for the correct order to apply service packs.
May 6, 2004 at 7:31 am
You can try running the distribution agent job at the subscriber. With pull subscription, the agent actually runs at the subscriber.
EM in distributor (Replication Monitor) isn't 100% accurate. But running...
May 6, 2004 at 7:27 am
They won't be removed from the subscriber because it doesn't wok like that. The filter is to specify wich transactions at the publisher are sent to the subscriber. This transactions...
May 6, 2004 at 7:22 am
Maybe you cvan do smothing like this:
DECLARE @JobID AS UNIQUEIDENTIFIER
SELECT @JobID = job_id
FROM distribution.dbo.MSSnapshot_Agents
WHERE Publication = 'PublicationNameHere'
EXEC msdb.dbo.sp_Start_job @job_id = @JobID
May 4, 2004 at 12:24 pm
Check this script
http://www.sqlservercentral.com/scripts/contributions/1122.asp
May 4, 2004 at 12:11 pm
Ih that way I think you can.
But it will be difficult to set up a read only server with replication.
Everytime the replication is done, you will have to pub your...
May 3, 2004 at 6:52 am
You can use transaction replication with update subscribers (inmediate or queue).
Or also transactional replication in both servers (with both would be publishers and subscribers)
Or only merge replication.
By modifying replication...
April 30, 2004 at 3:25 pm
Try executing the xp with named parameters like this:
EXEC master.dbo.xp_sendmail @recipients = 'myid@domain.com' , @subject = 'subject'
April 30, 2004 at 3:22 pm
Run sp_Helpfile to really know where the data filers are.
Be sure that the disk has enough space for the data files.
Try expanding manually the file/s of the primary file group.
April 30, 2004 at 3:21 pm
It will depend most of wich permissions are assigned to the public role.
You should check Brian's article
http://www.sqlservercentral.com/articles/articlesexternal.asp?articleid=1258
April 30, 2004 at 3:12 pm
Could work. By using replication you can make sure that both databases are equal at some point in time.
Before migrating, you can set dba1 in single user, to stop transactions,...
April 30, 2004 at 3:07 pm
Viewing 15 posts - 136 through 150 (of 1,098 total)