Viewing 15 posts - 1 through 15 (of 59 total)
I agree with Hugo that whether you update part of a file or re-write the entire file, the data in the file is updated. The bits may be in a...
March 25, 2009 at 7:47 am
When the question specifies the version of SQL Server, you should double check that the selected article in BOL is for that version. The Local Help search in BOL lists...
March 20, 2009 at 7:35 am
The type of organization could dictate how conservative or risky a leader can be. In banking, you can't appear to be taking risks. In tech, cutting edge risk taking is...
February 13, 2009 at 7:33 am
I got the question wrong, but after searching some more found out I WAS wrong. It would put the information into the restorehistory table if you used the LOADHISTORY option....
January 21, 2009 at 7:11 am
Although the question mentions that the snapshot will grow quickly, there is no mention of trying to shrink the size of the snapshot or running out of disk space. It...
December 18, 2008 at 7:24 am
Steve Jones - Editor (7/25/2008)
I think Americans in general are a little arrogant, and overall, culturally ignorant. We tend to see the US as the center of the world.
Even...
August 6, 2008 at 7:16 am
The most valuable lesson I learned from my Dad when I was growing up was 'Look it up!' If I had a question, he wouldn't tell me the answer, he...
August 5, 2008 at 7:00 am
You can take a look at this about coupling Outlook to SQL Server:
http://www.sqlservercentral.com/articles/DTS/couplingoutlooktosqlserver/1693/">
http://www.sqlservercentral.com/articles/DTS/couplingoutlooktosqlserver/1693/
August 4, 2008 at 7:44 am
If a product can only be in one family and a family can only be in one category, you should have a category id in the family table as a...
August 4, 2008 at 7:30 am
Database optimization is a subset of performance tuning.
August 4, 2008 at 7:24 am
The problem isn't the COALESCE, you are adding each subsequent letter to the beginning of the string:
SELECT @string = COALESCE(letter + ' ', '') + @string from #test
To add to...
August 1, 2008 at 3:39 pm
jcrawf02 (8/1/2008)
That's obviously an infringement on the environment of the endangered aquatic giraffe (subaqueanum camelopardalis) and your company should be ashamed to be so environmentally hostile.
So, if the applicant is...
August 1, 2008 at 3:33 pm
The clustered index contains the data pages. If you update the data pages, you are updating the clustered index.
August 1, 2008 at 3:29 pm
If you drop the 'Friday' and the commas, then
SELECT CONVERT(varchar(10), CONVERT(datetime, 'August 15 2008 7:30 pm', 100), 101)
August 1, 2008 at 2:06 pm
Viewing 15 posts - 1 through 15 (of 59 total)