出错信息:ORA-1031 signalled during: create tablespace 表空间名 datafile '+DATA' size 10M autoextend on next 5M maxsize unlimited...问题描述新部署的oracle环境,有一个需求在designer用户下每天凌晨1点job调用存储过程创建表空间。该用户已经有connect,resource
原创 2014-09-12 21:51:19
1820阅读
以下转自:http://mikixiyou.iteye.com/blog/1584891 作者:mikixiyou在linux 操作系统的数据库服务器上,使用”sqlplus / as sysdba” 登录Oracle 10.2 数据库实例时,登录失败,显示ORA-01031:  权限不足。在数据库所在服务器上登录的操作,使用的是操作系统认证方式登录数据库实例。在出现“ORA-01031
转载 精选 2014-01-20 19:29:50
535阅读
PAT 1031 代码及坑点
原创 2021-07-08 14:17:55
60阅读
PAT 1031 代码及坑点
原创 2022-01-28 15:13:26
74阅读
1 class Solution(object): 2 def getMaxByCount(self,A,maxlen): 3 curmax = 0 4 curmax = sum(A[:maxlen]) 5 bigmax = curmax 6 n = len(A) 7 for i in rang
转载 2019-04-21 12:41:00
10阅读
1031 质数环 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 黄金 Gold 题解 1031 质数环 1031 质数环 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 黄金 Gold 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 黄金 Go
原创 2021-06-04 20:08:56
243阅读
1031. 查验身份证(15)时间限制200 ms内存限制65536 kB代码长度限制800
原创 2022-08-30 10:05:38
42阅读
1031. Hello World for U (20)时间限制400 ms内存限制65536 kB代码长度限
原创 2022-08-30 10:19:17
33阅读
题目链接:热浪 题意就是给你一堆路径,然后让你找某两个点之间的最短路,然\
原创 2022-08-31 10:35:38
52阅读
Given any string of N (≥) characters, you are asked to form the characters into the shape of U. For example, helloworld can be printed as: h d e l l r
转载 2020-06-15 14:48:00
75阅读
题目题意:给定字符串,按照U的形式输出。#include<iostream>using namespace std;int main(
原创 2023-06-27 10:17:50
72阅读
#include<iostream> #include<vector> #include<map> #include<queue> #include<string> #include<cstring> using namespace std; const int MAXN = 205; const int INF = 1000000; int dis[MAXN]; int n;//结点数量 typedef pair<int,int> pii; struct edge//建立边的结构体 { int v; //v表
转载 2011-07-04 18:37:00
33阅读
URAL_1031     dp的方程还是很好写的,但如果用裸的O(N^2)的dp的话应该会超时(不过后来翻解题报告的时候有人说O(N^2)也可以过),于是要优化dp的过程。     既然维数已经是一维了,不妨去着眼优化决策的过程,于是猜想到可能费用随着距离的增加是单调递增的(不过即便不是单调递增的,根据dp的方程我们也依然可以用单调队列进行优化),下面就来证明这一点。     设由x出发到y、z
转载 2012-05-03 10:48:00
54阅读
2评论
对于一个数n,如果是偶数,就把n砍掉一半;如果是奇数,把n变成 3*n+ 1后砍掉一半,直到该数变为1为止。 请计算需要经过几步才能将n变到1,具体可见样例。 测试包含多个用例,每个用例包含一个整数n,当n为0 时表示输入结束。(1<=n<=10000) 对于每组测试用例请输出一个数,表示需要经过的
转载 2018-10-02 11:00:00
54阅读
2评论
热浪Time Limit: 1 SecMemory Limit: 256 MB题目连接http://tyvj.cn/p/1031Description德克萨斯纯朴的民眾们这个夏天正在遭受巨大的热浪!!!他们的德克萨斯长角牛吃起来不错,可是他们并不是很擅长生產富含奶油的乳製品。 FarmerJohn此...
原创 2021-07-16 14:39:22
99阅读
Lausanne Capitale OlympiqueTime Limit: 1000msMemory Limit: 65536KBThis problem will be judged onOpenJudge. Original ID:103164-bit integer IO format:%l...
转载 2014-11-16 19:02:00
102阅读
2评论
Description 喜欢钻研问题的JS同学,最近又迷上了对加密方法的思考。一天,他突然想出了一种他认为是终极的加密办法 :把需要加密的信息排成一圈,显然,它们有很多种不同的读法。例如下图,可以读作: JSOI07 SOI07J OI07JS I07JSO 07JSOI 7JSOI0把它们按照字符
转载 2017-01-04 21:29:00
44阅读
2评论
#include <iostream>#include <algorithm>#include <cstdio>using namespace std;int a[109];int b[109];int main(){ int n,i,s=0,t,c=0; scanf("%d",&n); for(i
转载 2018-11-18 19:00:00
165阅读
2评论
题意: 把字符串变成U型,左边n1个,右边n3个,底部n2个。 主要是理解这一句:  n1 = n3 = max { k| k 2 for all 3 2 <= N } with n1 + n2 + n3 - 2 = N. 这句话的意思是 1. n1等于n3,  2. 对于3n1 + n2 + n3 - 2 = N 3.从k n1 而n
原创 2022-09-26 10:00:03
43阅读
Given any string of N (>=5) characters, you are asked to form the characters into the shape of U. For example, "helloworld" can be printed as: h d e l l r lowo That is, the characters must be pr
原创 2023-09-05 09:33:31
83阅读
  • 1
  • 2
  • 3
  • 4
  • 5