任何人都可以解释,查询sybase数据库状态?
这个
我试过下面的查询,但它不起作用..从sysdatabases中选择名称,其中status2 ='..'
答案 0 :(得分:0)
status2
是smallint
数据类型,因此使用引号查找值会给出语法错误。您需要指定数字或数字范围(不带引号)才能使查询返回。
select name from sysdatabases where status2 = 1
或
select name from sysdatabases where status2 in (0,1)
有关 sysdatabases 的更多信息,请访问: http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc36274.1550/html/tables/X42615.htm