1.打开达梦数据库管理工具,以sysdba身份登录。
2.在导航栏中点击“系统管理”-“报表”,进入报表管理界面。
3.在报表管理目录中选择“系统报表”-“实例”,点击右侧空白处选择“创建时间”。
4.右击报表结果列表,选择“查看”,即可查看到数据库实例创建时间。
--1 表的identity字段可以在[sys.identity_columns]找到--比如某张表table_example的自增字段可以这样找select * from sys.identity_columns where [object_id]= OBJECT_ID('table_example') --2 有没有是判断,这里等价于是否存在自增字段,可以这样写:if exists(select * from sys.identity_columns where [object_id]= OBJECT_ID('table_example'))beginprint 'Yes'end elsebeginprint 'No'end查询当前登录的用户所有的表名SELECT TABLE_NAME FROM USER_TABLES
问题解决了。select distinct object_name TABLE_SCHEMA from all_objects where object_type = 'SCH'。可以查到
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)