记得去年9月28日赶到交大去听july的算法面试讲座,他给我们出的第一个题目就是用代码实现atoi,限时10mins。由于当时很久没接触编程,当堂没写出来。记得当时讲解的时候就是要我们特别注意边界条件。写程序就像砌围墙,得先把边界条件弄好。转眼一年过去了,再过几个月就要出去hunting job.....
分类:
编程语言 时间:
2014-07-07 10:05:41
阅读次数:
279
微软近期Open的职位:Job Title: Senior Engineering LeadDivision: Microsoft Business SolutionWork Location: Shanghai, ChinaThe Opportunity:Do you want to play a...
分类:
其他好文 时间:
2014-07-07 08:09:56
阅读次数:
340
将一批Job从一台agent服务器搬到另外一台agent, 没有做任何的修改,但是job执行的时候报错。1 Error: 2014-07-03 14:42:57.142 Code: 0xC02093033 Source: ReliabilityRS2008 Connection mana...
分类:
数据库 时间:
2014-07-06 23:23:24
阅读次数:
353
今天在闲暇时间练习了一下oracle任务计划,具体详情如下1.创建表TBL_TIMEcreatetabletbl_time(
idnumbernotnull,/*id号*/
vsecondvarchar2(2),/*秒*/
vtimevarchar2(10)/*当前时间*/
)2.创建序列seq_tbltimecreatesequenceseq_tbltime
startwith1
incrementby1
nomaxval..
分类:
数据库 时间:
2014-07-04 06:03:32
阅读次数:
386
假设有如下业务逻辑:我要搬到新地方去工作。 代码1:class Player{public: void setAddr(string name); void setJob(string job);private: string _name; string _job;}代码2:class Pl...
分类:
其他好文 时间:
2014-07-03 20:56:55
阅读次数:
232
背景: 应用程序,在某个时刻或出现超时,一开始以为是dbcc checktable造成,使用了各种手段抓取sql,xevent,profile都没有找到。 之前还写了一篇,[20140117]疑似checkpoint堵塞数据库连接,其实问题不是这个。问题: 出现超时一般是在索引整理的job运行...
分类:
其他好文 时间:
2014-07-02 10:29:30
阅读次数:
150
Rectangle and Circle
Problem Description
Given a rectangle and a circle in the coordinate system(two edges of the rectangle are parallel with the X-axis, and the other two are parallel with the Y...
分类:
其他好文 时间:
2014-07-02 07:29:06
阅读次数:
268
微软近期Open的职位:JOB TITLE: Software Design Engineer IIDEPARTMENT: Microsoft Office Division ChinaIMMEDIATE SUPERVISOR: Development LeadLocation: Beijing, ...
分类:
其他好文 时间:
2014-07-01 10:29:30
阅读次数:
299
今天一个开发问到一个not exists问题,小小做个实验
实验1
SQL> select * from emp e1 where not exists (select 1 from emp e2 where e1.mgr = e2.empno);
EMPNO ENAME JOB MGR HIREDATE ...
分类:
其他好文 时间:
2014-07-01 06:59:39
阅读次数:
164
1、错误描述
ORA-12801: 并行查询服务器P007中发出错误信号
ORA-01722:无效数字
12801.00000 -"error signaled in parallel query server %s"
*Cause: A parallel query server reached an exception condition.
*Action: Check the follow...
分类:
数据库 时间:
2014-07-01 06:22:10
阅读次数:
391