Sign In
Blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
No tags have been created or used yet.
Archive
Archives
January 2011
(1)
June 2010
(18)
May 2010
(13)
April 2010
(21)
March 2010
(16)
April, 2010
MSDN Blogs
>
Blog
>
April, 2010
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Blog
Performance Analysis of Logs (PAL) Tool: Part 1
Posted
over 2 years ago
by
Aranu
0
Comments
The Performance Analysis of Logs (PAL) tool is a free tool from CodePlex . It parses and analyzes Windows Performance Monitor logs to find performance bottlenecks. The PAL tool can help you find performance bottlenecks in SQL Server running Windchill...
Blog
Reading the SQL Server Error Logs: Part 5
Posted
over 2 years ago
by
Aranu
0
Comments
In the fourth post about the SQL Server error logs, we examined the logging of database startup and recovery entries. In this final post about the error logs, we'll examine the logging of security and network startup entries. Understanding how the SQL...
Blog
Reading the SQL Server Error Logs: Part 4
Posted
over 2 years ago
by
Aranu
0
Comments
In the third post about the SQL Server error logs, we examined the CPU, locking, and memory messages. In this fourth post, we'll examine database startup and recovery. Here's that picture of the error log again for reference: System Databases...
Blog
RAID 1 + 0 and SQL Server I
Posted
over 2 years ago
by
Aranu
0
Comments
In my posts about RAID ( part 1 and part 2 ), I didn't cover RAID 1 + 0 because RAID 1 + 0 isn't a good combination for SQL Server running Windchill. However, we have received many questions about why I didn't cover RAID 1 + 0. So, I'll explain how SQL...
Blog
Splitting Your Database Files by Using SQL Server Management Studio
Posted
over 2 years ago
by
Aranu
0
Comments
SQL Server ships with a fantastic graphical user interface: you might say the iPhone of database administration. It is called SQL Server Management Studio. SQL Server Management Studio gives the part-time SQL Server database administrator who is running...
Blog
Reading the SQL Server Error Logs: Part 3
Posted
over 2 years ago
by
Aranu
0
Comments
In the second post about the error logs, we examined the authentication mode and startup parameters. In this third post, we'll examine the priority, CPU, locking, and node configuration information presented in the SQL Server error logs for Windchill...
Blog
Which Database Is Using the Hard Drive the Most?
Posted
over 2 years ago
by
Aranu
0
Comments
One way to improve the performance of Windchill is to balance the load of the SQL Server data files across all the logical drives. If one data file is using more disk I/O than another data file, you will want to move it to a logical drive by itself. How...
Blog
Reading the SQL Server Error Logs: Part 2
Posted
over 2 years ago
by
Aranu
0
Comments
In our first post about the error logs, we covered the version information for SQL Server. In this second part, we'll keep going through the valuable information in the error logs that will help you better understand and troubleshoot issues with Windchill...
Blog
Monitoring SQL Server's Disk Subsystem
Posted
over 2 years ago
by
Aranu
0
Comments
After you have your disk subsystem running for SQL Server and that computer is deployed into a production environment, how do you know you have the subsystem configured correctly? Monitoring of course! If you monitor by using Windows Performance Monitor...
Blog
Reading the SQL Server Error Logs: Part 1
Posted
over 2 years ago
by
Aranu
0
Comments
SQL Server error logs are the de facto error reporting location for all the SQL Server services. They provide information about the health of SQL Server that is not found anywhere else. If you want to check Windchill running on SQL Server, check the SQL...
Blog
How Do Your Queries Affect the Disk Subsystem?
Posted
over 2 years ago
by
Aranu
0
Comments
Have you ever wondered how your queries affect your disk subsystem? With the sys.dm_exec_query_stats dynamic management view in SQL Server, you can find out. No matter how carefully you plan your RAID configuration and your hard drive layout, it is up...
Blog
Introducing sys.dm_db_index_physical_stats
Posted
over 2 years ago
by
Aranu
0
Comments
In the past few posts (such as Understanding Index Defragmentation ), we've introduced a SQL Server dynamic management view called sys.dm_db_index_physical_stats . This index-related dynamic management view was introduced in SQL Server 2005 and is the...
Blog
Introducing sys.dm_io_virtual_file_stats
Posted
over 2 years ago
by
Aranu
0
Comments
One of the tasks that every SQL Server database administrator for Windchill needs to accomplish is the performance monitoring of database data and log files. Often, a DBA needs to understand the performance of their disk I/O and needs something that can...
Blog
Checking Database Integrity
Posted
over 2 years ago
by
Aranu
0
Comments
In theory, you should never need to manually check the integrity of your database, because nothing should ever go wrong with the database, the memory, or the I/O subsystems. However, in practice, checking the integrity of your database will give you confidence...
Blog
More about How to Size Fill Factor on an Index
Posted
over 2 years ago
by
Aranu
0
Comments
In a recent post , we discussed index fill factor and what it is. We want to follow up that post with an explanation of when and why you may want to set a fill factor for an index or change the default fill factor on your instance of SQL Server. Often...
Blog
Sizing Your Hard Drives
Posted
over 2 years ago
by
Aranu
0
Comments
We've talked about RAID , and we've talked about the number of drives you need. Now, let's talk about how to determine the right size drives for you. Getting the right size drives in your new server purchase can optimize the cost of the new server and...
Blog
Fire Drills: Practice Restoring a Database
Posted
over 2 years ago
by
Aranu
0
Comments
Restoring a database is an essential part of any DBA's job running Windchill. If you cannot restore a database, you will almost certainly lose your job. Thus, the topic of restoring a database seems well worth digging into more deeply. A Quick Review...
Blog
Backup Strategy: Part 2
Posted
over 2 years ago
by
Aranu
0
Comments
In our previous post , we considered various strategies for backing up your ISV database, based on the recovery model of the database. However, your backup strategy will be defined not only by your database recovery model, but also by your recovery goals...
Blog
Backup Strategy: Part 1
Posted
over 2 years ago
by
Aranu
0
Comments
Your data is critical to your business. You need to be able to reliably back up your data─and then easily restore it if there is some sort of failure. This is still true in an environment that is running Windchill. So, how much thought have you given...
Blog
How Many Hard Drives Do I Need to Support SQL Server?
Posted
over 2 years ago
by
Aranu
0
Comments
Your RAID configuration and the placement of your database files depend on the number of hard drives in your server. Or in other words, you can only use what you have—a real world physical limitation. This is the third post in a series about the file...
Blog
Understanding RAID for SQL Server: Part 2
Posted
over 2 years ago
by
Aranu
0
Comments
This is a continuation of our series on designing a SQL Server file subsystem. Our post on March 30 discussed software RAID (redundant array of independent disks) and RAID level 0. Today, we discuss the RAID levels that provide data redundancy—the ones...
Page 1 of 1 (21 items)