vote up 3 vote down star

I have an ADSI connection in my SQL Server (2005) and I'm able to query it using openquery. Is there any way to create new accounts (and/or) edit existing ones?

Also, I'd like to have to use openquery to get to the data, but it looks like it's the only solution.

Here's a sample query that I'm using:

SELECT 
  samaccountname,
  department,
  mail,
   displayName,
  employeeid
FROM OPENQUERY( ADSI, 
  '
  SELECT samaccountname, department, mail,  displayName, employeeid
  FROM ''LDAP://DC=MyDomainName,DC=MyDomainExtension''
  WHERE objectCategory = ''Person'' and objectClass= ''user''
  '
)

Thanks

flag

@kev: This is a system wide edit/change. Do not rollback. – Rich B Mar 10 at 2:12
RichB - so who decided you could make a global change to what was already the more popular of the two tags to something less people were using? – Kev Mar 10 at 2:44
@RichB - more people using 'activedirectory' over 'active-directory' would seem to be a consensus which you are always so keen to use as one of your usual excuses. – Kev Mar 10 at 2:46
@Kev: The rules are very clear. Seperate words with a - in the tags. Active Directory is two words. – Rich B Mar 10 at 3:11
And your excuse for replacing the I'm contraction? – Kev Mar 10 at 3:13
show 6 more comments

2 Answers

vote up 5 vote down check

You can't (at least not using ADSI SQL).

ADSI SQL only defines a search interface, supporting nothing more than the SELECT statement (See MSDN: "SQL Dialect"). Also, OPENQUERY() is the only way to get the data in SQL Server.

To create objects, you will have to use another method (you can script against the ADSI interface quite well).

link|flag
vote up 0 vote down

you must gave over there a perfect text not this query this query is not working well

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.