转自:使用sql命令查询视图中所有引用的基础表使用sql命令查询视图中所有引用的基础表之前有写过如何利用sql查询视图中所有引用的表发现这个方法并不能查出视图中所有的基础表,如果视图中有嵌套视图就会有问题,因为目录视图sys.sql_dependencies并不包含所有的引用实体。后面发现在sql2...
分类:
数据库 时间:
2014-07-23 16:43:51
阅读次数:
306
一、sys用户和system用户Oracle安装会自动的生成sys用户和system用户(1)、sys用户是超级用户,具有最高权限,具有sysdba角色,有create database的权限,该用户默认的密码是change_on_install(2)、system用户是管理操作员,权限也很大。具有...
分类:
数据库 时间:
2014-07-23 16:19:01
阅读次数:
252
一、 IoC(Inversion of control): 控制反转1、IoC:概念:控制权由对象本身转向容器;由容器根据配置文件去创建实例并创建各个实例之间的依赖关系核心:bean工厂;在Spring中,bean工厂创建的各个实例称作bean二、AOP(Aspect-Oriented Progra...
分类:
编程语言 时间:
2014-07-23 15:19:36
阅读次数:
207
#include "stm32f10x.h"
#include "led.h"
#include "delay.h"
#include "sys.h"
int main(void)
{
delay_init();
LED_Init();
while(1)
{
LED0=0;
LED1=1;
delay_ms(300);
LED0=1;
LED1=0;
delay_ms...
分类:
其他好文 时间:
2014-07-23 13:34:56
阅读次数:
249
这节我们开始移植nand flash:通过查看帮助文档 doc/README.nand,要支持 NAND,需要配置CONFIG_CMD_NAND我们修改 tiny210.h,把 CONFIG_CMD_ONENAND 屏蔽掉,同时加上CONFIG_CMD_NAND:
编译出错 ,没有定义 CONFIG_SYS_MAX_NAND_DEVICE,最大 NAND 设备数,我们的板子只有 1 个...
分类:
其他好文 时间:
2014-07-23 13:12:26
阅读次数:
404
驱动开发之 用DeviceIoControl实现应用程序与驱动程序通信
1.
readfile和writefile可以实现应用程序与驱动程序通信,另外一个Win32 API 是DeviceIoControl。
应用程序自定义一中IO控制码,然后调用DeviceIoControl函数,IO管理器会产生一个MajorFunction 为IRP_MJ_DEVICE_CONTROL,MinorFun...
分类:
其他好文 时间:
2014-07-23 13:10:16
阅读次数:
220
【Color, Material, Lighting】 The material and lighting parameters are used to control the built-in vertex lighting. Vertex lighting is the standard Di....
分类:
其他好文 时间:
2014-07-23 12:25:29
阅读次数:
228
To ensure that a memory device operates in self-refresh mode, the memory controller includes (1) a normal-mode output buffer for driving a clock enabl...
分类:
其他好文 时间:
2014-07-23 11:59:46
阅读次数:
380
一、Stopping Grid Control and All Its Components
1.停止OMS服务
[oracle@ocm2 oms10g]$ cd /u01/app/oracle/OracleHomes/oms10g/bin/
[oracle@ocm2 bin]$ ./emctl stop oms
Oracle Enterprise Manager ...
分类:
其他好文 时间:
2014-07-23 00:09:59
阅读次数:
481
ICMP协议介绍
1、ICMP是“Internet Control Message Protocol”(Internet控制消息协议)的缩写。它是TCP/IP协议族的一个子协议,用于在IP主机、路由器之间传递控制消息。控制消息是指网络通不通、主机是否可达、路由是否可用等网络本身的消息。这些控制消息虽然并不传输用户数据,但是对于用户数据的传递起着重要的作用。
2、ICMP报文作为IP层数据报...
分类:
其他好文 时间:
2014-07-22 23:58:38
阅读次数:
544