Viewing 15 posts - 31 through 45 (of 233 total)
I would suggest you to go through the below mentioned article. This is is the one of the best article to troubleshoot the replication performance issues.
http://blogs.msdn.com/b/chrissk/archive/2009/05/25/transactional-replication-conversations.aspx
December 21, 2013 at 4:27 pm
Some more info if it helps:-
SQL Server 2008 R2 SP2 standard edition.
Database is Synchronous mirroring on the cloud.
December 19, 2013 at 9:36 am
Does this sql shows your db has been backed up?
SELECT a.Name AS DatabaseName,
COALESCE(CONVERT(VARCHAR(12), MAX(b.backup_finish_date), 101),'-') AS LastBackUpTime
FROM sys.sysdatabases a
LEFT OUTER JOIN msdb.dbo.backupset b ON b.database_name = a.name
where a.Name...
December 18, 2013 at 10:45 am
My mistake.
Get database id from from sys.sysdatabases and pass that as first parameter.
December 17, 2013 at 8:06 am
Try this.
SELECT
B.name AS TableName
, C.name AS IndexName
, C.fill_factor AS IndexFillFactor
, D.rows AS RowsCount
, A.avg_fragmentation_in_percent
, A.page_count
FROM sys.dm_db_index_physical_stats(null,NULL,NULL,NULL,NULL) A
INNER JOIN sys.objects B
ON A.object_id = B.object_id
INNER JOIN sys.indexes C
ON B.object_id = C.object_id AND...
December 17, 2013 at 7:41 am
Read through this below article and decide for your self.
http://www.sqlskills.com/blogs/kimberly/plan-cache-and-optimizing-for-adhoc-workloads/
October 31, 2013 at 10:06 am
I think you are seeing the resource ballooning issue.
See if this could help.
http://mssqlwiki.com/2013/03/31/sql-server-and-vmware-ballooning/
October 30, 2013 at 5:07 am
Nevyn,
First of all thank you very much for looking into it.
You got all business rules right.
You have rightly answered all the questions but let me answer them again..
What...
June 15, 2013 at 3:10 pm
Luis,
Here is the new set of data just on one location & sheet with expected results, if that helps.
Insert into [W_O_Schedule] Values
--Nothing from here since No Location Schedule
--SO Nothing
(1,1,'Available','Weekly','2013-06-03...
June 14, 2013 at 11:05 am
Sorry about that. Let me try to explain it more.
Location may be wide open, but resource schedule may be limited or vice- versa. In that case I have to...
June 14, 2013 at 10:45 am
Thank you very much Luis for looking into this.
This is very helpful. Sorry about 30 hours in a day.
I was just testing it and it looks very promising, but is...
June 14, 2013 at 10:11 am
Just putting the code inline.
Create Table Schedule (
Studio int,
PromotionID int,
CameraRoomID int ,
StartTime DateTime,
EndTime DateTime,
ScheduleType int, -- 1 Weekly--2 OneTime
Available int) --1 Available--2- Closed
GO
--Delete from Schedule
Insert into Schedule
Values
(1, 1,...
June 12, 2013 at 8:51 am
June 3, 2013 at 2:58 pm
There is a way to run pull subscription with SQL Server express.
Here it is.
But there may be other reasons for the slowness. try to find out what else is causing...
June 3, 2013 at 2:54 pm
Viewing 15 posts - 31 through 45 (of 233 total)