ORA-38760: This database instance failed to turn on flashback database
问题背景:
测试数据库执行shutdown immediate,日志里面报错,错误信息为:ORA-19815: WARNING: db_recovery_file_dest_size of 4322230272 bytes is 9...
分类:
数据库 时间:
2014-10-09 02:05:57
阅读次数:
203
--创建表create table 表(a1 varchar(10),a2 char(2)) --为表添加描述信息EXECUTE sp_addextendedproperty N'MS_Description', '人员信息表', N'user', N'dbo', N'table', N'表', N...
分类:
数据库 时间:
2014-10-09 01:31:17
阅读次数:
388
一、coroutine.create创建协程
参数是协程的主函数,返回一个thread对象
co = coroutine.create(function()
print("coroutine execute!")
end)
二 协程状态
协程有4种状态:挂起(suspended)、运行(running)、死亡(dead)和正常(normal)
coroutine.status(co)...
分类:
其他好文 时间:
2014-10-08 17:13:35
阅读次数:
290
说好的国庆七天好好充电的呢?各种闲逛,累死了有木有啊...回头一看,七天什么啥都没干啊,再看下钱包君,啊,钱包君你饿死了呢,我靠...
闲话过后,言归正传,现在看看Python中的模块吧!
先贴上代码:
main.py:
import module
module.function()
module.py:
def function():
print "execute funct...
分类:
编程语言 时间:
2014-10-08 12:27:25
阅读次数:
246
用过jquery的一般都知道在jquery中可以链式调用,代码简洁优雅。比如$(“a”).addClass(“test”).show().html(“foo”);。
在redis-py中的pipeline中也可以链式调用,比如pipe.set('foo', 'bar').sadd('faz', 'baz').incr('auto_number').execute() 。
那么究竟怎么实现的呢?...
分类:
编程语言 时间:
2014-10-07 00:27:11
阅读次数:
278
原文链接:http://www.toadworld.com/products/toad-for-oracle/b/weblog/archive/2013/08/21/using-notepad-to-execute-oracle-sql.aspxNotepad++是一个很实用的文本编辑工具,用它来执...
分类:
数据库 时间:
2014-10-06 16:03:30
阅读次数:
259
背景知识: sp_configure 显示或更改当前服务器的全局配置设置(使用sp_configure可以显示或更改服务器级别的设置。) 查看全局配置值 方法 1、execute sp_configure;直接查看所有。 方法 1、execute sp_con...
分类:
数据库 时间:
2014-10-06 14:47:30
阅读次数:
230
“Programs are meant to be read by humans and only incidentally(顺便;偶然地;附带地) for computers to execute.” —Donald KnuthWhen a team is brought together(被放在...
分类:
编程语言 时间:
2014-10-05 14:49:48
阅读次数:
174
wget很厉害,你如果想把某个网站上的一系列的文档,通常是api文档扒下来可用下列命令:wget -e robots=off -w 1 -x -np -p -m -k -t 1 -X/upload/ http://网址为了让这个命令行的各选项意义更加明确,它还可以写成:wget --execute ...
分类:
Web程序 时间:
2014-10-04 23:54:27
阅读次数:
334
uplevel - Execute a script in a different stack framesuppose that procedure a was invoked from top-level, and that it called b, and that b called c. S...
分类:
其他好文 时间:
2014-10-04 13:49:46
阅读次数:
186