Viewing 15 posts - 1,636 through 1,650 (of 3,008 total)
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
Conversion of 0 or other numbers directly to datetime is documented in SQL Server Books Online.
select
DT,
...
September 3, 2009 at 9:23 am
The performance of SAN depends on so many things that you really need to test it to make sure you have the expected performance. The 9 MB/Sec you mentioned...
September 3, 2009 at 8:34 am
Tables and indexes are assigned to filegroups, not files, so the normal assumption will be that the data is spread across all files in the filegroup.
If you run DBCC SHRINKFILE...
September 2, 2009 at 4:57 pm
Viewing 15 posts - 1,636 through 1,650 (of 3,008 total)