Creating USoft Developer Tables in Sybase |
If you want to run USoft Developer on Sybase, USoft Developer must be able to create tables in it. To do this, you must have a Sybase account. To create the necessary accounts:
isql -Usa -P<password>
use master go sp_addlogin, <username>, <password>, <default_database> go use <database> go sp_adduser <user> go grant create table, create proc, create view to <user> go IMPORTANT: You have to specify the username in uppercase. |