Viewing 15 posts - 136 through 150 (of 205 total)
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
Are the login events originating from sql server or from Windows/Active Directory?
October 6, 2010 at 6:55 am
Slightly away from your question... you could also write a stored proc that is executed at startup (exec sp_configure 'scan for startup procs', '1' and exec sys.sp_procoption '<sp name>','startup','on') that...
September 2, 2010 at 3:04 am
PaulB-TheOneAndOnly (8/19/2010)
ashish.kuriyal (8/10/2010)
it depends how updated your indexes and tables are.:blink: Could you please elaborate? This is really confusing.
I imagine Ashish means it depends how many updates have been...
August 19, 2010 at 10:22 am
Viewing 15 posts - 136 through 150 (of 205 total)