avatar
x*q
2
我的T60p,winXP, sp3. 以前没有着毛病,最近不知道windows多了什么还是少了什么。
如果我启动printer spooler service就没办法合上屏幕后自动休眠。请问这是怎么回
事。
avatar
f*5
3
help needed with C++ code of the algorithm
Input: n=total amount of money
Check denomination: a1,a2, …..ak..
Output: minimum amount change=money[n]
1 money[0]=0
2 money[1]=1
3 for I from 2 to k
4 min_tmp=n
5 for j from 0 to n
6 if i>=aj
7 min_tmp=min(money[i-aj] +1, min_tmp)
8 money[i]=min_tmp;
thanks
avatar
b*g
4
别浪费钱了,证书没用
avatar
c*r
5
vector.sort
avatar
s*o
6
那你说啥有用,你要是微软的MVP,还愁没有工作啊

【在 b******g 的大作中提到】
: 别浪费钱了,证书没用
avatar
f*5
7
It compiles!!
#include
using namespace std;
int moneyChange(int *money, int len, int i);
int main(void)
{
int len=11;
int money[]={0,1,0,0,0,0,0,0,0,0,0};
int amount=10;
moneyChange(money, 11, 10);
for (int i=0;icout<system("pause");
return 0;
}
int moneyChange(int *money, int , int i){
int min_temp=i;
int denom[3]={1, 3, 4};
if (i==0) return 0;
else if (i==1) return 1;
else{
for( int j=0 ; j<3; j++){
if (i>=denom[j])
{
int k=( i-denom[j] );
int changeNum=moneyChange(money, 11, k);
min_temp=min(changeNum+1, min_temp);
}

}
money[i]=min_temp;
return money[i];

}//end of else


}//end of moneyChange
int min(int a, int b){
if(a>b)
return b;
else
return a;
}

【在 c***r 的大作中提到】
: vector.sort
avatar
z*y
8
MVP 也不见得技术上有多好。
02年以前MVP主要是看技术。 02年以后, MVP更多的是看对社区的贡献。 我就面试过
不咋地的MVP。 问了一个简单的问题, 大家不妨答一下。 这是一个开放的问题,
google是找不到了, 我自己找过。
You are facing a production server for the first time and your client
complains to you oe database has no full backup for three days. What's your
steps to troubleshoot this issue?
这位老兄的回答是:go ahead make full backup and see if it failed again. Then
we can from there.
He has been MVP on year 03, 05 and 06.

【在 s**********o 的大作中提到】
: 那你说啥有用,你要是微软的MVP,还愁没有工作啊
avatar
B*g
9
能挣钱就行

your
Then

【在 z***y 的大作中提到】
: MVP 也不见得技术上有多好。
: 02年以前MVP主要是看技术。 02年以后, MVP更多的是看对社区的贡献。 我就面试过
: 不咋地的MVP。 问了一个简单的问题, 大家不妨答一下。 这是一个开放的问题,
: google是找不到了, 我自己找过。
: You are facing a production server for the first time and your client
: complains to you oe database has no full backup for three days. What's your
: steps to troubleshoot this issue?
: 这位老兄的回答是:go ahead make full backup and see if it failed again. Then
: we can from there.
: He has been MVP on year 03, 05 and 06.

avatar
z*y
10
那你回答一下我的问题。 Oracle 下怎么做?

【在 B*****g 的大作中提到】
: 能挣钱就行
:
: your
: Then

avatar
B*g
11
俺是开发地,不管这个,不过我觉得先查现有的plan,再看看log

【在 z***y 的大作中提到】
: 那你回答一下我的问题。 Oracle 下怎么做?
avatar
z*y
12
我觉得你的回答比他好许多。
这些年那你进步很快。

【在 B*****g 的大作中提到】
: 俺是开发地,不管这个,不过我觉得先查现有的plan,再看看log
avatar
s*o
13
3天没FULL BACKUP,一般情况是RUN OUT OF SPACE,做不出FULL BACKUP,去看一下FULL
BACKUP JOB ERROR和目标FOLDER。你这种根本就不是什么SOLUTION的问题,就是个DBA
的常见问题么。
avatar
z*y
14
是DBA常见问题不错。我一般问问题都是常见问题, 而且没有唯一答案。 你的回答有
没有有待商榷的地方呢?

FULL
DBA

【在 s**********o 的大作中提到】
: 3天没FULL BACKUP,一般情况是RUN OUT OF SPACE,做不出FULL BACKUP,去看一下FULL
: BACKUP JOB ERROR和目标FOLDER。你这种根本就不是什么SOLUTION的问题,就是个DBA
: 的常见问题么。

avatar
s*o
15
当然有了,比如NETWORK出问题了,BACKUP不出去啥的。你这是HANDS ON的经验问题,
跟SOLUTION没啥关系,只有搞开发搞系统才来钱的,BACKUP就是个维护,可有可无,
公司说是很重视,但其实根本不在乎,LOL

【在 z***y 的大作中提到】
: 是DBA常见问题不错。我一般问问题都是常见问题, 而且没有唯一答案。 你的回答有
: 没有有待商榷的地方呢?
:
: FULL
: DBA

avatar
m*d
16
监控的script也有问题,3天都没backup,script竟然没动作。

【在 B*****g 的大作中提到】
: 俺是开发地,不管这个,不过我觉得先查现有的plan,再看看log
avatar
s*o
17
我觉得人MVP说的也没错,先自己手动BACKUP LOCAL一下看看有什么问题了,再看是不
是网络和目标盘的问题,也有JOB太多耗资太大数据库改动过多,FULL BACKUP RUN不完
的,比较少见。
avatar
B*g
18
监控难道不是plan的一部分吗?

【在 m****d 的大作中提到】
: 监控的script也有问题,3天都没backup,script竟然没动作。
avatar
s*o
19
监控有另外的JOB,比如你有100个SERVER,CHECK每个SERVER的BACKUP会累死人的,写
一个SSIS的JOB可以CHECK所有的BACKUP HISTORY,我面试的时候问过这个问题,多数都
不会。

【在 B*****g 的大作中提到】
: 监控难道不是plan的一部分吗?
avatar
z*y
20
我后悔跳进来, 肯请斑竹删我的帖子。

【在 B*****g 的大作中提到】
: 监控难道不是plan的一部分吗?
avatar
a*4
21
别调皮了,快说说解决方法吧

【在 z***y 的大作中提到】
: 我后悔跳进来, 肯请斑竹删我的帖子。
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。