Sorry, that is not correct. We have a full farm using a sql Server
with SQL authentication. The SQL server is in a separate, completely
untrusted, AD forest.
The key to getting this to work is that you can't use the
configuration wizard on the SharePoint servers to create or join the
farm. You have to use psconfig on the command line for the initial
step to establish the link to the config database using SQL
authentication. Once you've done that, you can run the wizard, which
recognises that the server is already linked to the farm and can do
the rest.
Create farm (first server):
PSConfig -cmd -configdb -create -server (sqlservername) -database
(configdbname) -user (farmaccount) -password (password) -dbuser
(sqlauthaccount) -dbpassword (password) -admincontentdatabase
(admindbname)
Join farm (later servers):
PSConfig -cmd –configdb -connect -server (sqlservername) -database
(configdbname) -user (farmaccount) -password (password) -dbuser
(sqlauthaccount) -dbpassword (password)
The dbuser account must have been created in SQL Server with
dbcreator and securityadmin roles.
However, while it works, it's not a configuration I would recommend
without some strong reason why you need it that way.