Viewing 15 posts - 196 through 210 (of 233 total)
Until and unless the transaction logs are not truncated, it will work fine because log reader agent works by monitoring the transaction log of each database configured for transactional replication...
April 19, 2013 at 1:23 pm
very good information :-
http://www.brentozar.com/archive/2012/08/sql-server-dba-interview-qa-part-answers/
April 19, 2013 at 9:40 am
We are running SQL Server 2008 R2 and I am putting my case together to move to SQL Servre 2012 in from of management. We are 24*7 SaaS company and...
April 19, 2013 at 9:01 am
Are you trying to restore on a top of database which already exists?
If yes then use:-
Alter database <DBNAme> set offline with rollback immediate
go
alter database <DBNAme>set online
go
restore command
April 17, 2013 at 9:55 am
Covert them into datetime & compare.
April 17, 2013 at 8:55 am
Look into Distributor's sql agent jobs.
April 17, 2013 at 8:39 am
What kind of answer it is? He is asking for permission required to create Transactional replication.
Only members of the sysadmin fixed server role can set this up from end...
April 16, 2013 at 2:56 pm
Use Activity monitor to see what is going on when you see CPU jumped to 96%.
Also I would recommend using Adam Machanic sp_whoisactive, to see what is going on.
You can...
April 16, 2013 at 1:59 pm
There is very excellent blog post by Kendra Little @brentozar.com
See if that could help.
http://www.brentozar.com/archive/2012/03/how-decide-if-should-use-table-partitioning/
April 16, 2013 at 1:33 pm
SELECT sysjobhistory.server,sysjobs.name AS job_name,
CASE sysjobhistory.run_status
WHEN 0 THEN 'Failed'
...
April 16, 2013 at 11:48 am
If you post table script and script to insert some sample data that will be very helpful.
April 16, 2013 at 11:41 am
I am using office 2010 and it works fine for me.
April 16, 2013 at 11:31 am
Below are all the steps you have to do.
1)
EXEC sp_changepublication
@publication = 'PublicationName',
@property = N'allow_anonymous',
@value = 'false'
GO
EXEC sp_changepublication
@publication = 'PublicationName',
@property = N'immediate_sync',
@value = 'false'
GO
2) Add table to publication :-
exec dbo.sp_addarticle...
April 16, 2013 at 9:57 am
Try using sp_msforeachdb.
April 16, 2013 at 9:36 am
Could you please post the exact error which you are getting?
April 16, 2013 at 9:16 am
Viewing 15 posts - 196 through 210 (of 233 total)