Hi experts,
When I tried to unmout a user database named "sandbox_test" with the manifest file, I hit following error:
1> unmount database sandbox_test to "/home/sybase/sandbox_s/manifest"
2> go
Msg 14543, Level 16, State 1:
Server 'ASE1570_S1', Line 1:
UNMOUNT DATABASE command is not allowed when mirroring is enabled.
I don't think I'm using mirroring for this database's devices, as the "sandbox_test" is created as follows:
1> disk init name="sandbox_s_data", physname="/home/sybase/sandbox_s/data_dev1.dat", size="10M", dsync=false, directio=true
2> go
1> disk init name="sandbox_s_log", physname="/home/sybase/sandbox_s/log_dev1.dat", size="10M", dsync=false, directio=true
2> go
1> create database sandbox_test on sandbox_s_data="5M" log on sandbox_s_log="5M"
2> go
CREATE DATABASE: allocating 1280 logical pages (5.0 megabytes) on disk 'sandbox_s_data' (1280 logical pages requested).
CREATE DATABASE: allocating 1280 logical pages (5.0 megabytes) on disk 'sandbox_s_log' (1280 logical pages requested).
Database 'sandbox_test' is now online.
And then loaded from a full backup of database named "sandbox":
1> load database sandbox_test from "/opt/sybase/dumps/sandbox_full.1" at ASE1570_S1_BS
2> go
I'm using ASE 15.7 SP101:
1> select @@version
2> go
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Adaptive Server Enterprise/15.7/EBF 21341 SMP SP101 /P/x86_64/Enterprise Linux/ase157sp101/3439/64-bit/FBO/Thu Jun 6 16:08:18 2013
(1 row affected)
Could someone tell me how to fix this? Thanks in advance!