Viewing 15 posts - 421 through 435 (of 463 total)
Give some other table name as the alias for the nested table (lets say tli2)
U mean to say this is also giving the same error?
SELECT c.claimnumber AS claimnumber,
tli1.UpdateTime as TranLineItemUT,
FROM...
---------------------------------------------------------------------------------
August 27, 2009 at 11:52 pm
Not sure if I am overlooking this, the last 'ON' cluase is,
ON c.ID = t1.ClaimID
Dont you think it should be tli1 instead of t1 in t1.ClaimID?
Ohh sorry, you cant...
---------------------------------------------------------------------------------
August 27, 2009 at 5:31 am
Just to add to what Ian is saying, T-SQL supports two join syntaxes, SQL-89(with comma) and SQL-92(ANSI-SQL-92 compliant) (Inner Join). I think both of them are supported in SQL SRVR...
---------------------------------------------------------------------------------
August 23, 2009 at 1:12 am
winash (8/21/2009)
It does look like a bug. There is a bug already logged on connect (http://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=356617) that seems to be the same issue
Thanks Winash, that was really helpful.
I assume...
---------------------------------------------------------------------------------
August 21, 2009 at 8:27 am
winash (8/21/2009)
---------------------------------------------------------------------------------
August 21, 2009 at 5:08 am
Do you have any unique key for the table?
---------------------------------------------------------------------------------
August 19, 2009 at 8:59 am
hi,
I got what you are trying to achieve. I am not sure if I can give any solution to the problem with your approach, but a small suggestion in...
---------------------------------------------------------------------------------
April 22, 2009 at 2:49 pm
Hi ,
Just a wild guess, did not try reproducing it.
I think since we dont have that 'Set NoCount ON', after every select the message about the number of rows...
---------------------------------------------------------------------------------
April 22, 2009 at 2:43 pm
Yeah, it could be the reason that your RID entry with minimum date is getting filtered out because of that criteria and third table join.
P.S:Moreover if not in this...
---------------------------------------------------------------------------------
April 16, 2009 at 12:00 am
IS there any unique id between Tomato soup- chicken, green salad-Fish, and Medit salad-Ribs?
---------------------------------------------------------------------------------
April 15, 2009 at 4:31 am
Yes, you should be able to install it. I think there is some concept called side by side execution where you can run both 2000 and 2005
---------------------------------------------------------------------------------
April 3, 2009 at 4:58 am
Hi,
Sorry not a solution.. in case if it rings any bell to anyone who looks at this post..
BOL defn of default schema on SQL Server 2000 and SQL Server...
---------------------------------------------------------------------------------
March 31, 2009 at 1:50 pm
Hi,
Just a thought at a very higher level..
select '(5) - ' , * from tv
by default, tv will be searched under 'dbo' schema if we dont mention the...
---------------------------------------------------------------------------------
March 31, 2009 at 12:04 pm
Hi Koneru,
U gotta give table definitions if any, data insertion scripts (test data),the query you are writing, the ouptput and the desired output.. for any kind of help here....
---------------------------------------------------------------------------------
March 28, 2009 at 5:12 am
florian.reischl (3/7/2009)
No, they are not always same. If you use a LEFT JOIN the criteria within the JOIN part will only be used to restrict the right side.
I extended...
---------------------------------------------------------------------------------
March 7, 2009 at 2:27 pm
Viewing 15 posts - 421 through 435 (of 463 total)