2011-05-06
2,638 reads
2011-05-06
2,638 reads
TempDB is the ALU of the SQL Server and if somehow this gets deleted Server cannot start. Here is a solution of how to get the server started when TempDB is deleted.
2011-05-04
15,175 reads
Automate patch installations using the task scheduler and command line hotfix options for SQL.
2011-05-03
4,683 reads
2011-04-29
2,510 reads
Whenever rows or columns are deleted from a table, SQL Server reuses space to accommodate new data. However, this is not the case when a variable length column is deleted. The space used by this type of column is not reclaimed automatically. Variable length columns can be of data types varchar, nvarchar, varchar(max), nvarchar(max), varbinary, varbinary(max), text, ntext, image, sql_variant, and xml. In this tip, I have tried to put forth a solution to reclaim this space and this should work for SQL 2005 and later versions.
2011-04-18
3,911 reads
2011-04-11
2,362 reads
2011-04-07
2,639 reads
Marcin Policht discusses ways to launch processes for remote systems using SQL Server 2008 R2 Integration Services.
2011-04-07
3,153 reads
This article provides a practical example of how Powershell can be used by DBAs.
2011-04-06
4,478 reads
What DBA wouldn't want to make their job a little easier?
2011-04-05
6,926 reads
By Steve Jones
Earlier this year I visited a customer that was using the Redgate Monitor webhook...
By Zikato
TSQL ScriptDOM is a useful library for parsing scripts into an abstract syntax tree....
By DataOnWheels
Over the past few months, I have debated starting a new blog to discuss...
Hi, we lost our sever sql2000 To restore database to a new one we...
Hi, since we lost our sql server 2000 server we are trying to restore...
Comments posted to this topic are about the item Do You Really Need HA?
I run this code:
create database experiment
go
use Experiment
go
select DATABASEPROPERTYEX('Experiment', 'LastGoodCheckDbTime')
What is returned? See possible answers