Forum Replies Created

Viewing 2 posts - 1 through 3 (of 3 total)

  • RE: How to switch from Integrated Windows authentication to Basic authentication?..

    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...


    Kindest Regards,

    G. Mohr

  • RE: inserting decimal point

    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.


    Kindest Regards,

    G. Mohr

Viewing 2 posts - 1 through 3 (of 3 total)