Viewing 15 posts - 196 through 210 (of 230 total)
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
Brent Ozar have this very useful and perhaps the best material online for virtualizaing SQL Server.
April 12, 2013 at 2:28 pm
Could you please post the table structure and attach a sample file?
April 12, 2013 at 2:24 pm
You can initialize from backup. That is the best way to do replication for bigger databases because it eliminates all bcp generation hence locking/ blocking.
April 12, 2013 at 2:07 pm
Viewing 15 posts - 196 through 210 (of 230 total)