本篇內(nèi)容主要講解“ORACLE的使用方法有哪些”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“ORACLE的使用方法有哪些”吧!
網(wǎng)站的建設(shè)創(chuàng)新互聯(lián)專注網(wǎng)站定制,經(jīng)驗豐富,不做模板,主營網(wǎng)站定制開發(fā).小程序定制開發(fā),H5頁面制作!給你煥然一新的設(shè)計體驗!已為封陽臺等企業(yè)提供專業(yè)服務(wù)。
//刪除用戶
drop user lc0019999 cascade
//創(chuàng)建用戶
create user lc0019999 identified by password
//給用戶授DBA權(quán)限
grant dba to lc0019999
//導(dǎo)入數(shù)據(jù)
$implc0019999/password@server file=e:back312.dmp fromuser=lc0019999 touser=lc0019999
//導(dǎo)出數(shù)據(jù)
$explc0019999/password@server file=e:backaaa.dmp
//更改sys與system口令
alter user system(sys) identified by newpassword
//更改歸檔日志方式archivelog與noarchivelog
alter database archivelog(noarchivelog)
//整理蜂窩式碎片的方式
alter tablespace tablespacename coalesce
//查看缺省表空間與臨時表空間
select username from dba_users where default_tablespace='system' or temporary_tablespace='system' order by username
//將缺省表空間與臨時表空間改為非system
alter user rsingh default users temporary temp
//創(chuàng)建表空間命令
create tablespace tablespacename...(other command options)...extent management local uniform size 10M
//在不同表空間之間移動索引
alter index
//分析數(shù)據(jù)表空間(執(zhí)行結(jié)果不可見)
analyze table
//查詢表最高點與表的未用塊
select blocks "high water mark",empty_blocks "unused space" from dba_tables where table_name='&table_name' and owner='&owner_name'
//釋放未用表空間
alter table
到此,相信大家對“ORACLE的使用方法有哪些”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!