熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Oracle >> 正文

如何解決不能一次創建多表的問題

2022-06-13   來源: Oracle 

  一次操作創建多個對象一個不成功則全部不成功
  
  第一步創建用戶
  
    create user aa
  
    identified by aa
  
    default tablespace users
  
    temporary tablespace temp;
  
  第二步賦予用戶相應的權限
  
    grant connectresource to aa;
  
  第三步以該用戶登錄
  
    connect aa/aa@db_name;
  
  第四步創建多表
  
    create schema authorization aa
  
    create table ll(a number)
  
    create table ll(b numberc varchar());
  

From:http://tw.wingwit.com/Article/program/Oracle/201311/17177.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.