摘要:
查看表空间创建时间select a.file_name,a.tablespace_name,to_char(b.creation_time,'yyyy-mm-dd')creation_time from dba_data_files a,v$datafile b where a.file_id=b.file# order by tablespace_name;查看表空间信息SELECT * FROM dba_tablespaces; 阅读全文
摘要:
-- Create tablecreate table CLIENTDICTIONARYCMD( 序号 NUMBER not null, 本次运行唯一标识 VARCHAR2(100) not null, 科力自动生成命令编号 NUMBER not null, 客户端传来命令编号 NUMBER not null, 客户端唯一标识 VARCHAR2(100) not null, 下发时间 DATE not null)--创建序列create sequence SEQ_CLIENTDICTIONARYCMDminvalue 1nomaxvalues... 阅读全文