|
Step 3: Create a Sybase User for the SAMPLE database
- Create a Sybase user named WSDEMO, with a password of wsdemo1, for the SAMPLE database.
Using Sybase's GUI or isql command line interface, type:
- sp_addlogin WSDEMO, wsdemo1, SAMPLE
- go
Next, add the user to the database and grant user permissions:
- use SAMPLE
- go
- sp_adduser WSDEMO
- go
- grant all to WSDEMO
- go
Please see Sybase documentation for more information on GUI or command line options.
 
- Be sure you use all upper case letters when creating the WSDEMO user.
- Be sure you use all lower case letters when creating the wsdemo1 password.
|