To use Adaptive Server® Enterprise (ASE), modify some properties files, and run scripts to configure it to work with SAP Mobile Platform.
| Setting | Value |
|---|---|
| Page size | 16 KB |
physname = "c:\Sybase\data\smp3.dat", ... physname = "c:\Sybase\data\smp3.log",
This example shows a contiguous block of the noncomment lines in the 001_SMP3_drop_and_create_user.DDL file for ASE:
Replace highlighted items below as needed to implement the changes you wish to make.
...
disk init
name = "smp3data",
physname = "c:\Sybase\data\smp3.dat"
size = "256M",
directio = true
go
disk init
name = "smp3log",
physname = "c:\Sybase\data\smp3.log",
size = "256M",
directio = true
go
sp_addlogin "gomobile","secret"
go
sp_configure "lock scheme", 0, datarows
go
drop database smp3
go
create database smp3
on smp3data="256M"
log on smp3log="256M"
go
exec sp_dboption 'smp3', 'select into/bulkcopy/pllsort', true
go
sp_configure 'enable functionality group', 1
go
use smp3
go
checkpoint
go
sp_adduser gomobile
go
grant all to gomobile
go
...
<installer_root>/db_tools/db/ase/smp3/sql
isql -S<servername> -U<username> -P<password> -i001_SMP3_drop_and_create_user.DDLwhere: