Redian新闻
>
刚刚结束的SENIOR SQL SERVER DBA 面试
avatar
刚刚结束的SENIOR SQL SERVER DBA 面试# Database - 数据库
z*y
1
To warm up: what is inner join what is out join, and cross apply
what is the benefit using stored procedure.
How to identify perf issue on stored procedure.
Have you use profiler to troubleshooting perf issue of stored procedure, if
so what are those events you monitored
explain me what is lock
explain me the overview of replication, (bonus: Do you know the difference b
/t eager replication and lazy replication?_
What is trigger, any special thing you need be aware of in replication
environment.
avatar
z*y
2
The result:
Not very good... But good personality...good behavior with pressure We want
to proceed bringing her onsite.
So 态度决定一切啊。
avatar
a*t
3
I am looking too. I can probably get 75% of the questions : ]

want

【在 z***y 的大作中提到】
: The result:
: Not very good... But good personality...good behavior with pressure We want
: to proceed bringing her onsite.
: So 态度决定一切啊。

avatar
z*y
4
75% 已经不错了。 不过这个应试,我是好多问题没有想问。
如果有100% 回答的,欢迎你QQH我,如果你想找一个很challenging 的工作。 工资肯
定是比你现在高。 事实上, 在DC, 很少dba 包括oracle dba, 能拿到比我们这里高
的工资。
avatar
a*t
5
透露1下工资, 讓我有一個 fun duo 目標
avatar
c*a
6
很好奇在DC area 工资水平如何

【在 z***y 的大作中提到】
: 75% 已经不错了。 不过这个应试,我是好多问题没有想问。
: 如果有100% 回答的,欢迎你QQH我,如果你想找一个很challenging 的工作。 工资肯
: 定是比你现在高。 事实上, 在DC, 很少dba 包括oracle dba, 能拿到比我们这里高
: 的工资。

avatar
c*t
7
co-ask... 好奇。

【在 a*******t 的大作中提到】
: 透露1下工资, 讓我有一個 fun duo 目標
avatar
w*e
8
我差不多也这个数吧...:)

【在 a*******t 的大作中提到】
: I am looking too. I can probably get 75% of the questions : ]
:
: want

avatar
k*e
9
貌似都知道点。不敢说全对,但是都能侃上一侃。嘿呀。
avatar
h*n
10
我也觉得都能扯扯,好像没有特别怪的问题
avatar
c*d
11
想问问zenny, jackrun, Assailant和其他sql server dba
在sql server中replication这么重要吗?
实际工作中有很多replication application吗?
我注意到zenny出的题都会问replication,并且比重较高
至少oracle里replication不是key question
avatar
c*d
12
谁给解释一下这几个问题,让我学习一下
3. How to identify perf issue on stored procedure.
profile for sure. and sp_trace? (没用过)
4. Have you use profiler to troubleshooting perf issue of stored procedure,
if so what are those events you monitored
SP:CacheHit
SP:CacheMiss
SP:Completed
anything else?
7. What is trigger, any special thing you need be aware of in replication
environment.
if trigger of delete on table A will delete rows in table B
A and B are in the publication.
anything else?
8. Where are the snapshot a
avatar
J*n
13
不愧是senior,我一多半都说不出
avatar
z*y
14
sorry, not detail attach,
it is detach , attach.
I just wrote a blog you can take a look...
http://sqlwarrior.spaces.live.com/blog/cns!339DC43E0A004867!389.entry

,

【在 c*****d 的大作中提到】
: 谁给解释一下这几个问题,让我学习一下
: 3. How to identify perf issue on stored procedure.
: profile for sure. and sp_trace? (没用过)
: 4. Have you use profiler to troubleshooting perf issue of stored procedure,
: if so what are those events you monitored
: SP:CacheHit
: SP:CacheMiss
: SP:Completed
: anything else?
: 7. What is trigger, any special thing you need be aware of in replication

avatar
z*y
15
复制很重要.
曾经看过GFS下 ad division 的diagram,复制的一塌糊涂。
gfs is for global foundation services.

【在 c*****d 的大作中提到】
: 想问问zenny, jackrun, Assailant和其他sql server dba
: 在sql server中replication这么重要吗?
: 实际工作中有很多replication application吗?
: 我注意到zenny出的题都会问replication,并且比重较高
: 至少oracle里replication不是key question

avatar
i*a
16
well, other than the obvious cases for data replication,
replication can also be used for load balancing configuration. SQL server
doesn't have native support for load balancing

【在 c*****d 的大作中提到】
: 想问问zenny, jackrun, Assailant和其他sql server dba
: 在sql server中replication这么重要吗?
: 实际工作中有很多replication application吗?
: 我注意到zenny出的题都会问replication,并且比重较高
: 至少oracle里replication不是key question

avatar
z*y
17
的确是这样.
一般的实现是有一个STAGING sql server, 内容被复制到数个只读服务器上。 西边
东边的都有。
然后在应用层实现load balance
微软已经明确表示不会像oracle一样搞rac, 那个设计上是好但是造价高。
你看nasdaq的应用层的load balance实现,就知道除了rac还是
有别的途径的。

【在 i****a 的大作中提到】
: well, other than the obvious cases for data replication,
: replication can also be used for load balancing configuration. SQL server
: doesn't have native support for load balancing

avatar
c*d
18
good point, thanks

【在 i****a 的大作中提到】
: well, other than the obvious cases for data replication,
: replication can also be used for load balancing configuration. SQL server
: doesn't have native support for load balancing

avatar
c*d
19
有nasdaq利用replication做load balance的介绍文档或是白皮书吗?

【在 z***y 的大作中提到】
: 的确是这样.
: 一般的实现是有一个STAGING sql server, 内容被复制到数个只读服务器上。 西边
: 东边的都有。
: 然后在应用层实现load balance
: 微软已经明确表示不会像oracle一样搞rac, 那个设计上是好但是造价高。
: 你看nasdaq的应用层的load balance实现,就知道除了rac还是
: 有别的途径的。

avatar
a*b
22
These are very standard questions.
avatar
p*l
23
Nod, detail please...

【在 c*****d 的大作中提到】
: 嗯,这个case study没讲技术细节
: 找到详细的发给我们看看

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