I tried to remove the compress::: and got this
1> load database SYBASE-DB from "E:\DUMPFILE.dmp"
2> go
Backup Server session id is: 18. Use this value when executing the 'sp_volchanged' system stored procedure after fulfilling any
volume change request from the Backup Server.
Backup Server: 6.28.1.1: Dumpfile name 'DCHPRG4140790D1F4' section number 1 mounted on disk file 'E:\DUMPFILE.dmp'
Msg 3120, Level 16, State 1:
Server 'SYABSEDB', Line 1:
The database you are attempting to LOAD was DUMPed under a different sort order ID (44) or character set ID (2) than the ones
running on this server (SortOrd = 50, CharSet = 2). If the sort orders differ, at least one of them is non-binary.
The dump came from an older windows version Sybase (12.5)
The new database exists JUST to load this dump.. so I can kill/rebuild etc..
Looks like the SortOrd of the new database is different.. so I ran,,,
1> sp_configure "default sortorder id", 44
2> go
Msg 5824, Level 16, State 4:
Server 'AIGORACLE11G', Procedure 'sp_configure', Line 1310:
Cannot reconfigure server to use sort order ID 44, because the row for its underlying character set (ID 2) does not exist in
syscharsets.
(return status = 1)
1> select name, id from master..syscharsets where csid=0
2> go
name id
------------------------------ ---
ascii_8 0
iso_1 1
cp850 2
1> select name, id, csid, description
2> from master..syscharsets
3> where csid = 2
4> go
name id csid
description
It will not let me change the sort order?
------------------------------ --- ----
---------------------------------------------------------------------
------------------------------------------------------------------------------
--------
bin_cp850 50 2
Binary ordering, for use with Code Page 850 (cp850).