Viewing 15 posts - 5,491 through 5,505 (of 6,036 total)
Does your passport identify you completely?
And what else do you need to identify a person?
March 17, 2006 at 6:39 am
First Name, Second Name, Last Name, Date of Birth.
What else do you have in your passport?
March 17, 2006 at 6:30 am
Can you name any entity with more than 10 different profiles to describe it?
March 17, 2006 at 6:18 am
Seems, i explained the reason clearly:
"a table with a load of columns"
It's against any of relational database rules and all of them together.
So it's failure. And there is no point...
March 17, 2006 at 1:07 am
Not only you've been drinking today. ![]()
March 16, 2006 at 4:32 pm
> the second one cannot be avoided because of the another 1:N relationship between #tblAccount and #tblB.
?????
In the query we have:
ac.ID = a.ID = b.ID
"group by ac.id" actuall means...
March 16, 2006 at 2:22 pm
You mean SQL2000 or your application running against SQL2000?
SQL2000 does not have such feachure.
And if you need it for your application you need to develop it.
Unless somebody will give...
March 15, 2006 at 5:23 pm
> Hope this helps. (at least helps more than telling you that "you already failed")
Probably helps. For today.
And leads to a deeper trouble tomorrow.
"The road to hell is paved with...
March 15, 2006 at 5:17 pm
There is a condition:
where tbc.userblogID in(select UserBlogID from tbl_userBlog where UserID = 1 and active =1 and publicflag = 1)
This allows only to return BlogNames with existing comments.
So...
March 15, 2006 at 3:30 pm
select tub.userblogID , tub.blogname, count(tbc.UserBlogID) as commentcount
From tbl_BlogComments tbc
INNER JOIN tbl_userBlog tub ON tub.userblogID = tbc.UserBlogID
where tbc.userblogID in(select UserBlogID from tbl_userBlog where UserID = 1 and active =1...
March 15, 2006 at 2:42 pm
> a table with a load of columns
Stop right here.
You don't need to go anywhere further.
You have already failed.
March 15, 2006 at 2:31 pm
If this is a botleneck in your SP performance you are lucky!
You must have fastest SPs in the world!
Look in the execution plan of your SP. You must have find...
March 14, 2006 at 4:51 pm
It's really incompartible things.
It's like to ask "what is your con and pro for using CAR and BOAT?"
As you can see UDF just does not work where VIEW should be...
March 14, 2006 at 2:39 pm
You know, people invented data normalization not only to deliver some exercises to their bored brains.
Sometimes it's really useful.
March 14, 2006 at 2:35 pm
Viewing 15 posts - 5,491 through 5,505 (of 6,036 total)