Viewing 15 posts - 451 through 465 (of 599 total)
LEFT OUTER JOIN provcom c on a.PROVNO1 = c.providerno and a.FYE = c.dteFiscalYearEnd
May 25, 2006 at 2:00 pm
Answer is right here: http://msdn2.microsoft.com/en-us/library/ms173829.aspx
(check the chart)
May 24, 2006 at 8:58 am
Absolutely (as long as you have MAPI correctly configured). Have a look at xp_sendmail:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_xp_aa-sz_6hbg.asp
May 23, 2006 at 3:26 pm
Do the select into a temp table and then select / group on that.
May 22, 2006 at 1:51 pm
sure
INNER JOIN inserted i ON
t.Col1 = i.col1
and
t.col2 = i.col2
and
t.col3 = i.col3
There's also the CHECKSUM function that you might want to look into.
May 22, 2006 at 11:48 am
" I will only know the value for col2."
I don't understand this. Are you saying that there are other possible combinations of values for Col1 and Col2? If so, define...
May 18, 2006 at 12:58 pm
select Col1, Col2, Col3
from Tab1
where
Col2 = 'Q'
or
Col1 = 'B'
select Col1, Col2, Col3
from Tab1
where
Col2 IS NULL
May 18, 2006 at 12:35 pm
May 18, 2006 at 7:48 am
Why in the world not?
Wrapping things up in a begin..end statement is a perfectly acceptable, workable and logical solution.
May 17, 2006 at 11:03 am
Assuming YYYYMM column is a string, try this:
where
cast(YYYYMM+'01' as datetime) >=
May 17, 2006 at 10:31 am
Looking at the execution plan is an excellent start. Here's a good reference to help understand it:
http://www.sqlservercentral.com/columnists/jsack/sevenshowplanredflags.asp
May 17, 2006 at 9:36 am
"Exists" is just a boolean evaluator. So all you're saying is that as long as there is one value that matches the where condition of the sub-query, return values that...
May 17, 2006 at 9:05 am
Viewing 15 posts - 451 through 465 (of 599 total)