为提高效率,提问时请提供以下信息,问题描述清晰可优先响应。 【DM版本】:8 【操作系统】:Windows 【问题描述】*:达梦中,提供一个模式名,如何能判断指的定模式是否存在。用sql判断
select * from all_objects where OBJECT_NAME='模式名称' and OBJECT_TYPE='SCH';
模式表是哪个呀
一切皆对象
select 1 exts from sysobjects where type$='SCH' and name='模式名'
select *
from all_objects
where OBJECT_NAME='模式名称' and OBJECT_TYPE='SCH';