Viewing 15 posts - 1 through 15 (of 33 total)
Yes, I have a list of tables that I load into a recordset to pull from using an order by clause.
May 17, 2005 at 3:13 pm
...in query workbench...
The question said "...in the Query Analyzer..."
December 16, 2004 at 7:14 am
Steve, your right (I can admit it ). I checked, it is by design. SQL will set the recovery model of msdb to simple...
November 2, 2004 at 10:58 am
Well that question would need answers right...
1. I should have learned Oracle.
2. Nothing, what's playing on showtime?
3. The sun will come out...tomorrow.
4. Britney Spears is a man baby.
The Correct...
November 2, 2004 at 6:58 am
But while the answer sucked.. The question was valid. The other three choices do not give you what you are looking for. We know that...
October 21, 2004 at 6:43 am
umm
CREATE TABLE foo
(foo_id int identity,
name varchar(10),
age int)
insert foo(name, age)
select 'Foo', 20 union all
select 'Bar', 19 union all
select 'Hello', 20 union all
select 'World', 20
SELECT TOP 1 WITH TIES *
FROM foo
ORDER BY...
October 14, 2004 at 9:12 am
But as stated above, using the table foo and not people returns:
Invalid object name 'foo'.
Not:
October 14, 2004 at 7:25 am
I see nothing wrong with this question. Whether or not northwind or pubs should be there or not is not really at issue. The question asked "Which of the following...
October 13, 2004 at 6:34 am
haha I was going to say the same thing. Oh well.
October 8, 2004 at 6:32 am
No the default does listen on 33854. Named instances listen on the first available after that.
June 23, 2004 at 8:43 am
Good observation, you must own code reviews.
May 18, 2004 at 8:26 am
Not sure which article you are refering too, but check this one out just in case:
http://support.microsoft.com/default.aspx?scid=kb;en-us;301901
IT says that ,"Analysis Services uses TCP port 2725. For backward compatibility, Analysis Services...
April 30, 2004 at 1:05 pm
Viewing 15 posts - 1 through 15 (of 33 total)