Viewing 15 posts - 46 through 60 (of 65 total)
I just find it funny when it says "Select all that apply" but the selections are made up of radio buttons, not check boxes. 😛
June 11, 2008 at 7:09 am
furthermore, they still carry it over to SQL 2008, so definitely intentional 😀
May 19, 2008 at 11:50 pm
Interesting question, I got it right, but I don't think it's a glitch in SQL Server 2000 or 2005. in the Books Online (for 2005), it is mentioned in http://msdn.microsoft.com/en-us/library/ms186755.aspx...
May 19, 2008 at 10:05 pm
I'm lost, I chose SQL Server 2005 SP2, but it tells me it's wrong, and the correct answer is SQL Server 2005 RTM. But the explanation and the links all...
April 2, 2008 at 10:04 pm
The question doesn't specifically mentioned this is for SQL Server 2005, so I think we SQL Server 2000 users deserve some credit for answering "A" 😀
March 30, 2008 at 4:56 pm
I agree with you. Even the first option "This returns all combinations of all rows in both tables based on the columns joined in the ON clause." is correct...
May 14, 2007 at 5:01 pm
Yeah, my answered was reversed too. I answered false, now it says true.
October 26, 2006 at 5:01 pm
You should try using the Books Online, it's a great resource to learn. They even have examples.
This is what I usually do:
--do something here
IF @@ERROR > 0
RAISERROR('Your error message...
October 2, 2006 at 11:53 pm
Use the RAISERROR function
October 2, 2006 at 6:30 pm
CREATE PROCEDURE sp_myInsert1243
@odid12 int,
@rqty12 int,
@wqty12 int,
@rdate12 datetime,
@badge12 nvarchar(10),
...
October 1, 2006 at 5:18 pm
I know that, but if there are more than 1 record with the same description, you will get all of them, example:
Part #1 description is "Radio"
Part #2 description is "FM...
October 1, 2006 at 5:14 pm
Sorry, this is for SQL 2000, not 2005. Didn't realise I was posting under 2005
September 28, 2006 at 8:15 pm
I think you can't do it is because the PARTID returned from table PART has more than 1 record. you should use the keyword IN
CREATE PROCEDURE dbo.MyProcedure
AS
SELECT DISTINCT O.ODID, R.RCID,...
September 28, 2006 at 8:00 pm
Your network admin should know the LDAP server name.
May 8, 2006 at 7:26 pm
Viewing 15 posts - 46 through 60 (of 65 total)