Creating USoft Developer Tables in Sybase

Previous Next

See Also

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:

1. Start "isql" using:

isql -Usa -P<password>

2. If necessary, initialize the disks and create the database.
3. Create the Sybase user by typing:

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.