Can I set Sitefinity database schema to other than dbo?

124 Views Asked by At

I am trying to set database schema to "tts" instead of default "dbo" for Sitefinity Project. But I don't know that this can work or not. Currently my project's database has dbo schema.

Please suggest me how can I change schema to "tts" & sitefinity project keep working well.

Thanks

1

There are 1 best solutions below

0
On

This post is older but you can still use the section outlined for the database: https://www.sitefinity.com/blogs/gabesumner/posts/gabe-sumners-blog/2011/06/02/how_to_deploy_sitefinity_4_to_shared_hosting

Snippet for changing dbo:

DECLARE tabcurs CURSOR
FOR
    SELECT 'dbo.' + [name]
      FROM sysobjects
     WHERE xtype = 'u'

OPEN tabcurs
DECLARE @tname NVARCHAR(517)
FETCH NEXT FROM tabcurs INTO @tname

WHILE @@fetch_status = 0
BEGIN

    EXEC sp_changeobjectowner @tname, 'charity'

    FETCH NEXT FROM tabcurs INTO @tname
END
CLOSE tabcurs
DEALLOCATE tabcurs