Forum Replies Created

Viewing 15 posts - 436 through 450 (of 518 total)

  • RE: SQL Server 2008 R2 Database migration

    Backup, detach, restore.

    If something blows up, just re-attach the DBs to the original server and repoint your apps.

    I use this method whenever possible.

  • RE: User DB Transaction Log fills up When Running Online Index Rebuild With SORT_IN_TEMPDB = ON

    What is the size of all indexes together/size of the table?

    sort_in_tempdb does in fact move the logging process for indexing to tempdb, but if it's on full recovery, then the...

  • RE: Log Shipping Disaster Recovery

    In case that was a bit unclear, there's a few steps here...assuming you have logs taken at regular intervals (every 15 mins, every hour, etc):

    1) Run the restore job to...

  • RE: I want to get employee name who is drawing the highest sal in each dept

    george sibbald (9/7/2010)


    select ename, sal from employees where job_desc = 'dba'

    works for me 🙂

    Don't forget to enable filestream for the job_responsibilities field if we're including DBAs.

  • RE: Sharepoint 2010

    I've used SP2010 and just set up the databases on our existing SQL 2k8 server we already had in-place...not a separate \sharepoint instance. I try to avoid letting SP (or...

  • RE: Cluster Index - Huge Table - 0 Fragmentation - Clustered Index Scan???

    Also keep in mind that every insert/update will take twice as long with an index like that (or longer, if any page splits/moves/etc occur).

  • RE: SQL Server 2008 64 bit

    I have a cluster running Win 2k3 x64 with the following SQL versions:

    SQL 2000 Ent x86

    SQL 2005 Ent x64

    SQL 2008 Ent x64

    All 3 have run on the same node during...

  • RE: Any Tips for New DBA Job ?

    After I verify everything is working as it should (Backups being taken regularly, replication/log shipping/mirroring working OK, no outstanding issues/problems), I set up a centralized reporting database and feed data...

  • RE: Do we need to set the preferred node?

    I never worry about a preferred node..Never really understood that anyway, since both nodes should be identical hardware/settings. It shouldn't matter which one it's on.

  • RE: different time for same query

    The first time you exec a query, it has to create an execution plan, pull the data, etc.

    The second time, unless it has been flushed, it will already have the...

  • RE: Resource type showing as unknown

    Unless it's causing an issue, I wouldn't worry about it. As far as I know it's just a label. I checked a few of my clusters and they all show...

  • RE: 100 % cpu

    Someone just touched on it...check your max degree of parallelism, and then check how many processes are waiting on CXPACKET. If you have a ton of cxpacket waits, lower your...

  • RE: Setting Up SQL Alert Response

    Looks like an SSMS/gui error. Try rebooting that computer, or connecting with SSMS from a different machine?

  • RE: Resource type showing as unknown

    I'm pretty sure this happens because you created the cluster group first without any application in it, i.e. just an empty group, and then installed SQL onto it and pointed...

  • RE: Interview Questions

    Even if you don't know the correct answer, describe your thought process to them. They're looking to see how well you handle things you might be unfamiliar with. If your...

Viewing 15 posts - 436 through 450 (of 518 total)