Forum Replies Created

Viewing 15 posts - 196 through 210 (of 514 total)

  • RE: User Migration

    Although I see nothing wrong with the script, there is a perferred method.

    So I suggest that you use the method recommended by MS which is to use the sp_help_revlogin procedure.

  • RE: Query help needed ...

    If you want a 2000 version of the query perhaps you should ask for one (Or offer one yourself) I don't see the point in being critical of a...

  • RE: Forum Etiquette: How to post data/code on a forum to get the best help

    You realize that the only ones who will read that article are those that know how to post 🙁 However, is it just me or did Jeff's post of...

  • RE: HELP --- SQL Programming

    Oh great... Helping a Bengal. Hoping to be at the 12/2 game 🙂

  • RE: HELP --- SQL Programming

    Pittsburgh (EST) so I have a few hours yet, and I won't be back to work until next Monday. Thanksgiving Holiday. I am sure I will check in...

  • RE: HELP --- SQL Programming

    Ok. Then that is the exact opposite that I thought you wanted.

    The index should be ASC not descending, and the part where the substrings are needs adjusted slightly. ...

  • RE: HELP --- SQL Programming

    kipp (11/20/2007)


    awesome it works!!

    THe only thing it is doing is the last date is not getting populated...

    11256.001 1995-07-05 00:00:00

    11256.001.01 1995-07-05 00:00:00

    11256.001.02 NULL

    11256.001.03 NULL

    11256.001.04 NULL

    it is flowing down to .03 and...

  • RE: HELP --- SQL Programming

    Do you have this line?

    @dt = ISNULL(proj_start_dt,@DT),

  • RE: HELP --- SQL Programming

    Can you post your final code, because what I have does work.

    Before:

    11256.001.042006-01-01 00:00:00NULL

    11256.001.03NULLNULL

    11256.001.02NULLNULL

    11256.001.011995-07-05 00:00:001996-05-04 00:00:00

    11256.0011995-07-05 00:00:001996-05-04 00:00:00

    After:

    11256.001.042006-01-01 00:00:00NULL

    11256.001.032006-01-01 00:00:00NULL

    11256.001.022006-01-01 00:00:00NULL

    11256.001.011995-07-05 00:00:001996-05-04 00:00:00

    11256.0011995-07-05 00:00:001996-05-04 00:00:00

  • RE: HELP --- SQL Programming

    DROP TABLE #proj -- my temp table

    CREATE TABLE #Proj(

    [Proj_ID] [varchar](50) NOT NULL,

    [Proj_Start_Dt] [smalldatetime] NULL,

    [Proj_End_DT] [smalldatetime] NULL,

    CONSTRAINT PK_Proj PRIMARY KEY CLUSTERED

    ...

  • RE: HELP --- SQL Programming

    kipp (11/19/2007)


    ok, this is what I have, but it does not seem to be updating for some reason...

    DROP TABLE proj_id_11256; -- my temp table

    SELECT * INTO proj_id_11256

    FROM PROJ order...

  • RE: HELP --- SQL Programming

    Just makes it a little harder, but this was a trick that I was shown a few weeks back.

    /*

    CREATE TABLE [tblTest](

    [ProjProjID] [varchar](50) NOT NULL,

    [ProjStartDt] [datetime] NULL,

    [ProjEndDT] [datetime] NULL,

    CONSTRAINT [PK_tblTest]...

  • RE: HELP --- SQL Programming

    Can you change the clustered index on the table?

  • RE: Rearrange Identity values

    I'm with Jeff on this. Why do you need to do this? But more that that, have you verfied there are no FK's against this table?

  • RE: Index problem! Please guide

    Thanks Jeff!

    Even the blind squirrel occasionally finds a nut 🙂

Viewing 15 posts - 196 through 210 (of 514 total)