梦幻之城

理想王国

导航

2016年8月3日 #

HTML的ul和li标签的使用

摘要: 我的第一个网页 我的电脑文件列表 我的电脑 本地磁盘(C:) 我的文档 我的收藏 本地磁盘(D:) 我的游戏 我的资料 我的电影 阅读全文

posted @ 2016-08-03 18:21 梦幻之城,理想王国 阅读(929) 评论(0) 推荐(0) 编辑

Oracle查看用户操作sql语句以及数据库日志

摘要: --查看日志文件 select member from v$logfile; --查看表空间使用情况 SELECT SUM(bytes) / (1024 * 1024) AS free_space, tablespace_name FROM dba_free_space GROUP BY table 阅读全文

posted @ 2016-08-03 17:37 梦幻之城,理想王国 阅读(2729) 评论(0) 推荐(0) 编辑

Oracle创建用户

摘要: --查表空间的名称和大小SELECT t.tablespace_name, round(SUM(bytes / (1024 * 1024)), 0) ts_size FROM dba_tablespaces t, dba_data_files d WHERE t.tablespace_name = d.tablespace_name GROUP BY t.tablespace_name;-... 阅读全文

posted @ 2016-08-03 17:03 梦幻之城,理想王国 阅读(147) 评论(0) 推荐(0) 编辑