Viewing 15 posts - 46 through 60 (of 74 total)
DECLARE @PVC_LOGIN_USERVARCHAR(40),
@PVC_APPLICATION_IDVARCHAR(40),--yet to finish
@PVC_PROGRAM_NAMEVARCHAR(40),
@PI_RET_STATUSINT,
@PVC_RET_MSGVARCHAR(500),
@PI_RET_ERRORNUMINT,
@PVC_APPLICATION_NAMEVARCHAR(50), @pvc_dest int;
my declaration is mentioned above
October 26, 2010 at 12:34 am
Great!!!!!!!!!!!!!... Working fine... Thanks chris....Thanks a lot...
October 21, 2010 at 8:33 am
create table trp_table (from_date varchar(15),to_date varchar(15))
insert into trp_table(from_date,to_date)
select CONVERT(VARCHAR(11), LTRIM(RTRIM('01-JUL-2010')), 106), CONVERT(VARCHAR(11), LTRIM(RTRIM('22-JUL-2010')))
UNION ALL
SELECT CONVERT(VARCHAR(11), LTRIM(RTRIM('15-JUL-2010')), 106), CONVERT(VARCHAR(11), LTRIM(RTRIM('20-JUL-2010')))
UNION ALL
SELECT CONVERT(VARCHAR(11), LTRIM(RTRIM('11-FEB-2010')), 106), CONVERT(VARCHAR(11), LTRIM(RTRIM('27-JUL-2010')))
DECLARE @lb_error_flag BIT
SELECT...
October 21, 2010 at 7:43 am
then how to convert a varchar type variable into datetime type?..
October 21, 2010 at 6:57 am
hai chris..
both are varchar types.... specification is like tht where i cant change that as datetime data type...
October 21, 2010 at 6:45 am
ya...i implemented this... works fine... Thanks chris...otherwise i wud have done an ugly coding.. thanks gail shaw
October 21, 2010 at 5:08 am
oh....Thanks a lot.... thanks Chris and gail....
October 21, 2010 at 4:47 am
how it possible?...
UPDATE GL_CALENDAR_LINES
SET CAL_HEADER_ID = @PVC_CALENDAR_HEADER_ID,
PERIOD_NAME = @lvc_period_name, FROM_DATE =...
October 21, 2010 at 4:45 am
GilaMonster (10/20/2010)
Why do you want...
October 21, 2010 at 4:24 am
GilaMonster (10/16/2010)
What do you...
October 16, 2010 at 8:12 am
http://support.microsoft.com/kb/139444
refer the above link... 😉
October 16, 2010 at 7:04 am
Viewing 15 posts - 46 through 60 (of 74 total)