Here is what I came up with. There may be something much
easier (I tend to go the hard way):
create table test1 (fullname varchar(128))
insert into test1 values ('Smith/John');
SELECT
SUBSTRING(fullname,CHARINDEX('/',fullname)+1,128) as Fname,
SUBSTRING(fullname,1,CHARINDEX('/',fullname)-1)...