#include <stdio.h>#include <stdlib.h>#include "time.h"int main(){ int i; char c,gu; srand((unsigned)time(NULL)); c=6; gu=rand()%6+1; for(i=1;i<=100;i+ ...
分类:
其他好文 时间:
2019-03-24 21:35:24
阅读次数:
100
# include "stdio.h"# include "stdlib.h"# include <time.h>int main(int argc,char*argv[]) { int i; char c,gu; srand((unsigned)time(NULL)); c=6; gu=rand( ...
分类:
其他好文 时间:
2019-03-24 09:57:38
阅读次数:
134
// 心理魔术.cpp : Defines the entry point for the application.// #include "time.h"#include"stdlib.h"#include"stdio.h" int main(){ int i; char c,gu; srand( ...
分类:
其他好文 时间:
2019-03-23 15:55:01
阅读次数:
134
1.首先emp和dept表是scott用户下的,所以查询时要在scott用户下或者使用scott.emp; 2.如果emp表出来的不是系统自带的内容,而是自己添加的 一些东西,那么emp表已经别自己删掉了; 3.如果查询emp表显示不存在或者只有字段没有数据,那么emp表被自己无意中删掉了或者内容被 ...
分类:
数据库 时间:
2019-03-23 13:04:43
阅读次数:
499
网盘下载:梦断代码 pdf下载 – 易分享电子书PDF资源网 作者: Scott Rosenberg 出版社: 电子工业出版社 原作名: Dreaming in Code 译者: 韩磊 出版年: 2008.06 页数: 336 定价: 49.00元 ISBN: 9787121066795 ..... ...
分类:
其他好文 时间:
2019-03-16 19:43:21
阅读次数:
200
安装完oracle数据库后,登录时sys,system,scott这几个用户密码输入后都不对,查阅资料后解决 1,cmd下输入sqlplus,之后让你输入用户名,输入这个 "/as sysdba" ,之后输入"alter user (用户名) identified by (密码);" 因为我要用sc ...
分类:
数据库 时间:
2019-03-15 19:29:00
阅读次数:
224
1、使用git config命令进行配置(此配置为全局配置,这些是在提交commit时的签名): $ git config --global user.name "Scott Chacon" $ git config --global user.email "schacon@gmail.com" 2 ...
分类:
其他好文 时间:
2019-03-12 18:07:04
阅读次数:
201
转自:https://www.cnblogs.com/GreenLeaves/p/6635887.html 本文使用到的是oracle数据库scott方案所带的表,scott是oracle数据库自带的方案,使用前请确保其解锁 Oracle合并查询一共有四种方式,分别使用不同的关键字:UNION、UN ...
分类:
数据库 时间:
2019-03-11 09:13:35
阅读次数:
223
[20190226]测试使用bbed恢复索引.txt--//上午做tab$删除恢复测试时发现,tab$的索引i_tab1很小.可以尝试使用bbed解决这个问题.--//首先在普通表上做一个测试看看.1.环境:SCOTT@book> @ ver1PORT_STRING VERSION BANNER x ...
分类:
其他好文 时间:
2019-02-26 17:40:13
阅读次数:
195
import cx_Oracle as orcl class ConnectOracle: #scott xx 192.168.32.200 1521 oracle #sqlplus, system as sysdba, select instance_name from V$instance; #... ...
分类:
数据库 时间:
2019-02-26 16:50:33
阅读次数:
384