Forum Replies Created

Viewing 15 posts - 1 through 15 (of 16 total)

  • RE: How to split the value

    currently this row has three columns, one of the column could or could not have the value with comma delimited value, so i would like to parse this column, then...

  • RE: Question on SP

    thanks all

  • RE: Question on SP

    Incorrect syntax near '.'

    when i do select dbo.GetEvdate ('xxxxx'), it return value correctly.

    but when i do exec test '1111', dbo.GetEvdate ('xxxxx'), get syntax error.

    thanks

  • RE: Question on SP

    the SP doesn't return value, i try to create a table inside the SP and insert value, the function return a date, and i want to pass this to the...

  • RE: Free Query Tool

    thank you both

  • RE: Free Query Tool

    sorry for the confusion.

    Management Studio provided the overall server info, we don't want anyone be able to access it. Some persons just need to know the database structure, and...

  • RE: Does SSIS not handle the SQL variant type on transfer?

    Hi,

    I have the same warning. The package i try to create is export data to excel sheet. one of the column is sql_variant. Failed.

    Can someone help?

    thanks

  • RE: Use String Function

    I tried this but it gives me error Number is invalid table

  • RE: Use String Function

    no, it varies with the length

  • RE: Use String Function

    so how to retrieve the middle value, e.g. A104 and A101

    thanks

  • RE: Use String Function

    can you tell me what tally table is? thanks

  • RE: Use String Function

    some other option

    DECLARE @string varchar(200)

    SET @string = ',B110,A104,AUSL,'

    SELECT

    REVERSE(SUBSTRING(REVERSE(@string),2,CHARINDEX(',',REVERSE(@string),2)-2))

    SET @string = ',L101,A101,01,'

    SELECT

    REVERSE(SUBSTRING(REVERSE(@string),2,CHARINDEX(',',REVERSE(@string),2)-2))

  • RE: Use String Function

    yes,

    here is the pattern we have, i need to retrieve the right most field

    ,,,01,

    ,,,01,

    ,B110,A104,AUSL,

    ,B135,,DEN,

    ,,,03,

    ,,,AZ,

    ,,,MALA,

    ,,,BUR,

    thanks

  • RE: I/O error (torn page) detected during read

    i did "restore verifyonly ", return "the backup is valid", does that enough to tell the backup is good to restore?

  • RE: I/O error (torn page) detected during read

    if the error has been ongoing for a while, will the backup still valid? how to verify that? thanks

Viewing 15 posts - 1 through 15 (of 16 total)