Hi,
In order to change the authentication from one type to the other you can run the following SQL queries against the project_DB tabkles:
SELECT 'exec sp_changeobjectowner ' + TABLE_NAME + ', td'
FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'dbo'
The output of this query is then a series of queries to be run to change all the table ownership to the td schema. They are copied from the results table and pasted into a new query and then run against the project DB tables to change them all.
If you need to change from td to dbo, then you would reverse where the td and dbo are in the above query (placing the dbo in place of the td at the end of the first line and the td in place of the dbo in the second line.
After the queries are run then refresh the project db and check that all the tables were changed from dbo. to td. or vice versa.
Hope this helps,
Dan