Viewing 15 posts - 451 through 465 (of 607 total)
mike 57299 (1/24/2013)
January 25, 2013 at 1:35 am
It sounds like profiler might be the tool for you.
If you are new to profiler I suggest "Mastering SQL Server Profiler" By Brad McGehee.
January 25, 2013 at 1:25 am
Stuart Davies (1/25/2013)
Can't see there'll be much debate about this one!
I vehemently disagree.
January 25, 2013 at 1:25 am
I am getting myself confused with some simple maths :crazy:
Answer 1
Coalesce can take more than two parameters, and IsNULL takes exactly two parameters
97%
Answer 5
Coalesce takes exactly two parameters, and IsNULL...
January 24, 2013 at 11:15 pm
To add, I chose relational and I will stick to that.
January 24, 2013 at 10:15 pm
Terrible question. To have to make such a fundamental architecture decision with a one sentence spec means this project will be doomed from the start.
Also the explanation mentions the need...
January 24, 2013 at 10:12 pm
GilaMonster (1/24/2013)
To be honest, I'm not 100% sure
Shock, horror.
January 24, 2013 at 12:59 pm
Shrink is not recommended. Paul Randall has a great blog post regarding this.
http://www.sqlskills.com/blogs/paul/why-you-should-not-shrink-your-data-files/
The method I like to recommend is as follows:Create a new filegroupMove all affected tables and indexes...
January 24, 2013 at 12:55 pm
Sql Server doesn't care about who is accessing so doesn't expose that info. I think the process worries about two facts. Is anyone accessing the table and is the...
January 23, 2013 at 3:48 pm
SELECT COALESCE(lname + '.' + fname, lname, fname) AS emp_name
FROM employees
January 23, 2013 at 7:12 am
The following could help
SELECTt.text,
p.spid
FROMsys.sysprocesses p
CROSS APPLYsys.dm_exec_sql_text(p.sql_handle) t
WHEREt.text LIKE '%##I%'
ANDp.spid <> @@SPID;
January 23, 2013 at 6:52 am
Sean Lange (1/22/2013)
newdba_sql (1/22/2013)
January 23, 2013 at 5:42 am
mamzy.rahman (1/22/2013)
thanks for your help david but this doesnt take the null values into account
January 22, 2013 at 5:50 am
Viewing 15 posts - 451 through 465 (of 607 total)