第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

Oracle數(shù)據(jù)庫(kù)開(kāi)發(fā)必備利器之SQL基礎(chǔ)

難度入門(mén)
時(shí)長(zhǎng) 4小時(shí)14分
學(xué)習(xí)人數(shù)
綜合評(píng)分9.67
338人評(píng)價(jià) 查看評(píng)價(jià)
9.8 內(nèi)容實(shí)用
9.7 簡(jiǎn)潔易懂
9.5 邏輯清晰
  • --oracle查看用戶(hù)的表空間 ·dba_tablespaces數(shù)據(jù)字典 ---desc dba_tablespaces ---select tablespace_name from dba_tablespaces; ·user_tablespaces數(shù)據(jù)字典 ---desc dba_tablespaces ---select tablespace_name from user_tablespaces; ·dba_users connect system/toor desc dba_users; ·user_users
    查看全部
  • 2-9修改[永久的]表空間 · 修改表空間狀態(tài) · 修改數(shù)據(jù)文件 · 設(shè)置聯(lián)機(jī)或脫機(jī)狀態(tài) ALTER TABLESPACE tablespace_name ONLINE|OFFLINE; · 示例: · alter tablespace test1_tablespace offline; 用數(shù)據(jù)字典查看表狀態(tài) · desc dba_tablespaces STATUS就是表的狀態(tài) select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE'; · alter tablespace test1_tablespace online; · 設(shè)置只讀或者可讀寫(xiě)狀態(tài)(前提是表要在聯(lián)機(jī)online狀態(tài)) ALTER TABLESPACE tablespace_name READ ONLY|READ WRITE · 示例: · alter tablespace test1_tablespace read only; 查看狀態(tài) · desc dba_tablespaces · alter tablespace test1_tablespace read only; 查看狀態(tài) · desc dba_tablespaces
    查看全部
  • 2-8創(chuàng)建表空間 · CREATE [TEMPORARY] TABLESPACE tablespace_name TEMPFILE|DATAFILE 'xx.dbf' SIZE xx · 示例: · create tablespace test1_tablespace datafile 'test1file.dbf' size 10m; · create temporary tablespace temptest1_tablespace tempfile 'tempfile1.dbf' size 10m 查看表空間 desc dba_data_files select file_name from dba_data_files where tablespace_name='TEST1_TABLESPACE';【文件名要大寫(xiě)】 查看臨時(shí)表空間 select file_name from dba_temp_files where tablespace_name='TEMPTEST1_TABLESPACE';
    查看全部
  • --oracle表空間 ·數(shù)據(jù)庫(kù)與表空間 ·表空間與數(shù)據(jù)文件 ·表空間分類(lèi) -·永久表空間:永久存儲(chǔ)的表 -·臨時(shí)表空間:SQL語(yǔ)句執(zhí)行過(guò)程的臨時(shí)表 -·UNDO表空間:修改之前的信息
    查看全部
  • --oracle啟用scott用戶(hù) ·啟用用戶(hù)的語(yǔ)句 alter user username account unlock; ·使用scott用戶(hù)登入SQL Plus connect scott/tiger
    查看全部
  • --oracle查看登入用戶(hù) ·show user命令 查看當(dāng)前的用戶(hù) ·dba_users數(shù)據(jù)字典 查看賬號(hào)信息 desc dba_users ·select username from dba_users; 查看oracle的所有系統(tǒng)用戶(hù)
    查看全部
  • --oracle使用系統(tǒng)用戶(hù) 系統(tǒng)用戶(hù) -sys,system 安裝密碼 -sysman 安裝密碼 -scott tiger 使用system用戶(hù)登入 system/密碼 @orcl as sysdba orcl就是自己設(shè)置的服務(wù)名,如果不是用自己的,就寫(xiě)別人的 如果在同一臺(tái)機(jī)器上,就不用@orcl eg-->system/toor eg-->connect sys/toor as sysdba
    查看全部
  • ---oracle刪除 app\Administrator\product\11.2.0\dbhome_1\deinstall.bat 指定要取消配置的所有單實(shí)例監(jiān)聽(tīng)程序 【LISTENER】: Enter 指定在此Oracle主目錄中配置的數(shù)據(jù)庫(kù)名的列表【ORCL】:Enter 是否仍要修改ORCL數(shù)據(jù)庫(kù)的詳細(xì)資料?【n】:y 指定此數(shù)據(jù)庫(kù)<1.單實(shí)例數(shù)據(jù)庫(kù);2.啟用Oracle Restart的數(shù)據(jù)庫(kù)>的類(lèi)型[1]:Enter Enter Enter CCR check is finished 是否繼續(xù)<y -是,n - 否>?【n】:y 等待... 無(wú)法刪除:'d:\app\Administrator\product\11.2.0\dbhome_1\deinstall.bat'。該目錄正在使用中。 在程序結(jié)束后刪除。
    查看全部
    3 采集 收起 來(lái)源:Oracle卸載

    2018-03-22

  • 在官網(wǎng)找不到,
    查看全部
    0 采集 收起 來(lái)源:Oracle安裝

    2015-03-27

  • 意思是說(shuō)online狀態(tài)才能使用這個(gè)表空間嗎?
    查看全部
  • 1.邏輯空間與物理文件的映射,是在創(chuàng)建時(shí)就建立的 2.永久和臨時(shí)文件對(duì)應(yīng)的數(shù)據(jù)字典分別是dba_data_files和dba_temp_files
    查看全部
  • 表空間是Oracle特有的概念么?
    查看全部
  • 表空間——邏輯數(shù)據(jù)空間 數(shù)據(jù)文件——物理上的存儲(chǔ)
    查看全部
  • DROP TABLESPACE tablespace_name [INCLUDING CONTENTS] drop tablespace test1_tablespace including contents;
    查看全部
  • ALTER TABLESPACE tablespace_name ADD DATAFILE 'xx.dbf' SIZE xx; alter tablespace test1_tablespace add datafile 'test2_file.dbf' size 10m; alter tablespace test1_tablespace drop datafile 'test2_file.dbf'
    查看全部

舉報(bào)

0/150
提交
取消
課程須知
只要知道數(shù)據(jù)庫(kù)是什么就可以來(lái)學(xué)習(xí)本課程呦!
老師告訴你能學(xué)到什么?
掌握Oracle的SQL語(yǔ)句基礎(chǔ),為后續(xù)的課程學(xué)習(xí)打好基礎(chǔ)。

微信掃碼,參與3人拼團(tuán)

微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)

友情提示:

您好,此課程屬于遷移課程,您已購(gòu)買(mǎi)該課程,無(wú)需重復(fù)購(gòu)買(mǎi),感謝您對(duì)慕課網(wǎng)的支持!