tail -f catalina.out 看日志
ps -ef|grep java 看进程
rm -rf zhijian 删除zhijian文件夹
control(275590805) 16:11:41
control_net@163.com
275590806s
试试我的
超级用户:root 111111
Oracle用户:oracle oracle
数据库实例:edu
数据库用户:sysdba sysdab
创建表空间:create tablespace cpde_data datafile '/opt/app/oracle/wdcms1.dbf' size 500m autoextend on next 100m maxsize unlimited;
创建用户:create user meige2 identified by meige2 default tablespace cpde_data;
给用户分配权限:grant connect,resource,dba to meige1;
1. linux下启动oracle
su - oracle
sqlplus /nolog
conn /as sysdba
startup
exit
lsnrctl start
exit
2. linux下关闭oracle
su - oracle
sqlplus /nolog
conn /as sysdba
shutdown immediate
exit
lsnrctl stop
exit
3、启动监听器
oracle@suse92:~> lsnrctl start
4、停止监听器
oracle@suse92:~> lsnrctl stop
5、查看监听器状态
oracle@suse92:~> lsnrctl
LSNRCTL> status
LSNRCTL> exit
1、 创建表空间:
写执行脚本create_tablespace.sql
create tablespace accounting_tbs
datafile '/opt/ora9/oradata/KLTest/accounting_tbs.dbf' size 50M
extent management local;
以sys用户权限登陆数据库执行脚本:
Sql>@create_tablespace.sql
2、 创建oracle用户:
写执行脚本create_user.sql
create user klwy
identified by “0000”
default tablespace accounting_tbs
quota 100M on accounting_tbs
quota 500K on indx;
3、 分配用户权限:
为用户授予create session系统权限:
Sql>grant create session to klwy;
为用户授予connect角色:
Sql>grant connect to klwy;
4:创建定时任务
DECLARE tjob NUMBER;
BEGIN
sys.DBMS_JOB.submit(
job => tjob,
what => 'yzywtozyjd ;', //存储过程名字
next_date => SYSDATE,//开始执行时间
interval => 'sysdate + 1/1440');
//过每分钟执行一次也可以为trunc(sysdate + 1)+2/24' 每天半夜2点执行
COMMIT;
END;
查询SELECT * FROM user_jobs;
删除
begin
dbms_job.remove(42);
commit;
end;