oracle mysql sqlserver 查看當前所有資料庫及資料庫基本操作命令

來源:互聯網
上載者:User

1.oracle

(1) 啟動 監聽

        lsnrctl start;

(2)進入sqlplus介面

       sqlplus  /nolog

       SQL>conn sys/jiaxiaoai@orcl as sysdba;

(3)啟動資料庫執行個體

       SQL>startup;

(4)查看當前所有的資料庫

        select * from v$database;

    或 select name from v$database;

(5)查看哪些使用者擁有sysdba、sysoper許可權

        select * from V_$PWFILE_USERS;

        show user;查看當前資料庫連接使用者

(6)進入某個資料庫:database 資料庫名;

       查看資料庫結構:desc v$database;

(7)查看所有使用者執行個體:

       select * from v$instance;

        或 select instance_name from v$instance;

 (8)查看當前庫的所有資料表

       select * from all_tables;

       select table_name from all_tables;

       select table_name from user_tables;

        select table_name from all_tables where owner='使用者名稱';

 (9)查看錶結構

        desc 表名;

 (10)增加資料庫使用者

         create user 使用者名稱 identified by 密碼 default tablespace users Temporary TABLESPACE Temp;

 (11)使用者授權

         grant connect,resource,dba to 使用者名稱;

         grant sysdba to 使用者名稱;

 (12)更改資料庫使用者密碼

         alter user 使用者名稱 identified by 密碼;

2.mysql

  (1)顯示所有資料庫

    show database;

  (2)顯示所有表

    show tables;

 (3)顯示表結構

     desc 表名;

3.sqlserver

   查詢所有表:

   select * from sysobjects where xtype=“U”

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.