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
(15)
May 2010
(11)
April 2010
(23)
March 2010
(18)
MSDN Blogs
>
Blog
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Blog
Blog has been migrated to http://www.siemensonsql.com
Posted
over 1 year ago
by
Aranu
0
Comments
Dear readers - please note that this blog is no longer active at this location. The blog has been migrated and is now available on Technet at the following friendly URL: http://www.siemensonsql.com . Thank you
Blog
The DBCC INDEXDEFRAG Command
Posted
over 2 years ago
by
Wayne Walter Berry
1
Comments
Understanding DBCC (Database Console Commands) is a step toward becoming a better and well-rounded DBA for Teamcenter . In my last post , I covered the basics of DBCC DBREINDEX, a command that rebuilds your indexes to remove fragmentation. In this post...
Blog
The DBCC DBREINDEX Command
Posted
over 2 years ago
by
Wayne Walter Berry
1
Comments
If you want to be a better and well-rounded DBA for Teamcenter, understanding DBCC (Database Console Commands) is an important step. In my last post , I covered the basics of the DBCC SHOWCONTIG command and how to find table fragmentation. In this post...
Blog
The DBCC SHOWCONTIG Command
Posted
over 2 years ago
by
Wayne Walter Berry
1
Comments
If you want to become a better and well-rounded DBA for Teamcenter, understanding DBCC (Database Console Commands) is an important step. In my previous posts in this series, I discussed the basics of DBCC and three commands: DBCC SQLPERF, DBCC HELP ,...
Blog
SQL Server Scan and Seek Execution Plan Operations
Posted
over 2 years ago
by
Wayne Walter Berry
0
Comments
To get better performance from SQL Server queries, you need to be able to read a query execution plan and determine if that plan needs to be optimized. An execution plan is the method that the optimizer will follow to execute the submitted query, and...
Blog
SQL Server Index Intersection/Union
Posted
over 2 years ago
by
Wayne Walter Berry
0
Comments
The SQL Server optimizer has many algorithms and operators to put together reusable execution plans for queries that you run against a system. One is the ability to perform index intersection and/or union, which basically means that it can use multiple...
Blog
Backup and Recovery Basics: Part 2, Recovering Your Databases
Posted
over 2 years ago
by
Wayne Walter Berry
0
Comments
In my last post about backup and recovery, I discussed the various methods for backing up a SQL Server database. In this post, I'll discuss the other half of the equation: restoring the database. After all, backups are only as good as the last restoration...
Blog
The SQL Server 2008 Data Collector: Part 3
Posted
over 2 years ago
by
Wayne Walter Berry
0
Comments
This is the third post in a series about the data collector in SQL Server 2008. In the first post , we looked at how to set up the data collector; in the second post , we looked at the standard counters that are captured by the data collector. In this...
Blog
SQL Server Index Types
Posted
over 2 years ago
by
Wayne Walter Berry
0
Comments
Query optimization is one of the most important skills in your system performance and scalability toolkit, and correct index usage is one of the most effective ways to get good query execution plans. Queries need efficient on-disk access paths to minimize...
Blog
The SQL Server 2008 Data Collector: Part 2
Posted
over 2 years ago
by
Wayne Walter Berry
0
Comments
This is the second part in a series of posts about the data collector in SQL Server 2008. In this post, I will list the measurements that are available from the data collector. This may seem like a strange post, but I could not find this information anywhere...
Blog
The SQL Server 2008 Data Collector: Part 1
Posted
over 2 years ago
by
Wayne Walter Berry
0
Comments
This is the first part of a series of posts about the data collector in SQL Server 2008. The data collector captures key Windows Performance Monitor counters and internal SQL Server counters every minute in a SQL Server database. In this post, I'll show...
Blog
Configuring tempdb for a Teamcenter Installation of SQL Server
Posted
over 2 years ago
by
Wayne Walter Berry
0
Comments
To improve the performance of your Teamcenter installation let’s move the tempdb database and resize it. The default Microsoft SQL Server installation does not have an optimally sized or placed tempdb database for Teamcenter, and this slows down some...
Blog
Index Fragmentation Issues in Siemens Teamcenter
Posted
over 2 years ago
by
Wayne Walter Berry
0
Comments
A great way to improve performance is to reduce the amount of index reorganization you perform . People without much SQL Server experience frequently set up maintenance plan jobs to perform basic database backup, transaction log backup, and statistics...
Blog
Understanding the Performance Characteristics of Your System: Part 3
Posted
over 2 years ago
by
Wayne Walter Berry
0
Comments
You can learn a lot about performance and potential problem areas by simply watching the CPU usage of your running system over time. As I outlined in the previous posts in this series, after you have validated that there are no errors or deadlocks occurring...
Blog
Backup and Recovery Basics
Posted
over 2 years ago
by
Wayne Walter Berry
0
Comments
As database administrators, we are charged with not only protecting our data but also being able to recover it in case of emergencies. For that reason, knowing the different types of backups that are available to you in SQL Server, how they work, and...
Blog
Whitepaper: Best Practices for Running Siemens Teamcenter on SQL Server
Posted
over 2 years ago
by
Wayne Walter Berry
0
Comments
This white paper provides best practices for configuring and running Teamcenter 8.1 on the Microsoft SQL Server database platform. Implementing these best practices can help you avoid or minimize common problems and optimize the performance of Siemens...
Blog
Understanding the Performance Characteristics of Your System: Part 2
Posted
over 2 years ago
by
Wayne Walter Berry
0
Comments
Last time, I blogged on the first in a series of steps you need to take to verify your system is not experiencing any system errors or deadlocks. There are just a few more things you need to verify before moving on. Validate the Server Properties Start...
Blog
The DBCC CHECKALLOC Command
Posted
over 2 years ago
by
Wayne Walter Berry
0
Comments
Understanding DBCC (Database Console Commands) is a step toward becoming a better and well-rounded DBA for Workforce Central. In my last post , I covered the basics of DBCC and two of its commands: SQLPERF and HELP. In this post, I will cover the DBCC...
Blog
Introduction to DBCC Statements
Posted
over 2 years ago
by
Wayne Walter Berry
0
Comments
Understanding DBCC (Database Console Commands) is a step toward becoming a better and well-rounded database administrator (DBA) for Workforce Central. DBCC is a command in Transact-SQL that helps you implement maintenance, validation, and information...
Blog
Understanding the Performance Characteristics of Your System: Part 1
Posted
over 2 years ago
by
Aranu
0
Comments
How do you know if you have something out of the ordinary occurring on your database application system if you don't have a good feel for what "ordinary" looks like? Finding the Norm It is difficult to determine if there is a performance bottleneck...
Blog
The Plan Cache
Posted
over 2 years ago
by
Aranu
0
Comments
Knowing which queries are performing slowly gives you inside knowledge that you can use to optimize SQL Server. Every query that is executed against SQL Server is stored in the plan cache. Besides the raw query and the execution plan that is needed for...
Blog
Are You Making This Common RAM Mistake?
Posted
over 2 years ago
by
Aranu
1
Comments
RAM is the secret sauce in SQL Server performance: the more RAM, the faster the performance. In this post, I'll discuss how RAM is allocated for the data cache in SQL Server. SQL Server fulfills a request for data only from RAM, never streaming off the...
Blog
Updating a SQL Server Failover Cluster
Posted
over 2 years ago
by
Aranu
0
Comments
You have your highly available instance of SQL Server in place, and you've grown comfortable with the unique attributes of administering a clustered SQL Server configuration. (See my previous post .) Now, you've decided (or Siemens PLM Software has asked...
Blog
Managing a SQL Server Failover Cluster
Posted
over 2 years ago
by
Aranu
0
Comments
SQL Server failover clustering can be intimidating if you're not used to administering clustered systems. In my earlier post , I discussed how to install Windows and SQL Server in a failover cluster configuration. Teamcenter fully supports using a clustered...
Blog
Installing SQL Server Failover Clustering
Posted
over 2 years ago
by
Aranu
0
Comments
SQL Server has a variety of options to improve availability, including failover clustering. Failover clustering protects you from several kinds of hardware and software failures, such as a server crash, a local disk drive failure, or an application fault...
Page 1 of 3 (68 items)
1
2
3