create table TextTest
(
VarCharCol nvarchar(max)
, NTextCol ntext
)
go
exec sp_columns 'TextTest'
select ColumnName = c.name
, ColumnDataType = t.name
from sys.columns c
join sys.systypes t on t.xusertype = c.user_type_id
where object_id = OBJECT_ID('TextTest')
我正在尝试连接到Active Directory服务器。但是,我收到了一个错误。 “登入错误”。实际上我的目的是添加用户。