Forum Replies Created

Viewing 15 posts - 511 through 525 (of 748 total)

  • RE: How to configure SQL authenticate user via specific Domain Controller

    Joie Andrew (2/24/2010)


    If it was authenticating against the domain that the server was a member of, then there is a preferred dc key that you can set in the registry...

  • RE: URGENT---Why I adding new user failed?

    I just talked to AD guys, one of the clue is: How SQL talks to AD to authenticate a valid user? is it possible to manually configure (hardcode it) to...

  • RE: URGENT---Why I adding new user failed?

    There must be something wrong with the ID, INTL\RXie, I dropped it and then try to re-add it, it now pops up "Windows NT user or group 'INTL\Rtxie' not found.

    Although...

  • RE: Performance issue

    Here is the sqlplan file, thanks to all replies.

  • RE: URGENT---Why I adding new user failed?

    rudy komacsar - Doctor "X" (2/23/2010)


    what does the output of the following produce:

    exec sp_logininfo 'INTL\Rtxie'

    Msg 15404, Level 16, State 11, Procedure xp_logininfo, Line 62

    Could not obtain information about Windows NT...

  • RE: URGENT---Why I adding new user failed?

    rudy komacsar - Doctor "X" (2/23/2010)


    Please post the SQL executed to return the 2 successful executions and the results.

    Do you want to see the 2 results return by exec...

  • RE: URGENT---Why I adding new user failed?

    rudy komacsar - Doctor "X" (2/23/2010)


    Please post the SQL executed to return the 2 successful executions and the results.

    Sorry I don't quite get you, what do you want me to...

  • RE: URGENT---Why I adding new user failed?

    rudy komacsar - Doctor "X" (2/23/2010)


    I would first try to execute:

    exec sp_validatelogins

    If this does not produce any results the next step is to retry xp_logininfo:

    exec xcp_logininfo 'intl\abd

    THIS RETURNS ONLY TWO...

  • RE: URGENT---Why I adding new user failed?

    exec xp_logininfo 'INTL\RTXIE'

    exec xp_logininfo 'Intl\rtxie'

    exec xp_logininfo 'INTL\Rtxie'

    exec xp_logininfo 'INTL\rtxie'

    ALL RETURNS

    Msg 15404, Level 16, State 11, Procedure xp_logininfo, Line 62

    Could not obtain information about Windows NT group/user 'INTL\rtxie', error code...

  • RE: Performance issue

    arr.nagaraj (2/22/2010)


    Having charindex function will ensure that index on a.account

    doesn't get used.

    Indexes are not effective when you have 'OR' conditions as well.

    Can you please post the query plan that you...

  • RE: Performance issue

    foxxo (2/22/2010)


    Cast the empnum's as INT and remove the 0000 concatenation / string comparison.

    Remove the CHARINDEX function and try "a.account LIKE '%' + @query + '%' "

    Thanks, I...

  • RE: Performance issue

    Sorry, I didn't mean to, actually I didn't even know that the post was posted so many times:w00t::w00t::w00t:, I had trouble on posting it for the whole day, it always...

  • RE: URGENT---Why I adding new user failed?

    Lynn Pettis (2/22/2010)


    What version of windows is being used? IIRC Windows 2003 and newer are actually case sensitive with regards to user names. (But then I may be...

  • RE: URGENT---Why I adding new user failed?

    Is it possible that this machines doesn't have rights to query the other domain?

    Thanks Steve, how do I determine this? it has no problem adding other users from other...

  • RE: URGENT---Why I adding new user failed?

    ok, i believe THIS IS A SQL PROBLEM, INSTEAD OF ACTIVE DIRECTORY PROBLEM

    we know Exec xp_logininfo 'intl\abc'

    will tell you if the user is a valid user

    for this particular...

Viewing 15 posts - 511 through 525 (of 748 total)