当前位置: 技术问答>linux和unix
linux下如何将sql语句写为脚本
来源: 互联网 发布时间:2016-02-20
本文导语: 对数据库的一些操作我想在linux下面写成一个脚本,然后执行脚本,但不知道如何写.哪位大虾晓得~ 下面是对数据库ORACLE的操作 system用户登录执行 drop user ebnewmt cascade -- Create the user create user EBNEWMT identified by...
对数据库的一些操作我想在linux下面写成一个脚本,然后执行脚本,但不知道如何写.哪位大虾晓得~
下面是对数据库ORACLE的操作
system用户登录执行
drop user ebnewmt cascade
-- Create the user
create user EBNEWMT
identified by "123"
default tablespace EBNEWMT
temporary tablespace TEMP
profile DEFAULT;
-- Grant/Revoke role privileges
grant connect to EBNEWMT;
grant resource to EBNEWMT;
-- Grant/Revoke system privileges
grant unlimited tablespace to EBNEWMT;
下面是对数据库ORACLE的操作
system用户登录执行
drop user ebnewmt cascade
-- Create the user
create user EBNEWMT
identified by "123"
default tablespace EBNEWMT
temporary tablespace TEMP
profile DEFAULT;
-- Grant/Revoke role privileges
grant connect to EBNEWMT;
grant resource to EBNEWMT;
-- Grant/Revoke system privileges
grant unlimited tablespace to EBNEWMT;
|
用sqlplus命令就可以吧:
[code=BatchFile]sqlplus username/password@db_host @scriptname[/code]
[code=BatchFile]sqlplus username/password@db_host @scriptname[/code]