Showing posts with label client. Show all posts
Showing posts with label client. Show all posts

Friday, March 30, 2012

Knowlege transfer Template

Hi All,
I would need to do a Knowledge transfer to my client. So I require
Knowledge transfer Template or Knowledge transfer plan for SQL Server
DBA role. Please guide me on this or please send me any useful
documents or useful links?
Thanks and regards
Hi
I don't know of this being written anywhere but here are a few suggestions:
Write down what should be general or expected knowledge needed
Write down where he can find out about this in more detail e.g. web sites,
recommended courses/books etc...
Make sure system(s) are fully documented in an form where the information
can be found and understood.
Write down specific knowledge needed
Write down a framework for documentation/tutorials etc that can be used to
transfer this information
Write down a plan for how this will be transferred including what the client
needs to know before you start and the timescales involved.
Agree the above with the client and execute it, making sure that you note
any additional information that is required whilst carrying out the plan.
Agree any additional support needs required including leaving your contact
details.
John
"Praveen" wrote:

> Hi All,
> I would need to do a Knowledge transfer to my client. So I require
> Knowledge transfer Template or Knowledge transfer plan for SQL Server
> DBA role. Please guide me on this or please send me any useful
> documents or useful links?
> Thanks and regards
>

Knowlege transfer Template

Hi All,
I would need to do a Knowledge transfer to my client. So I require
Knowledge transfer Template or Knowledge transfer plan for SQL Server
DBA role. Please guide me on this or please send me any useful
documents or useful links?
Thanks and regardsHi
I don't know of this being written anywhere but here are a few suggestions:
Write down what should be general or expected knowledge needed
Write down where he can find out about this in more detail e.g. web sites,
recommended courses/books etc...
Make sure system(s) are fully documented in an form where the information
can be found and understood.
Write down specific knowledge needed
Write down a framework for documentation/tutorials etc that can be used to
transfer this information
Write down a plan for how this will be transferred including what the client
needs to know before you start and the timescales involved.
Agree the above with the client and execute it, making sure that you note
any additional information that is required whilst carrying out the plan.
Agree any additional support needs required including leaving your contact
details.
John
"Praveen" wrote:
> Hi All,
> I would need to do a Knowledge transfer to my client. So I require
> Knowledge transfer Template or Knowledge transfer plan for SQL Server
> DBA role. Please guide me on this or please send me any useful
> documents or useful links?
> Thanks and regards
>

Knowlege transfer Template

Hi All,
I would need to do a Knowledge transfer to my client. So I require
Knowledge transfer Template or Knowledge transfer plan for SQL Server
DBA role. Please guide me on this or please send me any useful
documents or useful links?
Thanks and regardsHi
I don't know of this being written anywhere but here are a few suggestions:
Write down what should be general or expected knowledge needed
Write down where he can find out about this in more detail e.g. web sites,
recommended courses/books etc...
Make sure system(s) are fully documented in an form where the information
can be found and understood.
Write down specific knowledge needed
Write down a framework for documentation/tutorials etc that can be used to
transfer this information
Write down a plan for how this will be transferred including what the client
needs to know before you start and the timescales involved.
Agree the above with the client and execute it, making sure that you note
any additional information that is required whilst carrying out the plan.
Agree any additional support needs required including leaving your contact
details.
John
"Praveen" wrote:

> Hi All,
> I would need to do a Knowledge transfer to my client. So I require
> Knowledge transfer Template or Knowledge transfer plan for SQL Server
> DBA role. Please guide me on this or please send me any useful
> documents or useful links?
> Thanks and regards
>sql

Monday, February 20, 2012

keep dropping snapshot because of Mirroring

Hi Experts,
i have a doubt btw he Mirroring and snapshot, since we cannot
directly touch the mirror DB, then we only can use snapshot for client
to query, however for my understanding, only way to maintain to the
latest info to client is drop the snapshot DB and create another DB
for snapshot. actually that is very hard for us to do the programming
(keep swtiching DB connection). is there other better solution for
this?try to imagine,we need to always pull the latest information from
warehouse give to customer, 1.we need very offen to drop the snapshot,
2. we need to keep swarp the connection to point to DB.
pls give some advise,
thanksI would agree that a database snapshot on a database mirror is not a good
solution for querying data if you need the data to be current. Mirroring is
primarily a high-availability solution. Using a snapshot of the mirror
makes the secondary available for queries but providing a queryable database
is not the main use for a mirror. If you want to be able to query an up to
date copy of the data, you would be much better off using transactional
replication to maintain the queryable copy. If you need a mirror for
availability purposes and still want to query the mirror you will have to
live with the limitations of database snapshots. This includes having to
reconnect to get to the latest snapshot. I assume that the easiest way to
do this would be to provide a service that tracks and maintains the current
version and hands out connections to application that need them.
--
This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm
"XJ" <ianyian@.gmail.com> wrote in message
news:1180451905.626097.230740@.i13g2000prf.googlegroups.com...
> Hi Experts,
> i have a doubt btw he Mirroring and snapshot, since we cannot
> directly touch the mirror DB, then we only can use snapshot for client
> to query, however for my understanding, only way to maintain to the
> latest info to client is drop the snapshot DB and create another DB
> for snapshot. actually that is very hard for us to do the programming
> (keep swtiching DB connection). is there other better solution for
> this?try to imagine,we need to always pull the latest information from
> warehouse give to customer, 1.we need very offen to drop the snapshot,
> 2. we need to keep swarp the connection to point to DB.
> pls give some advise,
> thanks
>