更改sybase下设备名

一:基本情况
环境:aix+ha+sybase 互备
起因:由于之前扩tempdb空间,在两台aix上建了相同的lv_tempdb名字,服务切换到同一台机器上,导致卷组不能激活,服务启动失败
处理办法:更改系统表sysdevices
停止sybase服务
使用chlv -n 重命名lv名字
启动syabase服务
除此还需两边导出卷组在重新导入,ha同步校验等
 
二:以windows为例模拟该步骤(重命名tempdb设备)
1 设备基本状况
 
 
2 更新设备tempdb 设备物理名字
use master
go
sp_configure 'allow updates to system tables',1
go
update sysdevices set phyname=’E:\data\newtempdb’ where name=’tempdb’
go
sp_configure 'allow updates to system tables',0
go
 
3 停止sybase服务,在操作系统更改设备名字
E:\data\tempdb---------------- à E:\data\newtempdb
 
4 启动sybase服务
 
5 验证
 
 

你可能感兴趣的:(更改sybase下设备名)