Oracle刪除乙個庫裡面的所有表

2022-08-09 21:03:21 字數 506 閱讀 3268

如果有刪除使用者的許可權,則可以:

drop user user_name cascade;

加了cascade就可以把使用者連帶的資料全部刪掉。

刪除後再建立該使用者。

--建立管理員使用者

create user 使用者名稱 identified by 密碼 default tablespace space_data(表空間名稱) temporary tablespace space_temp(臨時表空間名稱);

--授權

grant connect,dba to 使用者名稱;

--修改限額

alter user "使用者名稱" quota unlimited on space_data(表空間名稱);

--檢視所有使用者物件

select uo.object_name,uo.object_type from user_objects uo where uo.object_type<>'lob' order by uo.object_type desc

乙個將資料庫裡面的內容生成EXCEL的例子

1.asp 檔案 if request act then else dim rs,sql,filename,fs,myfile,x,link set fs server.createobject scripting.filesystemobject 假設你想讓生成的excel檔案做如下的存放 fil...

論壇裡面的乙個帖子

作為專案經理一定要關注計畫和跟蹤,控制好工期和質量 要培養好乙個團隊。自己要思考,這個專案做下來,自己能得到什麼?組員能得到什麼?公司能得到什麼?想清楚了再做?其實很多事情在接收專案的時候就要想到的。剛做專案經理慢慢來,一點一點學嘛!抓緊學習專案管理的理論知識。雖說理論不一定有用,但是理論可以指導你...

GAN裡面的乙個小坑

log sigmoid f x log 1 exp f x softplus f x log 1 sigmoid f x log 1 exp f x softplus f x thus,softplus f x softplus f x represents the same objective a...