- 浏览: 293689 次
- 性别:
- 来自: 深圳
最新评论
-
naruto1205:
解决了我的问题~ O(∩_∩)O谢谢
XXX could not be redeployed because it could not be completely removed in the un -
xiaoliu128:
我去,我也是这个问题,搞了两小时,我还以为clob字段有问题 ...
运行时抛出 java.sql.SQLException: ORA-00911:invalid character 异常 -
winmain21:
谢谢 我也是搞了2个小时了,,各种试,最后确实发现是多了一个; ...
运行时抛出 java.sql.SQLException: ORA-00911:invalid character 异常 -
zhuxinzx:
natian306 写道我也遇到同样的问题,始终找不到解决办法 ...
An internal build error has occurred. Right-click for more information. -
natian306:
我也遇到同样的问题,始终找不到解决办法?楼主解决了吗?
An internal build error has occurred. Right-click for more information.
文章列表
Oracle删除当前用户下的所有表、视图、序列、函数、存储过程、包
--delete tables
Sql代码
select 'drop table ' || table_name ||';'||chr(13)||chr(10) from user_tables;
select 'drop table ' || table_name ||';'||chr(13)||chr(10) from user_tables;
--delete views
Sql代码
select 'drop view ' || view_name||';'||chr(13)||chr(10) f ...
- 2009-10-21 18:39
- 浏览 4421
- 评论(0)
DECLARE CURSOR
DECLARE @license_id numeric(9)
DECLARE license_cursor CURSOR FOR --建立游标使用结果集
select license_id from license where license_id = 3
OPEN license_cursor --填充结果集
FETCH NEXT FROM license_cursor into @license_id --从结果集返回行
CLOSE license_cursor --释放与游标关联的结果集
...
- 2009-10-21 18:38
- 浏览 2842
- 评论(0)
查询
SELECT语句用于从数据库中查询数据,当在PL/SQL中使用SELECT语句时,要与INTO子句一起使用,查询的返回值被赋予INTO子句中的变量
,变量的声明是在DELCARE中。SELECT INTO语法如下:
SELECT [DISTICT|ALL]{*|column[,column,...]}
INTO (variable[,variable,...] |record)
FROM {table|(sub-query)}[alias]
WHERE............
...
- 2009-10-21 18:36
- 浏览 1063
- 评论(0)
在Oracle10g里面,已经不赞成使用DBMS_JOB,推荐使用DBMS_SCHEDULER,它的健壮为调度提供更好的规划和结构。下面我只简单写一个例子。
begin
DBMS_SCHEDULER.CREATE_PROGRAM(
program_name => 'guozhw',
program_type => 'STORED_PROCEDURE',
program_action => 'guozhwTest',
number_of_arguments => 0,
enabled => true,
...
- 2009-10-21 18:35
- 浏览 1216
- 评论(0)
用pl/sql developer 调试存储过程报错
note:debugging requires the debug connect session system privilege.
原因是用户权限不够,使用以下命令授予权限:
GRANT debug any procedure, debug connect session TO username
- 2009-10-21 18:34
- 浏览 3779
- 评论(0)