Viewing 15 posts - 346 through 360 (of 717 total)
Koen (da-zero) (1/5/2011)
And I thought I was already "old" because I have used floppy disks 😀
But have you used 8" floppy disks?
January 5, 2011 at 10:48 am
Alberto IT (1/5/2011)
To complicated. Yo can solve it using CHARINDEX:
As long as you don't mind incorrect results:
DECLARE @inputValue NVARCHAR(20)
DECLARE @student TABLE
(Id INT PRIMARY KEY IDENTITY(1,1),
StudentName NVARCHAR(50),
StudentResult INT)
INSERT INTO @student
VALUES( 'Hardy',...
January 5, 2011 at 9:57 am
Hugo Kornelis (1/4/2011)
January 4, 2011 at 1:33 pm
Thanks for the question, and thanks Hugo for your explanation.
This question was really easy, as I knew the errors couldn't happen as they were stated, so there was only one...
December 30, 2010 at 11:55 am
Thanks for the question!
I think this would fall under the "Halloween Protection" portions of updates and deletes.
For some trivia you can read some about the Halloween problem here.
December 30, 2010 at 11:52 am
Brandie Tarvin (12/28/2010)
December 28, 2010 at 12:33 pm
Only correct for 2005 RTM? Can't say as I like this question...
December 28, 2010 at 11:11 am
Thanks for the question, and the explanation of why the explanation seemed so weird.
December 28, 2010 at 11:04 am
Hugo Kornelis (12/23/2010)
December 28, 2010 at 10:56 am
I like questions like this, easy and lots of points, thanks!
December 28, 2010 at 10:48 am
I agree with the others, that without the mention of Britain in the question, the date is perfectly valid and option 1 should have been the correct answer.
December 28, 2010 at 10:46 am
Don Bernstein (12/22/2010)
EXEC ('SET IDENTITY_INSERT IDDemo ON')
INSERT IDDemo (pk_ID, Textdata) Values (4, 'This fails')
When I run it (sql2005), I get an error: Cannot insert explicit value for...
December 22, 2010 at 10:17 pm
Viewing 15 posts - 346 through 360 (of 717 total)