Skip to content

Commit 5ae6030

Browse files
committed
update
1 parent d5f0103 commit 5ae6030

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

_posts/2023-12-18-633-db.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
---
22
layout: post
3-
title: oracle-ORA-01653: unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM
3+
title: oracle-ORA-01653
44
pid: 633
55
tags: [db]
66
---
77

8+
9+
```sql
810
SELECT a.tablespace_name "表空间名",
911
a.bytes / 1024 / 1024 "表空间大小(M)",
1012
(a.bytes - b.bytes) / 1024 / 1024 "已使用空间(M)",
@@ -19,17 +21,13 @@ GROUP BY tablespace_name) b
1921
WHERE a.tablespace_name = b.tablespace_name
2022
ORDER BY ((a.bytes - b.bytes) / a.bytes) DESC
2123

22-
23-
2424
alter tablespace SYSAUX add datafile 'SYSAUX02.dbf' size 5G ;
2525
alter tablespace SYSTEM add datafile 'SYSTEM02.dbf' size 10G ;
2626

2727

28-
29-
3028
select distinct dfs.tablespace_name, df.name from dba_free_space dfs left join v$datafile df on dfs.file_id = df.FILE# order by dfs.tablespace_name;
3129

32-
30+
```
3331

3432

3533

contact.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ <h3>Paul Ding</h3>
3131

3232
<p>or follow</p>
3333

34-
<blockquote><p><i class="fa fa-twitter"></i> <a href="https://twitter.com/baoguoding">@Paul Ding</a></p>
34+
<blockquote><p><i class="fa fa-twitter"></i> <a href="https://twitter.com/baoguoding">@baoguoding</a></p>
3535

36-
<p><i class="fa fa-weibo"></i> <a href="http://weibo.com/baoguoding">@丁帅爸爸</a></p></blockquote>
36+
<p><i class="fa fa-weibo"></i> <a href="http://weibo.com/baoguoding">@baoguoding</a></p></blockquote>
3737

3838
<p>to reach me</p>

0 commit comments

Comments
 (0)