Viewing 15 posts - 91 through 105 (of 113 total)
my result there is just an example.
you can assume that the name same with country
name = country
February 11, 2005 at 3:27 pm
yes, it is a problem that the resultset is having blank column values! I want to remove those blank values in my resultset.
Any ideas how to remove them?
i used NOT...
February 11, 2005 at 3:26 pm
there are blanks in the returned rows!
What do diagnostic record counts show
ie:
select count(*) As CountNull from dbo.SAME_NAME_DOB_GENDER
where name is NULL
0 row
select count(*) As CountBlank from dbo.SAME_NAME_DOB_GENDER
where name = ''
43...
February 11, 2005 at 1:04 pm
select * from dbo.SAME_NAME_DOB_GENDER
where name is not NULL and name <> ''
February 11, 2005 at 12:32 pm
Hi Guus! Just wondering if you have the scripts? email me leonson@hotmail.com
Cheers!
>Script - there are some scripts doing this for you ( search the internet for >this ) basic steps;...
December 15, 2004 at 1:14 pm
Just wondering why this happen???
Luckily, I can see in one computer the list of users so that I can assign them...
December 2, 2004 at 12:54 pm
Thanks Guus! You're Right! That what I did and it's works now! =)
December 1, 2004 at 10:23 am
Thanks Greg!
Can you include your user defined function in DATE FUNCTION?
select dateadd(day,-1, MaxLoginTime('2004-11-20 00:55:41.000'))
got error msg:
Server: Msg 195, Level 15, State 10, Line 1
'MaxLoginTime' is not a recognized function name.
November 24, 2004 at 12:28 pm
just a small db...where is the box???
restore complete with errors...
November 23, 2004 at 12:35 pm
Here's the error log:
2004-11-18 15:31:21.84 spid11 1 transactions rolled back in database 'LEON' (7).
2004-11-18 15:31:21.95 spid11 Recovery is checkpointing database 'LEON' (7)
2004-11-18 15:31:23.32 spid3 Recovery complete.
2004-11-18 15:31:23.32 spid3 SQL global...
November 23, 2004 at 12:33 pm
Thanks for the link but in the article it didn't explain what the cost really mean.
November 12, 2004 at 12:51 pm
Viewing 15 posts - 91 through 105 (of 113 total)