Viewing 4 posts - 1 through 4 (of 4 total)
In Select statement you can specify column heading, whereas in print statment you cannot.
Select 'Critical point passed' 'column1'
print 'Critical point passed'
May 25, 2010 at 3:29 am
Hi,
You can store the formats with the format id's in a table. Then you can match the input parameter with that table to get the format id and use dynamic...
August 20, 2008 at 7:34 am
Hi,
create table #Like_Test( Col1 varchar(5) )
go
insert #Like_Test values('_Cus')
insert #Like_Test values('Cus_')
insert #Like_Test values('C_us')
insert #Like_Test values('Cus')
insert #Like_Test values('Cu_s')
--select * from #Like_Test
select * from #Like_Test where Col1 Like '%Cu_%'
This query produces...
August 19, 2008 at 11:01 pm
Hi,
Nice articles.
I have tried with the steps given in that articles. Messeges are queued, but not sent.
Sent status is in "unsent" in sysmail_allitems table.
Thanks & Regards,
Krish.
August 19, 2008 at 4:54 am
Viewing 4 posts - 1 through 4 (of 4 total)