Forum Replies Created

Viewing 15 posts - 631 through 645 (of 1,114 total)

  • RE: Simple Extended Procedure

    It's waaay easy to crash your server with an xp.

    I am not getting you.

  • RE: Text Data Type & Stored procedure

    Yes, I am using 2000 only.

    I will check it and come back to you.

    Thanks a lot for your prompt reply.

  • RE: Text Data Type & Stored procedure

    I got the below error message.

    TEXT and IMAGE datatypes are invalid for parameters or local variables.

    Inputs are highly appreciable !

  • RE: Text Data Type & Stored procedure

    Ok.

    Can you tell me what could be the reason for the error message ?

  • RE: how to display datedate format like dd-MMM-YYYY

    select datepart(dd,columnname) +'-'+datepart(mm,columnname) +'-'+datepart(yy,columnname)

    Check it out.

  • RE: Text Data Type & Stored procedure

    Sergiy,

    I may be wrong because of my urgent need. I hope you can understand my code now.

    create procedure Message_Insert

    (

    @START_TIME datetime,

    @END_TIME varchar(100),

    @ERROR_MSG text

    )

    as

    Begin

    Insert into LOG_TABLE (START_TIME,END_TIME,ERROR_MSG)

    Values(@START_TIME,@END_TIME,@ERROR_MSG)

    End

  • RE: Simple Extended Procedure

    Any Inputs ?

  • RE: SP running slow

    Note that, this may produce a list of dates. This is because, sysstatistics table maintains one or more entries for each of the index columns of the table. It may...

  • RE: SP running slow

    Theare are lot of reasons. so as some of our forum member suggested, do that one.

    But before doing all those things , just take a look on Query plan.

    Set showplan...

  • RE: Changing row format

    As Christoper suggested ,read that article.

    You can do it without using any loops.

  • RE: US Client Expectation

    Watching American movies etc might be good. Or maybe even radio since then you can just concentrate on listening.

    Ya, I have started to watch english movies which is...

  • RE: Need help on preparing PPT

    Who is your audience for the presentation?

    My management.

    how to brief 'Problem faced and solution' part ?

    My question is

    What are all the points comes under Problem faced ?

    What are all...

  • RE: TempDB size

    Also , i have some questions on TempDB.

    1) what is the best size of TempDB ? The answer may be 'it depends',But if anybody added some valid points then it...

  • RE: Tally Table - Splitted values

    ID = @ID OR pF = @pF OR ClassID = @ClassID obviously.

  • RE: Tally Table - Splitted values

    User may pass all values or sometime they won't pass any values.

    If they didn't pass any value then we need to pull all the data, if they pass any...

Viewing 15 posts - 631 through 645 (of 1,114 total)