discuz!nt论坛搬迁后出错,提示:对象名 'dnt_templates' 无效

 

discuz!nt论坛搬迁后出错,提示:对象名 'dnt_templates' 无效,看了官方的精华区帖子( http://nt.discuz.net/showtopic-9397-1.html#156430),问题依旧。EXEC  sp_change_users_login 'update_one', '原用户名所有者', '新用户名所有者'  执行sql出错,提示 “服务器: 消息 15063,级别 16,状态 1,过程 sp_change_users_login,行 104  该登录已经在另一个用户名下拥有帐户。”
已经解决:
碰到一个用户在转移数据过程中出现孤立用户  网上搜索了许久 成功处理完毕  记录一下
首先选择本数据库  SQL查询分析器  输入以下代码执行:
程序代码sp_configure 'allow updates','1'
go
reconfigure with override
go
update sysobjects set uid=1 where uid<>1
go
sp_configure 'allow updates','0'
go
reconfigure with override
然后再到库内用户选项里把孤立帐户删除即可(可以直接删除原来数据库的所有者用户即可)
 

你可能感兴趣的:(sql,数据库,服务器,login,templates)