Viewing 15 posts - 20,851 through 20,865 (of 22,202 total)
That error could be a lot of things:
http://support.microsoft.com/kb/180843
http://support.microsoft.com/kb/304070
There are more. You'll need to investigate more on your end and send more information around the error to narrow it down.
March 13, 2008 at 7:00 am
The whole idea of using SQL Server as relational storage engine is to not store things in a comma seperated field. You're going to have problems with that. Instead it...
March 13, 2008 at 6:58 am
But to be utterly honest here, simply reeling off a few buzz words about what's new in SQL 2005 won't get you very far in an interview around most of...
March 13, 2008 at 6:53 am
You have to declare the data type when you create the procedure, so you should know what data type you're returning.
Or are you asking how to know what data types...
March 13, 2008 at 6:50 am
That is a bit odd. Usually there's a pretty direct correlation between cost & time. Also, looking at the two queries, I would expect the second query to have a...
March 13, 2008 at 6:21 am
While you fixed your problem, you still have another one lurking. You have an index on a column that has 30,000 identical values out of a 100,000 row table. That...
March 13, 2008 at 6:17 am
For some reason I thought it was Client Technology Preview, but Community makes more sense.
March 13, 2008 at 5:59 am
It was just one of the solutions he offered. It was only the second solution and it ran faster than his initial solution. He did spend a lot of time...
March 13, 2008 at 5:48 am
I hate to say it, at this point, I'm confused. I'd have to see structure & some data to better understand what you're trying to do and what's going wrong....
March 12, 2008 at 2:48 pm
It sounds like a paging problem.
One, of many, solutions that Itzik Ben-Gan offers in TSQL Querying:
--sets up data this way:
SELECT ROW_NUMBER() OVER(ORDER BY qty,empid) AS rownum,
empid,mgrid,qty
INTO #SALESRN
FROM dbo.Table;
CREATE UNIQUE CLUSTERED...
March 12, 2008 at 2:46 pm
The MAX statement isn't working now?
March 12, 2008 at 2:37 pm
Thanks. I'll check it out.
This thing jumped the topic track about 5 or six pages ago.
Just to put it back near the topic for a moment...
When being interviewed, how many...
March 12, 2008 at 10:24 am
No, I mean get rid of the sub-select entirely. Why would you need it? If the name is in the consultant table then you should be able to pull it...
March 12, 2008 at 10:21 am
Chris Morris (3/12/2008)
Grant Fritchey (3/12/2008)
March 12, 2008 at 9:45 am
Nice. I made my long bow in a course with the Royal Bowyer of England. It's only about 50-60lb pull, but it'll throw a bodkin point about 75 yards. Only...
March 12, 2008 at 9:26 am
Viewing 15 posts - 20,851 through 20,865 (of 22,202 total)