• SELECT

    d.StartDate_Time,

    date_string = p.[Year]+'-'+p.MonthNum+'-'+p.[Day]+' '+p.[Time],

    date_datetime = CONVERT(DATETIME,p.[Year]+'-'+p.MonthNum+'-'+p.[Day]+' '+p.[Time],120)

    FROM (SELECT StartDate_Time = 'Wed Sep 01 03:00:00 2010') d

    CROSS APPLY (

    SELECT

    [Year] = RIGHT(d.StartDate_Time,4),

    x.MonthNum,

    [Day] = SUBSTRING(d.StartDate_Time,9,2),

    [Time] = SUBSTRING(d.StartDate_Time,12,8)

    FROM (VALUES ('01','Jan'),('02','Feb'),('03','Mar'),('04','Apr'),('05','May'),('06','Jun'),

    ('07','Jul'),('08','Aug'),('09','Sep'),('10','Oct'),('11','Nov'),('12','Dec')) x (MonthNum, MonthName)

    WHERE MonthName = SUBSTRING(d.StartDate_Time,5,3)

    ) p

    “Write the query the simplest way. If through testing it becomes clear that the performance is inadequate, consider alternative query forms.” - Gail Shaw

    For fast, accurate and documented assistance in answering your questions, please read this article.
    Understanding and using APPLY, (I) and (II) Paul White
    Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden