Hi Dwight,
easy as:
SELECT datename(m,getdate()) + ' ' + cast(year(getdate()) as char(4))
OR
SELECT datename(m,getdate()) + ' ' + datename(yyyy,getdate())
I would guess that the 2nd version might be a bit slower, but not sure what SQL is doing internally to return the year...