Viewing 15 posts - 136 through 150 (of 209 total)
djackson 22568 (11/12/2011)
david.wright-948385 (11/12/2011)
Those last two replies (djackson 22568 and SQLRNNR) are what I mean. .
Excuse me, but maybe you need to take some time and think about what you...
November 13, 2011 at 1:59 am
andre.quitta (11/11/2011)
I got a bit interested in the Size column, but then later found out it was kind of bogus.
Spot on, and well pointed out, but the original article...
November 12, 2011 at 1:12 am
Those last two replies (djackson 22568 and SQLRNNR) are what I mean. Categorisation it at best a poor and time-limited approximation performed for convenience or speed. People fit into many...
November 12, 2011 at 1:09 am
or
where d.state_desc = 'ONLINE'
🙂
November 12, 2011 at 12:59 am
Categorisation can help if you must relate to many less well known people, but it's important to realise that one person will fit into many categories. Trying to fit a...
November 11, 2011 at 12:54 am
Or perhaps simpler:
select
db_name= d.name,
filename= f.name,
file_location= f.physical_name
from sys.master_filesf
join sys.databasesd on d.database_id = f.database_id
🙂
November 11, 2011 at 12:46 am
Dotted lines represent the triumph of pragmatism over purism.
I loved it when I was a contractor - I was brought in to do a job, I did that job...
September 16, 2011 at 3:43 am
Vocational training would be good - the trainees would be more sought after in the jobs market.
But... and it's a big but... the courses must be up to date...
September 9, 2011 at 3:08 am
No criticism of the article, but I would argue that the only way to verify a backup properly is to restore it fully and perform the usual checks on the...
July 11, 2011 at 3:29 am
rja.carnegie (9/2/2009)
I find the report of DBCC CHECKDB useful.Why doesn't "SELECT COUNT(*) FROM table" look at an index, which apparently it doesn't(?)
For 'select count(*) from ' the 2008 optimiser will...
January 28, 2011 at 2:48 am
wouldn't
declare @result varchar(max);
select @result = coalesce(@result + ',' + value,value) from @codes;
select @result;
be a lot simpler?
January 27, 2011 at 7:35 am
Steve Jones - SSC Editor (10/15/2010)
If you are strictly a manager, and I think that is important, than you shouldn't need lots of technical knowledge.
Agreed, you just need the ability...
October 15, 2010 at 10:50 am
feersum_endjinn (10/14/2010)
October 14, 2010 at 9:06 am
Given that you are the boss, you say who does the work, so if you like you can be the person who does the work. Best of both worlds 🙂
October 14, 2010 at 3:16 am
Viewing 15 posts - 136 through 150 (of 209 total)