i have problem how create my account in my cabal

Status
Not open for further replies.
Newbie Spellweaver
Joined
Nov 24, 2006
Messages
19
Reaction score
0
I raise a problem as the server and I create an account for me to enter the sql server I have no website to edit edit nor as if someone has an editor for creation of accounts or by creating it tells me how I would appreciate sql​
 
I just use the editor and see what happens when I try to create a duplicate account says this row Reay beach exist? I get it?​
 
Last edited:
Upvote 0
The "duplicate row exists" error in my tools means your xp_md5 support isn't working (sql errors are a bit rubbish and don't always mean much). Run this query in sql:

select account.dbo.fn_md5('test')

You will get a "NULL" back instead of an encrypted string and this is your problem. Open the "master" database and find xp_md in the "extended procuedures" folder and delete it. Now run the query below again making sure the path to the dll is correct (i used c:\xp_md5.dll).

EXEC SP_ADDEXTENDEDPROC 'xp_md5','c:\xp_md5.dll'
 
Upvote 0
Status
Not open for further replies.
Back