Viewing 15 posts - 2,161 through 2,175 (of 3,011 total)
There is some performance hit to running on a VM, but it is hard to predict exactly what it will be. You are sharing real hardware with other VMs,...
November 13, 2008 at 4:12 pm
"My understanding is, a primary key should be not null and uniquely identify each row"
A primary key must be not null and must uniquely identify each row.
"Is there like a...
November 13, 2008 at 12:45 pm
If you can, convert your ntext column to nvarchar(max), and you won't have to worry about updatetext or writetext. You can just use regular string functions and operators.
November 12, 2008 at 11:38 pm
That is something being done by the remote email systems, so it is not under your control.
You might try contacting the admins of those emails systems to try to get...
November 12, 2008 at 10:29 am
A NATURAL JOIN is an inner join where the RDBMS automatically selects the join columns based on common columns names. Some RDBMS vendors, like Oracle but not SQL Server,...
November 11, 2008 at 4:09 pm
I think the simple answer is supply and demand. It is easy enough to get someone who can click around in the tools and get stuff done without doing...
November 11, 2008 at 10:31 am
Why don't you just use the NetBackup SQL Server Agent to do your backups?
November 10, 2008 at 2:12 pm
Have you checked the creation date of the table to verify that it is not being dropped and re-created, instead of truncated?
November 10, 2008 at 12:14 pm
You should not use NOLOCK hints.
Look into using SNAPSHOP isolation to prevent report queries from causing blocks or being blocked by other processes.
November 6, 2008 at 9:43 am
It is usually not necessary to re-index so often. Once per week or less is probably plenty.
November 6, 2008 at 9:09 am
You really have two different issues there, database backups and index rebuilds.
You should have some kind of backup happening on a regular schedule, along with transaction log backups if the...
November 6, 2008 at 8:48 am
You might want to read through this thread:
http://www.sqlservercentral.com/Forums/Topic583474-357-1.aspx
November 6, 2008 at 8:09 am
ROBOCOPY is good for moving files across a network. It has command line switch options for automatic retry and to resume a file copy at the point of failure,...
November 6, 2008 at 8:07 am
Viewing 15 posts - 2,161 through 2,175 (of 3,011 total)