Activity overview
Latest activity by jstrain
So I guess this part of one of the procs being altered is the source of the problem:
-- get Active directory listing
insert #ADSI_USERS
select UserId = sAMAccountName
,UserAccount = cn
,FirstName = givenname
,LastName = sn
,Path = adspath
from OpenQuery
(LS_ADSI,'<LDAP://ourdomain.org>;(&(objectClass=user)(displayName=*)(givenName=*)(sn=*));
sAMAccountName,cn,givenname,sn,adspath')
Thanks for looking into it. / comments
So I guess this part of one of the procs being altered is the source of the problem:
-- get Active directory listing
insert #ADSI_USERS
select UserId = sAMAccountName
,UserAccount = cn...
Problems with setting the transaction level to serializeable
We use DTS packages to compile scripts needed to upgrade our databases. This has worked fine until today so I believe this is related to all of the MS released security patches this week. I can i...