- 论坛徽章:
- 34
|
本帖最后由 wfcjz 于 2015-09-21 10:44 编辑
一、先删除设备
- sp_dropsegment "default",saptempdb,saptempdb_device_name //你的saptempdb挂载的设备名)
- sp_dropsegment "system",tempdb,saptempdb_device_name //你的saptempdb挂载的设备名)
- -- 转master库
- use master
- sp_configure "allow update",1
- delete sysusages where dbid=2 and vstart=150994944 //vstart可sp_helpdevice获取
- sp_configure "allow update",0
- sp_dropdevice saptempdb_device_name // //你的saptempdb挂载的设备名)
复制代码 二、删除数据库
1、如果数据库的状态正常,直接使用就可以删除数据库
2、如果数据库为可疑状态,则使用 dbcc命令 删除,命令格式如下- dbcc dbrepair(pubs,dbdrop)
复制代码 sybase的官方说法: If a database has a large enough number of inconsistencies,the server may consider the databASE to be corrupt。In this situation,the database cannot be dropped wITh the drop database command
The database can be dropped only with dbcc dbrepair Syntax:
dbcc dbrepair(dbname,dropdb)
Example:
dbcc dbrepair(pubs2,dropdb)
Note: sa_role is required to run dbcc dbrepair.
3.如果还不行,那么就这样-
- sp_configure "allow update",1
- update sysdatabases set status=320 where name = yourdatabasename
- shutdown with nowait
复制代码 再启动SYBASE,- delete from sysdatabase where name =database_name
- delete from sysusages where dbid=database_id
- sp_configure "allow update",0
-
复制代码 Good luck! |
|