oracle命令列生成資料庫的表結構

2021-06-22 17:17:52 字數 417 閱讀 7063

獲取資料庫建表語句命令操作步驟如下:

1、登陸oracle資料庫伺服器

2、執行sqlplus /nolog 

3、執行以下命令:

set pagesize 0 

set long 90000 

set feedback off 

set echo off 

select dbms_metadata.get_ddl('table',u.table_name) from user_tables u; 

select dbms_metadata.get_ddl('index',u.index_name) from user_indexes u; 

spool off

如果這些表分散在多個dbschema下,則將這個語句複製,修改相應的使用者名稱和密碼 多次執行即可。

oracle命令列匯出匯入資料庫

1 匯出資料庫dmb檔案 遠端 exp user password ip 1521 orcl file d zyoa0809.dmp full y 不用加full y,加上的意思是連同系統表一起匯出 本地 exp user password orcl file d zyoa0809.dmp full...

資料庫操作命令行

第一步 啟動及關閉資料庫服務 net stop mysql net start mysql第二步 找到資料庫mysql位置並登陸進入 找到位置 c phpstudy phptutorial mysql bin 登陸 mysql u 使用者名稱 h主機名或者ip位址 p密碼 mysql u root ...

關於從命令列啟動oracle資料庫

日前看oracle 10g dba寶典一書,書上講到從命令列啟動oracle資料庫,該方式似乎不行,至少的windows下不行,以下去書上所說的步驟 1,lsnrctl start 2,sqlplus nolog 3,connect system password as sysdba 這一步就不行了...