1.oracle用户登录到Linux或者 win的cmd的内 登录##sqlplus 账号/密码 as sysdba $sqlplus sys/oracle as sysdba;备注:普通用户不需要as sysdba;##查看当前连接数据库用户sql>show user;##切换管理员SQL>con ...
分类:
数据库 时间:
2020-07-03 19:20:45
阅读次数:
70
Range Sum Query - Immutable (E) 题目 Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive. Example: Give ...
分类:
其他好文 时间:
2020-06-27 09:44:58
阅读次数:
46
s Linux下为Firefox(火狐)浏览器安装Flash插件 https://www.cnblogs.com/jimmycan/p/6047087.html 1、下载 flash_player_npapi_linux_.x86_64.tar.gz 释放其中的libflashplayer.so 文 ...
分类:
其他好文 时间:
2020-06-26 12:47:54
阅读次数:
48
1.John Deere Service Advisor License 2.John Deere Service Advisor Keygen Cracked John Deere Service Advisor License John deere payload encryptor-decry ...
分类:
其他好文 时间:
2020-06-24 12:01:53
阅读次数:
70
今天自己在家里做毕业设计,遇到了ORACLE数据库的一些问题,所以来总结一下。自己在上班的时候也遇到客户过提过这样的问题,当时自己在百度上查了,给客户解决完。自己也没有在意,这次又出现这个问题,又是折腾了一会。真不值,遇到过的问题一定要多去总结和回顾 (一) ONE 第一种情况可能是因为你的SQL中 ...
分类:
数据库 时间:
2020-06-20 12:57:50
阅读次数:
66
1. 理解函数编程 把函数理解成一个功能的单元,一个大的功能,可以有若干不同的小功能单元组成。 把大的需要,拆成小的功能。 把注意力集中在要做什么,然后如何精确的得到自己要做的。 2. 使用Func<> 示例: Func<int, int> f = x => x + 1; Func<int, int ...
分类:
其他好文 时间:
2020-06-17 20:36:30
阅读次数:
56
今天项目里遇到一个需求,密码输入框,不能输入中文,看了下主流的实现都是禁用输入法。 HIMC g_hIMC =NULL; richedit_ctrl_->AttachSetFocus([this](ui::EventArgs*){ g_hIMC = ImmAssociateContext(m_hWn ...
分类:
其他好文 时间:
2020-06-17 20:26:40
阅读次数:
42
如果想在任务成功或者失败额外做点事,可以重写Task类。 tasks.py from __future__ import absolute_import, unicode_literals from .celery import app from celery.task import Task cl ...
分类:
其他好文 时间:
2020-06-16 00:47:15
阅读次数:
358
Oracle12C开启归档模式 安装Oracle12C后,默认是没有开启归档模式的,可按以下方式开启。1、查看归档相关信息: archive log list 可以看到数据库未开启归档。2、关闭数据库:shutdown immediate 3、启动数据库至mount状态:startup mount ...
分类:
数据库 时间:
2020-06-08 12:48:29
阅读次数:
114
java8的流式处理极大了简化我们对于集合、数组等结构的操作,让我们可以以函数式的思想去操作,本篇文章将探讨java8的流式数据处理的基本使用。 一. 流式处理简介 在我接触到java8流式处理的时候,我的第一感觉是流式处理让集合操作变得简洁了许多,通常我们需要多行代码才能完成的操作,借助于流式处理 ...
分类:
编程语言 时间:
2020-05-31 19:39:34
阅读次数:
59