Forum Replies Created

Viewing 15 posts - 55,891 through 55,905 (of 59,078 total)

  • RE: From flat file to table

    Heh... did for me... data is pretty well broke...

  • RE: Uploading Pictures in MSSQL 2000

    Thanks for the info guys... like I said, I may have to reevaluate my position on where to store images.

  • RE: Picking up the first and last record

    Not sure why you have the first EndDate becoming a start date but whatever... the following will do what you ask for...

     SELECT Client_NHI, MIN(End_Date) AS StartDate, MAX(End_Date) AS EndDate
       FROM...
  • RE: Compare two varchar arrays one character at time until different

    Nope... I'm pretty well spammed out on RAC.  How about posting the T-SQL solution that it's supposed to replace?

  • RE: Add quotes around every value

    Would have been a bit helpful to know that up front.

    First, whatever you do... do NOT use dynamic SQL for this because you are allowing the user to type whatever...

  • RE: General tips for clearing cursors

    Heh... if you run into a "toughy", c'mon back... lot's of good folks waiting in the wings...

  • RE: T-SQL Recursion in SQL 2000

    And, don't use recursion to solve this... SQL Server 2000 cannot go "N" levels... it's limited to only 32 levels and then "BOOOOOOM!"

  • RE: Problems with free text feild

    Based on the original code you posted, you shouldn't have a problem...

    The @bfr_tag    holds 634 characters.

    @general_notes holds a max of 2500 characters.

    @day_notes      holds a max of 2500 characters.

    @nite_notes      holds a...

  • RE: A column for serial number

    Thank you for the feedback...

    If you are still having problems or need to use "row_number" (now that we know you are using 2k5) instead of an Identity column, please post...

  • RE: Independence Day

    Actually, they did... nice red/white/and blue google with a bald eagle and the whole shootin' match.  I believe Google logins sense which country you are in to allow for if...

  • RE: Uploading Pictures in MSSQL 2000

    Thanks for the info Michael... I'm not much of a "web guy"... what makes it difficult to use "file shares" in the Web world... asking because I don't know and...

  • RE: Problems with free text feild

    Remi is spot on both in statement and method suggested... you still don't need a cursor to do that.  Do like remi recommended...

  • RE: Problems with free text feild

    First, you have a major bug in the code you posted... you don't create a value for @GenInfo_ID variable which means that you are populating the GenInfo_ID column of the...

  • RE: Add quotes around every value

    Serqiy is correct... is the stuff you putting into @List available in a table anywhere?  If so, we can resolve the whole table instead of using RBAR methods...

  • RE: selecting a large amount of data

    If you're talking about the method in the URL I provided and not the BOL solution, some indexes will certainly help once the tree for the whole DB is constructed. ...

Viewing 15 posts - 55,891 through 55,905 (of 59,078 total)