码迷,mamicode.com
首页 >  
搜索关键字:邮件服务器 邮件收发报错 connection from (ip地址) refused    ( 81403个结果
Oracle ORA-01034,ORA-27101,ORA-00600
本机IP地址:192.168.1.163 [oracle@rtest ~]$ sqlplus /nolog SQL*Plus: Release 10.2.0.2.0 - Production on Sun May 4 19:32:13 2014 Copyright (c) 1982, 2005, Oracle.  All Rights Reserved. @...
分类:数据库   时间:2014-05-10 10:34:04    阅读次数:392
HDU 1102 && POJ 2421 Constructing Roads (经典MST~Prim)
链接:http://poj.org/problem?id=2421  或   http://acm.hdu.edu.cn/showproblem.php?pid=1102 Problem Description There are N villages, which are numbered from 1 to N, and you should build some roads ...
分类:其他好文   时间:2014-05-10 09:34:09    阅读次数:389
shell脚本练习题(更新中...)
练习题(这里贴的是自己写的代码, 网上给的题目代码我会附加在最下面)1.编写shell脚本,计算1-100的和; 1 #!/bin/bash 2 #caculate the sum of numbers from 1 to 100 3 4 sum=0 5 for i in `seq 1 100`;....
分类:其他好文   时间:2014-05-07 19:34:54    阅读次数:305
各个数据库中top 的表示方法
Select Top在不同数据库中的使用用法:1. Oracle数据库 SELECT * FROM TABLE1 WHERE ROWNUM<=N2. Infomix数据库 SELECT FIRST N * FROM TABLE13. DB2数据库 SELECT * ROW_NUMBER() OVER...
分类:数据库   时间:2014-05-07 19:12:48    阅读次数:366
开发问题解决志
2014.5.5 获取客户端真实ip地址出现问题,解答如下: When you have NAT (Network Address Translation) device before your servlet containerrequest.getRemoteAddr()returns the....
分类:其他好文   时间:2014-05-07 19:02:49    阅读次数:261
SQL Server获取指定行的数据
SQL Server获取指定行(如第二行)的数据--SQL Server获取指定行(如第二行)的数据----法一(对象法)--select * from(select * , number = row_number() over(orderby Grade desc) from Students)m...
分类:数据库   时间:2014-05-07 18:41:48    阅读次数:517
MySQL
MySQL中表之间的链接语句:关键词:INNER JOIN格式:SELECT 列名表 FROM 表名1 [INNER] JOIN 表名2 ON或WHERE条件表达式
分类:数据库   时间:2014-05-07 09:08:18    阅读次数:342
POJ-1042 Gone Fishing (贪心法求最佳钓鱼方案
John is going on a fishing trip. He has h hours available (1 <= h <= 16), and there are n lakes in the area (2 <= n <= 25) all reachable along a single, one-way road. John starts at lake 1, but he can finish at any lake he wants. He can only travel from on...
分类:其他好文   时间:2014-05-07 08:48:52    阅读次数:515
sql语句执行顺序
一、逻辑查询处理的各个阶段 (5)SELECT DISTINCT TOP()                        (1)FROM JOIN ON   (2)WHERE (3)GROUP BY (4)HAVING (6)ORDER BY 上边语句是一个普通格式的查询语句,基本包含了所有的查询条件和关键字。你可能会发现前边的序号并不是按顺序来的,被你说对了,这...
分类:数据库   时间:2014-05-07 08:26:11    阅读次数:476
POJ3525 Most Distant Point from the Sea(半平面交)
今天打算做两道半平面交,一题卡太久了,心都碎了。。。#pragma warning(disable:4996)#include #include #include #include #include #include #include using namespace std;#define maxn...
分类:其他好文   时间:2014-05-06 12:27:57    阅读次数:389
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!