Viewing 15 posts - 1,771 through 1,785 (of 3,008 total)
steveb (6/22/2009)
Jeff Moden (6/22/2009)
jeffrey yao (6/20/2009)
Michael Valentine Jones (6/18/2009)
Matt Miller (6/18/2009)
..."What is normalization and why is it important?"...
Just say that “normalization” is theoretical nonsense that so-called gurus like Date and...
June 22, 2009 at 8:38 am
You need to investigate the queue length in more detail on a disk by disk basis. Are the the long queues for reads or writes? Are the long...
June 19, 2009 at 9:02 pm
Matt Miller (6/18/2009)
..."What is normalization and why is it important?"...
Just say that “normalization” is theoretical nonsense that so-called gurus like Date and Celko throw around to try to impress people,...
June 18, 2009 at 3:52 pm
I attended a public speaking class where the first thing they did was give us five minutes to prepare to give a five minute talk on “How great you are...
June 18, 2009 at 9:12 am
We do mainly web based applications, and assign a different Windows account for each web site. The users authenticate to the web site, and the web site account connects...
June 16, 2009 at 9:52 pm
You should check the growth size setting on your log file to make sure it is not set to a very large value or percent. If it is, set...
June 4, 2009 at 7:43 am
Jack Corbett (6/2/2009)
DECLARE @table TABLE (date DATETIME)
INSERT INTO @table (
date
)
SELECT
'20090112'
UNION ALL...
June 2, 2009 at 9:23 pm
select
Hours = datepart(hh,TimeEnd-TimeStart),
Minutes = datepart(mi,TimeEnd-TimeStart),
Seconds =...
May 29, 2009 at 12:54 pm
Will Summers (5/28/2009)
May 28, 2009 at 4:13 pm
I always add an index on a foreign key column. If you don't have an index on the foreign key, any join with the selection criteria on the parent...
May 27, 2009 at 8:31 am
See the responses posted to this same question on SQLTeam:
May 26, 2009 at 4:55 pm
If your problem is getting backups to fit on DVDs, you can backup to multiple backup files. SQL Server will split the data across multiple backup files that will...
May 26, 2009 at 3:02 pm
ssb (5/22/2009)
So I will use separate accounts for each of the services across each of the servers. Just out of curiosity besides what you mentioned...
May 22, 2009 at 1:14 pm
Use a different account as the service account for each SQL Server.
If you use the same account on more than one server, it becomes almost impossible to change the account...
May 22, 2009 at 12:35 pm
Viewing 15 posts - 1,771 through 1,785 (of 3,008 total)