Viewing 15 posts - 1,636 through 1,650 (of 3,011 total)
September 16, 2009 at 1:01 pm
The Cluster Administrator application will list the disks under the clusters Resources with Physical Type = Physical Disk
September 16, 2009 at 12:52 pm
pwatson-904240 (9/15/2009)
Lynn, yeah, I noticed the mistake I made, I actually meant that the year ends on the last Saturday and starts on the last Sunday of...
September 16, 2009 at 10:14 am
cs_troyk (9/14/2009)
John Rowan (9/10/2009)
September 14, 2009 at 2:13 pm
This discussion seems a bit pointless.
Although SQL Server could be implemented without having PRIMARY KEY, it’s not going to happen without some overwhelming advantage to getting rid of it. ...
September 10, 2009 at 9:01 am
michael.welcome (9/3/2009)
The project was a huge failure as I expected.
It was so convoluted that the required functionality was never able to be implimented. Most screens never worked as expected...
September 9, 2009 at 7:45 am
You should have suggested simplifying the design further by storing all the data in a single row and column of a single table. Obviously, XML would be ideal for...
September 8, 2009 at 2:11 pm
nick (9/8/2009)
of two columns, date and time....
September 8, 2009 at 1:26 pm
How would I do with these answers?
What would you describe as your strengths?
I can answer really stupid questions without letting my contempt for the person asking the question show.
How do...
September 8, 2009 at 12:53 pm
This shows how to convert the actual datetime to a business date.
select
a.MyDate,
BusinessDate = dateadd(dd,datediff(dd,0,dateadd(hh,-5,a.MyDate)),0)
from
...
September 8, 2009 at 12:00 pm
Sounds like you were interviewed by some HR weenie.
I never let HR get any more involved in the hiring process for DBAs than contacting recruiters and placing advertisements. I...
September 8, 2009 at 10:29 am
Here is another series of tests showing the difference in performance of inline code vs. scalar UDFs.
Demo Performance Penalty of User Defined Functions
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=78601
The functions in the following links have the...
September 5, 2009 at 12:48 am
steveb (9/4/2009)
It can make developing software a lot easier - this is probably the best reason
Do you mean that having Primary Keys makes it easier, or not having them makes...
September 4, 2009 at 10:44 am
Can you explain the reasons to NOT use a PRIMARY KEY?
Exactly how will not using them improve anything?
September 4, 2009 at 10:17 am
II have been asked on occasion over the years to “fix” data.
If it’s a case where the change is a correction to the data and not a falsification, I request...
September 3, 2009 at 10:16 am
Viewing 15 posts - 1,636 through 1,650 (of 3,011 total)