- 論壇徽章:
- 0
|
在主服務(wù)器
use your_db_name
go
select name from sysobjects where type='U' and name like '%your_table_name%'
go
--查表結(jié)構(gòu)
sp_help your_table_name
go
--查記錄數(shù)
sp_spaceused your_table_name,1
go
在備份服務(wù)器
use your_db_name
go
select name from sysobjects where type='U' and name like '%your_table_name%'
go
--查表結(jié)構(gòu)
sp_help your_table_name
go
--查記錄數(shù)
sp_spaceused your_table_name,1
go
如果沒(méi)有復(fù)制,請(qǐng)檢查RS 狀態(tài)
在Replication server
admin health
go
If status is not "HEALTHY", then
admin who_is_down
go |
|