Viewing 15 posts - 1,216 through 1,230 (of 1,923 total)
and for you request, look at Example B in the link i provided...
Excerpts from MSDN link
B. Using a DML trigger with a reminder e-mail message
The following example sends an e-mail...
August 30, 2010 at 7:53 am
Hi there..did u try TRIGGERS?
August 30, 2010 at 7:51 am
Probably there is a straight-forward way, but this is what i have come up with :
select replace(cast ( convert(decimal(25,2),25.00) as varchar) , '.' , ',') Comma_Value
August 30, 2010 at 2:47 am
dint this work?
select cast( 25.000000 as decimal(25,2))
August 30, 2010 at 2:27 am
DEXTER !! he is not a Super Hero technically or physically but mentally, he is the HERO of the SUPER Lab 🙂 awesome innovations, awesome inventions, he really is a...
August 29, 2010 at 10:55 pm
jcharrasqueado (8/29/2010)
That worked, I swear I tried it
It happens, Tom.. More than the order at the GROUP BY clause, you perhaps needed some more coffee 😀
August 29, 2010 at 10:20 pm
Dint SUM and GROUP BY help ?
Like ?
selelct invoicenumber, invoicedate, sum(invoice) invoicetotal
from table
group by invoicenumber, invoicedate
August 29, 2010 at 8:59 pm
GETDATE wont remain constant even if it is in a loop... if you want to maintain that as constant, store it in a varibale before the loop and then...
August 29, 2010 at 8:57 pm
Quatrei.X (8/27/2010)
Use tally table or CTE... which is a better practice? (although I'm already thinking of CTE but still wanna hear from you guys)
Jeff Moden's CTE in his dbo.DelimitedSplit8K
WITH
...
August 27, 2010 at 2:29 am
scottichrosaviakosmos (8/26/2010)
but slight issue, actually i m displaying this value in an application so i want all null valued columns to be displayed in a different...
August 26, 2010 at 8:13 pm
Karl-452938 (8/26/2010)
But I hoped there would be an easier way to achieve that something like (SELECT LIST...)
Karl, did u check the solution posted above your post?
August 26, 2010 at 10:01 am
FRO XML , can be used like this:
declare @tab table
( id int, remark varchar(100))
insert into @tab
select id, remark from
( select...
August 26, 2010 at 9:48 am
We can do it using FOR XML...
Please go through this following article and helping us help you??
CLICK HERE FOR FORUM POSTING ETIQUETTES - BY JEFF MODEN[/url]
When u do so,...
August 26, 2010 at 9:21 am
Viewing 15 posts - 1,216 through 1,230 (of 1,923 total)