Mahipal Padigela's Blog

  • Home
  • About
  • www.mahipalreddy.com
  • Register
  • Log in
  • Subscribe RSS Feed

Archive for August, 2008

Troubleshooting Performance Problems in SQL Server 2005

http://www.microsoft.com/technet/prodtechnol/sql/2005/tsprfprb.mspx

Friday, August 22nd, 2008 SQL Server 2005 No Comments

Memory configuration settings in SQL Server

some useful links on SQL Server memory management:

http://sqlnerd.blogspot.com/2006/07/memory-use-in-sql-server.html


http://sqlnerd.blogspot.com/2007/07/further-explanation-of-sql-memory-use.html

How to use the DBCC MEMORYSTATUS command to monitor memory usage on SQL Server 2005

http://support.microsoft.com/?kbid=316739

http://support.microsoft.com/kb/918483/en-us

Tuesday, August 19th, 2008 SQL Server 2005 No Comments

Querying table, column names and datatypes – Sql Server 2005

Select
a.name TableName,b.name ColumnName,c.name DataType
FROM sys.tables a
	inner join sys.columns b on a.object_id=b.Object_id
	inner join sys.types c on b.system_type_id = c.system_type_id
order by a.name,b.name

Tags: column names, datatypes, Sql Server 2005

Friday, August 15th, 2008 SQL Server 2005 No Comments

Categories

  • DW
  • Investment Banking
  • SQL Server 2005
  • SSIS
  • SSRS
  • Uncategorized

Archive

  • March 2010
  • February 2010
  • January 2009
  • December 2008
  • November 2008
  • September 2008
  • August 2008
  • July 2008
  • May 2008
  • April 2008
  • March 2008
  • February 2008
  • November 2007

Links

  • Learn Microsoft BI
  • Puzzled by T-SQL
  • SSIS Junkie
  • Sutha Thiru

Meta

  • Register
  • Log in

Copyright © 2008 Mahipal Padigela's Blog

Terms and Conditions of Use