Viewing 2 posts - 1 through 2 (of 2 total)
Do you have SQL Server set up for both SQL Server and Windows on the server? To check this right click on the server, select properties,then tab Security. Under Authentication...
February 14, 2006 at 2:50 pm
#620845
Try it with just this simple TSQL code.
select SUBSTRING(vfield,1,3) + '.' + SUBSTRING(vfield,4,6) from yourtable
For example using string '111':
select SUBSTRING('111',1,3) + '.' + SUBSTRING('111',4,6)
returns: 111.
February 10, 2006 at 10:14 am
#620221