Sign in
Vipul Shah's SQL Blogs
SQL Server Blogs
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search Blogs
Tags
/3GB /PAE and AWE
64-bit
Benefits of SQL 2005
Bing
Bing Map Apps
Bing Maps
Data Scripter Utility
Database Design
DDL Triggers
Default Traces
DTS
Guest User in SQL Server
Indexes
Integration Services
LOGON Triggers
Migration to SQL 2005
Missing Indexes DMVs
Monitoring
Patches
Reporting Services
SQL Server Management Studio
SQL Server Performance
Table Partitioning
T-SQL
Archive
Archives
May 2013
(1)
January 2013
(1)
November 2012
(1)
March 2012
(1)
January 2012
(2)
June 2011
(3)
February 2011
(1)
November 2010
(3)
October 2010
(2)
August 2010
(1)
June 2010
(2)
June 2009
(1)
May 2009
(1)
January 2009
(1)
April 2008
(1)
February 2008
(2)
December 2007
(2)
September 2007
(3)
August 2007
(1)
July 2007
(1)
June 2007
(1)
May 2007
(3)
April 2007
(3)
March 2007
(5)
February 2007
(2)
January 2007
(1)
November 2006
(2)
March, 2007
TechNet Blogs
>
Vipul Shah's SQL Blogs
>
March, 2007
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Vipul Shah's SQL Blogs
Physical Database Storage Design and Disk Allocation
Posted
over 6 years ago
by
VipulShah
0
Comments
The system page file should not be on the same physical spindle as any database files, otherwise you will not get optimum performance from the drive as its disk head will be jumping between the page file and the database files. Ditto for placement of...
Vipul Shah's SQL Blogs
How to identify which DTS Package is being called by scheduled job
Posted
over 6 years ago
by
VipulShah
1
Comments
I have seen where DBAs would right click the DTS Package (SQL 2000) and schedule a job. If you schedule a package to run that way, the SQL Job it creates will have an encrypted name for DTS package in SQL job step - similar to what you see below: DTSRun...
Vipul Shah's SQL Blogs
How to check the status of SQL Server Services remotely?
Posted
over 6 years ago
by
VipulShah
0
Comments
There is windows “SC” utility and the following “Heart Beat” approach. http://www.databasejournal.com/features/mssql/print.php/3347241 You can use SC query and look for string RUNNING SC \\machineName query MSSQLSERVER ! findstr “RUNNING...
Vipul Shah's SQL Blogs
How to parse the view definition and get the base tables and base columns information
Posted
over 6 years ago
by
VipulShah
0
Comments
You can use INFORMATION_SCHEMA.VIEW_TABLE_USAGE and INFORMATION_SCHEMA.VIEW_COLUMN_USAGE from SQL70 onwards. And you can use sys.sql_dependencies in SQL Server 2005.
Vipul Shah's SQL Blogs
Indexing a SQL Table
Posted
over 6 years ago
by
VipulShah
1
Comments
I found one of my old documents where I kind of summarized Indexes on a SQL Table, might help. Indexing SQL Table Primary Key: · Creates clustered index on the column · Doesn't allow NULLS Unique Key: · Creates non-clustered...
Page 1 of 1 (5 items)