Viewing 15 posts - 23,191 through 23,205 (of 26,490 total)
Well, if we ever had IT, I think we lost IT. If anyone has found IT, please return IT.
Thanks! :w00t::P:w00t:
December 18, 2008 at 9:59 pm
No, no, no. It's "Thank you, now let's go out for a drink or two or ..."
December 18, 2008 at 8:13 pm
ALI (12/18/2008)
i got 64 rows with your query.
Then you did something wrong, because I just cut and paste the code from my post here at home and ran it. ...
December 18, 2008 at 7:41 pm
Why did you have to use a DISTINCT? My code returned exactly what you requested, based on your sample data 62 rows.
December 18, 2008 at 1:39 pm
dejanette.gordon (12/18/2008)
:hehe: Thanks for the laughs...my future posts on this forum will not be subpar.
I'm glad to see that you have a sense of humor! It is needed around...
December 18, 2008 at 12:23 pm
Your database and/or server is using a case-insensitive collation, therefore 'dd' = 'DD' is true. You could do something like this:
'dd' collate Latin1_General_BIN2 = 'DD' collate Latin1_General_BIN2
December 18, 2008 at 12:21 pm
You are comparing apples to oranges when comparing the action of REPLACE with UPPER. REPLACE doesn't know how big the returned string is going to be when the replacement...
December 18, 2008 at 12:16 pm
Windows Server 2000 may not run on future physical hardware, but you should be able, if needed, be able to install Windows Server 2000 on a virtual server.
In fact, you...
December 18, 2008 at 12:07 pm
Did you happen to take a full backup of each of the databases prior to detaching them to move them to a new server? If you no longer have...
December 18, 2008 at 11:54 am
GilaMonster (12/18/2008)
Hoekom nie? Ek het eek vraag in Fraans geseen. Nie maklik to antwoord nie.
Like I said, it's all Greek to me! 😛
December 18, 2008 at 10:45 am
srathna77 (12/18/2008)
SELECT
CASE
WHEN NoEMail NOT IN
(select emailaddress from Reports.dbo.OptOutEmailAddresses)
AND
substring
(Customer.Email,...
December 18, 2008 at 10:41 am
Here you go:
create table #client(client_id int, schedule_date datetime)
insert into #client values( 301, '2008-1-21')
insert into #client values( 301, '2008-1-30')
insert into #client values( 302, '2008-1-15')
insert into #client values( 302, '2008-1-21')
create table #date_dim(day_date...
December 18, 2008 at 10:38 am
Also, with the rows where dates look like 2008-12-01 null null, how do you know which one belongs to which client?
December 18, 2008 at 10:23 am
I did, and I asked why you need all the extra duplicate rows where you have 2008-12-01 null null?
Care to answer the question I asked? Can't help if...
December 18, 2008 at 10:21 am
Viewing 15 posts - 23,191 through 23,205 (of 26,490 total)