Viewing 15 posts - 31 through 45 (of 226 total)
hetkeval2005 (5/26/2009)
May 26, 2009 at 12:38 pm
If all of your application end users are within the company and on the active directory, it is much better to go with windows authentication. Don't fight it..... ...
May 21, 2009 at 7:42 am
You'll have to update the post with more information about the tables we are selecting from. You've given only a small amount of information about the 'Problem' table. ...
May 20, 2009 at 7:53 am
Lynn Pettis (4/11/2008)
May 19, 2009 at 3:04 pm
zzx375 (5/19/2009)
sys.system_sql_modules always returns 1 for uses_ansi_nulls and uses_quoted_identifier. All by itself,...
May 19, 2009 at 12:14 pm
Select count(date_logged) as M_Count, datename(month,date_logged) as M_Month
FROM incident
WHERE
date_logged > '20090101' AND date_logged < dateadd(mm, +2, '20090101')
group by datename(month,date_logged)
just add the select for your "type" and you are good to...
May 18, 2009 at 8:47 am
Use this and then create a cross tab report in ssrs's reporting wizard:
Select count(*), Month(date_logged)
FROM table1
WHERE
Month(date_logged) between Month(dateadd(mm, 0, @AktuelleDatum)) and Month(dateadd(mm, -2, @AktuelleDatum))
and year(date_logged) between year(dateadd(mm, 0, @AktuelleDatum))...
May 13, 2009 at 3:21 pm
It's the Peter Principle. Everyone talks about it but hardly anyone follows it. Management assumes that excellence at a technical role whether it be DBA, welder, programmer, etc...
May 12, 2009 at 10:47 am
Here's a free tool:
May 12, 2009 at 9:12 am
Please give us some sample data so we can better help you:
http://www.sqlservercentral.com/articles/Best+Practices/61537/
May 12, 2009 at 8:35 am
Subtle difference in 'freeing up space' vs shrinking...nice question:
http://msdn.microsoft.com/en-us/library/ms189085.aspx
Truncation does not reduce the size of a physical log file. Reducing the physical size of a log file requires shrinking the...
May 12, 2009 at 7:24 am
So what happens after you connect to a database? Are you talking about the "server type" drop down in the 'connect to server' dialog?
May 11, 2009 at 3:20 pm
Part of finding a good recruiter is one who is committed to the business. One that is successful, has lots of experience, and enjoys the work. So I...
May 11, 2009 at 9:29 am
from BOL "Create Database":
The specified path must exist before executing the CREATE DATABASE statement. For more information, see "Database Files and Filegroups" in the Remarks section.
May 11, 2009 at 9:07 am
Here comes a curveball. Instead of focusing on the best way to find and screen DBA talent, spend that time looking for an excellent technical recruiter. Hiring talent...
May 11, 2009 at 8:13 am
Viewing 15 posts - 31 through 45 (of 226 total)