1. 1 #include 2 3 #define SPACE ' ' 4 #define NEWLINE '\n' 5 6 int main() 7 { 8 int spaces,newlines,others; 9 char ch;10 spaces = newli...
分类:
其他好文 时间:
2014-07-16 20:18:33
阅读次数:
139
如何在Windows Server 2008 R2中更改桌面图标 Windows Server 2008 R2 已经在 MSDN 和 TechNet Plus 订阅上公布,gOxiA 在第一时间下载并进行了相关的测试。
[grid@huntdb02~]$exportORACLE_SID=txzldb2
[grid@huntdb02~]$sqlplus"/assysasm"
SQL*Plus:Release11.2.0.3.0ProductiononWedJul915:07:552014
Copyright(c)1982,2011,Oracle.Allrightsreserved.
Connectedtoanidleinstance.
[root@huntdb02~]#crsstat
ResourceNameResource..
分类:
其他好文 时间:
2014-07-10 18:51:04
阅读次数:
267
[root@ladb1~]#su-oracle[oracle@ladb1~]$sqlplus/nologSQL*Plus:Release10.2.0.1.0-ProductiononTueJul821:47:012014Copyright(c)1982,2005,Oracle.Allrightsreserved.SQL>conn/assysdba;Connected.查询Oracle中所有用户信息1.查看所有用户:select*fromdba_users;select*f..
分类:
数据库 时间:
2014-07-09 08:04:43
阅读次数:
239
AUTOTRACE 是SQL*Plus 中一个工具,可以显示所执行查询的解释计划(explain plan)以及所用的资源。这本书中大量使用了AUTOTRACE 工具。配置AUTOTRACE 的方法不止一种,以下是我采用的方法:(1)cd [ORACLE_HOME]/rdbms/admin;(2)作...
分类:
数据库 时间:
2014-07-08 11:29:43
阅读次数:
215
概述Nucleus Plus内核(Kernel)的主要目的是管理实时任务的竞争执行(共享CPU),为应用提供各种便利,高速响应外部事件。Nucleus Plus的系统结构如图1所看到的,能够看出线程控制是整个内核的核心,通过邮箱、队列、管道来实现任务之间的通信,通过信号量、事件组和信号实现任务间的同...
分类:
其他好文 时间:
2014-07-06 18:49:16
阅读次数:
285
class Solution {public: vector plusOne(vector &digits) { int carry = 1; int len = digits.size(); vector res; ...
分类:
其他好文 时间:
2014-07-06 16:43:39
阅读次数:
104
5. 1 #include 2 3 int main() 4 { 5 float you_sec; 6 printf("请输入你的年龄:"); 7 scanf("%f", &you_sec); 8 printf("年龄合计:%e 秒!\n", you_sec * ...
分类:
其他好文 时间:
2014-07-06 16:24:54
阅读次数:
162
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:
其他好文 时间:
2014-07-06 16:11:35
阅读次数:
170
??
方法一:
[root@vmrac1 ~]# su - grid
[grid@vmrac1 ~]$ sqlplus / as sysasm
SQL*Plus: Release 11.2.0.3.0 Production on Thu Jul 3 09:36:27 2014
Copyright (c) 1982, 2011, Oracle. All rights res...
分类:
数据库 时间:
2014-07-03 17:24:25
阅读次数:
238