Forum Replies Created

Viewing 15 posts - 16 through 30 (of 134 total)

  • RE: Need formatted output

    Thanks John.

    Its perfectly working for me.

    I appreciate for your quick response. Thank you so Much...

    Regards,

    Abhas.

  • RE: Need formatted output

    Thanks John,

    The data will be exported into flat file. Is it possible to do in using T-SQL only?

    Abhas.

  • RE: Find previous date from table.

    Thank you Anthony.

  • RE: calculate and display week between two dates

    Thanks twin

    i resolved the issue. Same your solution worked.

    DECLARE @StartDate SMALLDATETIME = '1/11/2016'

    declare @tempdat table(repdate smalldatetime)

    insert into @tempdat values ('10/26/2015')

    insert into @tempdat values ('10/29/2015')

    insert into @tempdat values ('11/1/2015')

    insert into...

  • RE: connect with oracle

    Hi,

    I am able to sort this issue. We need to add connection string in tnsnames.ora files.

    sample is as below:

    TEST =

    (DESCRIPTION =

    (ADDRESS_LIST =

    ...

  • RE: split value into two columns

    Hi Wanger, Thanks for suggestion.

    The format will be same.such case will not happen.

    SELECT LEFT(FullName, charindex(' ', FullName) - 1) i am able to find before space.

    Lokking now for...

  • RE: split value into two columns

    Luis, There will be only one space, 🙂

    Thanks.

  • RE: Incremental Load

    Thanks Guys.

    I want to go with MERGE.

    I am thinking first to find max DATE_MODIFIES from target and trying to fetch data greater than DATE_MODIFIES from source and inserting into...

  • RE: Incremental Load

    DATE_MODIFIED column is there.

  • RE: concatenate image with varchar

    Hi Lowell,

    I will use this in crystal report which will display in pdf format.

    Thanks

  • RE: concatenate image with varchar

    Thanx Lowell,

    By the way any other option to do this? i need to display output as test1(checkbox)test2(checkbox). Client want just output,i can use any other methos as well.

    Thanks

    Abhas.

  • RE: concatenate image with varchar

    yes, Iamge is binary value like 0x0000A38C00BEB787....

    Thanks,

    Abhas

  • RE: concatenate image with varchar

    Thannks Lowell

    Actually i want to display as test + Checkbox+ test1 +checkbox +test2.

    here i have stored checkbox as image in the database. I am displaying as test , test1, test2...

  • RE: Split string

    Thanks Phil for your suggestion. I am able to split lastName as Pawar by using below code of stuff.

    SUBSTRING(Name,1,FINDSTRING(Name,",",1) - 1)

    but not able to identify FirstName as Ramesh. M trying...

  • RE: Split string

    Names are well formatted.

    Thanks

Viewing 15 posts - 16 through 30 (of 134 total)