Viewing 15 posts - 301 through 315 (of 1,154 total)
curious_sqldba (3/7/2014)
March 7, 2014 at 3:21 pm
Yeah, Got it. Also could you check the Lock Mode (Update or Exclusive) and the type of lock acquired (granularity) ( RID,Page or Table) and the Isolation Level ?
--
SQLBuddy
March 7, 2014 at 2:18 pm
Did you check what was the Lock Mode and the type of lock acquired (granularity) ?
--
SQLBuddy
March 7, 2014 at 1:38 pm
Use this script and the results will match ..
SELECT
db_name() AS DbName,
SCHEMA_NAME(B.schema_id) AS SchemaName
, B.name AS TableName
, C.name AS IndexName
, A.INDEX_DEPTH as Index_depth
, C.fill_factor AS IndexFillFactor
, D.rows...
March 7, 2014 at 1:17 pm
Perry Whittle (3/7/2014)
I'm assuming the OP is referring toDBCC DROPCLEANBUFFERS
Yeah, just wanted to confirm from his end ..
--
SQLBuddy
March 7, 2014 at 12:48 pm
muthyala_51 (3/7/2014)
March 7, 2014 at 12:46 pm
muthyala_51 (3/7/2014)
March 7, 2014 at 12:26 pm
If you are heavily using SQL Server features that are discontinued in SQL 2012 and if it involves huge effort to replace those functionalities then that would be a business...
March 7, 2014 at 11:51 am
You are welcome pharmkittie 🙂
--
SQLBuddy
March 7, 2014 at 11:16 am
Koen Verbeeck (3/7/2014)
* store the current file name in a variable (you can configure this in the for each loop)
* inspect the file name with a script task....
March 7, 2014 at 11:14 am
Physical Memory is the RAM that you add to the Server. Yeah Virtual Memory is the Paging file. It's an area on the hard disk that Windows treats as if...
March 7, 2014 at 11:05 am
Looks good and nice implementation. But still we are starting the jobs in a sequential order not parallelly. This approach works as there is very minute lag between the...
March 7, 2014 at 9:19 am
pharmkittie (3/7/2014)
Thanks SQLBuddy123.
CTP is Community Technology Preview. You can install it but it's not the final version and things may be modified before releasing the final version ( RTM). Since...
March 7, 2014 at 8:58 am
But, updating every statistic in the system doesn't identify the bottleneck. I mean, I wouldn't be at all shocked if they don't manually update statistics, few people do and they...
March 6, 2014 at 9:51 pm
The quick and dirty way to find the bottleneck is sit down and pulse sys.sysprocesses filtered on the database while watching PerfMon and Task Manager - Performance and watch for...
March 6, 2014 at 9:20 pm
Viewing 15 posts - 301 through 315 (of 1,154 total)