ORA-04031:无法分配4084字节的共享内存(“shared pool”,”standardsys”,”PL/sql mpcode”,”bamima:bam buffer”)
我写了一个接口程序,把sql2000里的数据导入到oralce数据库中,偶然一天接口程序发生以上错误提示,这是什么原因呢
ORA-04031: unable to allocate string bytes of shared memory ("str ......
跪求oracle 热备份 .bat文件
这要看你的数据是否重要,可采用exp和rman的方法。不必要的情况下,只需使用exp就可以
不是简单几个字能够回答的,要看您的备份策略,数据库是否归档模式等等。
引用
不是简单几个字能够回答的,要看您的备份策略,数据库是否归档模式等等。
同意。如果没有开启归档,只有 ......
本人想下载Oracle 9i 去官网找了半天不知道是不是这个?红色的那个,不知道能在XP上用不?请高人指点……
Oracle Database 11g Release 1
Standard Edition, Standard Edition One, and Enterprise Edition
(11.1.0.7.0)
Microsoft Windows Server 2008 (32-bit) (1.9 GB) | See All (Including Client, Cluste ......
SQL code:
select * from (select rownum rownum_,a.* from (select t.name,t.id from table_name t
order by t.name)a where rownum<=20) where rownum_>=10;
select * from (select rownum rownum_,a.* from (select t.name,t.id from table_name t
order by t.name)a) where rownum_<=20 and rownu ......
求一oracle中备份数据库的存储过程,希望各位高手能给我个测试通过的,不胜感激!!!
/*备份数据库的存储过程*/
if exists(
select * from sysobjects
where name='pr_backup_db' and xtype='p'
)
begin
drop proc pr_backup_db
end
......
求一查询oracle数据库死锁的SQL语句
谢谢
摆渡一下,啥都有了。。。
select C.sid,C.serial#,B.object_name,C.username,C.machine,C.terminal,C.program
from v$locked_object A,all_objects B,v$session C
where A.session_id = C.sid and A.object_id = B.object_id;
select object_id,session_id,locked ......