wajja
Grasshopper
Points: 13
More actions
October 15, 2006 at 9:11 am
#91877
Please Show me how to set passwords using SQL Codings(With few samples)
SQL ORACLE
One Orange Chip
Points: 27807
October 15, 2006 at 3:51 pm
#665922
Try sp_password
steve block
SSCertifiable
Points: 7698
October 20, 2006 at 8:40 am
#667083
Here's a sample of one I use from vb6:
gsSql = "EXEC sp_password '" + txtPassword.Text + "', '" + txtPWNew.Text + "', '" + txtUser.Text + "'"
gconGIMS.Execute gsSql
straight SQL:
EXEC sp_password 'old-password', 'new-password', 'user'
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply