Viewing 15 posts - 31 through 45 (of 231 total)
SQL!$@w$0ME (9/3/2015)
Thanks Grant. But the memory usage has exceeded 24 GB over the max memory set for sql which is 100GB.
Please post the result of the following script.
select * ...
September 3, 2015 at 7:06 am
First try to find the breakup for all the usage. even large number of smaller processes can cause a memory leak. You just need to note the breakup of...
September 3, 2015 at 7:02 am
Can you check using this script
select * FROM sys.dm_os_performance_counters
where counter_name = 'Total Server Memory (KB)'
Checking via task manager is not accurate.
As said earlier, u need to find how much...
September 3, 2015 at 6:59 am
Have u checked perfrmon or system monitor to find how much memory is used by all applications..You may use "Rammap" utility https://technet.microsoft.com/en-us/library/ff700229.aspx to find which processes are using the...
September 2, 2015 at 9:25 pm
The idea struck me when I wanted to read the blogs /articles , stairway series via mobile while I was travelling. Doesn't that sound appealing?;-)
Forums are best suited...
September 2, 2015 at 9:57 am
in a sense true, if you want to logically segregate your tables into files or groups of files.
September 1, 2015 at 10:31 pm
Filegroup is in some sense closest to Oracle table space. you can create a file group, assign the space. There is no direct means of assigning permission to just the...
September 1, 2015 at 9:39 pm
Jack Corbett (5/5/2015)
select convert(varchar(1000),path) as path from sys.traces where id = 1
To
select convert(varchar(1000),path) as path from...
May 5, 2015 at 9:39 pm
Guess I am that "someone" whose auditing requirements surprised you 😀
one of the needs for auditing to be async is, in most of the shops, the infrastructure and...
May 4, 2015 at 11:23 pm
Whether in synchronous or asynconrous commit node , if the Availability Replica is a part of Failover Cluster, Automatic failovers are not supported.
Refer http://msdn.microsoft.com/en-us/library/hh923056.aspx - Page 12 -...
December 12, 2013 at 5:23 am
Always on automatic failover from failover cluster instance is not supported.
December 12, 2013 at 4:00 am
Yes. Replication was working before but with intermittent error messages. Thanks anyways for your comment.
October 9, 2012 at 5:24 am
Thanks. Can you provide some possible reasons - roughly?
I noticed that Network Access have not been enabled for Clustered MSDTC under component services. Is that a possible reason?
October 9, 2012 at 5:05 am
Viewing 15 posts - 31 through 45 (of 231 total)