问题:
Write a program to solve a Sudoku puzzle by filling the empty cells.
Empty cells are indicated by the character '.'.
You may assume that there will be only one unique solution.
...
分类:
其他好文 时间:
2014-06-02 05:25:23
阅读次数:
295
连接数据库报错
[oracle@tips~]$sqlplus/assysdba
SQL*Plus:Release11.2.0.3.0ProductiononFriJun2918:44:032012
Copyright(c)1982,2011,Oracle.Allrightsreserved.
ERROR:
ORA-09817:Writetoauditfilefailed.
Linux-x86_64Error:28:Nospaceleftondevice
Additionalinforma..
分类:
系统相关 时间:
2014-06-02 04:12:14
阅读次数:
915
解决办法
--创建中转临时表空间
2.createtemporarytablespaceTEMP02TEMPFILE‘/u01/app/oracle/oradata/perm/temp02.dbf‘SIZE1024MREUSEAUTOEXTENDONNEXT640KMAXSIZEUNLIMITED;
--改变缺省临时表空间为刚刚创建的新临时表空间temp02
3.alterdatabasedefaulttemporarytablespace..
分类:
其他好文 时间:
2014-06-02 04:01:51
阅读次数:
1213
#过滤oracle警告日志文件ORA-错误
$c=Get-ContentC:\script.txt|select-string-pattern"ora-"
#判断ORA-错误存在条件
#若$c返回值为null,则输出1返回值结束循环
if($c-eq$null)
{
write-host"STATE_OK"
$STATE_OK={return1;}
$b=&$STATE_OK
$b
}
#若$c返回值不为空,..
分类:
其他好文 时间:
2014-06-02 03:26:07
阅读次数:
197
一、Win7X64系统安装sybaseodbc:1、下载对应包至c:\system_odbc(文件夹名自己取,在后面注册表内容需要用到),接着需要将该目录添加至path环境变量下;2、将值信息写入到注册表内:WindowsRegistryEditorVersion5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\ODBC\ODBCINST.IN..
分类:
数据库 时间:
2014-06-02 03:21:37
阅读次数:
336
收集数据库信息时候报ORA-01652错如下
SQL>EXECDBMS_STATS.gather_database_stats;
BEGINDBMS_STATS.gather_database_stats;END;
*
ERRORatline1:
ORA-01652:unabletoextendtempsegmentby128intablespaceTEMP01
ORA-06512:at"SYS.DBMS_STATS",line13210
ORA-06512:at"SYS..
分类:
其他好文 时间:
2014-06-02 03:20:19
阅读次数:
316
写了一个powershell脚本测试脚本,结果执行的时候报错
$a=Get-ContentC:\script.txt|select-string-pattern"ora"
if($a-eq$null)
{
write-host"error"
}
else
{
write-host"OK"
}
PSD:\>.\pshell.ps1
无法加载文件D:\pshell.ps1,因为在此系统中禁止执行脚本。有关详..
分类:
其他好文 时间:
2014-06-02 03:17:04
阅读次数:
244
<?php
/**
* 文件操作(生成日志)支持多条插入
* (如果插入多条语句并换行 用','逗号分开)
*
*/
class log {
public $path = './info.txt'; //默认值文件
public $mode = 'a'; //默认追加写
public $content = '默认值:空'; //默认内容是 空
public ...
分类:
Web程序 时间:
2014-06-02 02:35:45
阅读次数:
231
C# Console 输出
C#控制台输出有两种方法:Write()和WriteLine(),它们都是命名空间System中Console类的方法,能够直接输出C#提供的所有基本数据类型。区别是后者输出后换行。
1.基本输出
基本数据类型的简单输出形式为:
Console.Write("格式串{参数序号}",参数表);
{0}和{1}分别代表后面的参数,0为第一个参数,1为第二个,以此类...
分类:
其他好文 时间:
2014-06-02 02:29:17
阅读次数:
268
题目链接:
http://poj.org/problem?id=3126
题目:
Prime Path
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 10737
Accepted: 6110
Description
The ministers of...
分类:
其他好文 时间:
2014-06-02 02:21:22
阅读次数:
228