Forum Replies Created

Viewing 15 posts - 3,796 through 3,810 (of 19,560 total)

  • RE: New DBA + Bankruptcy = Career Doom?..

    I don't think it would be worth it.

    Many employers pull the credit history these days and do make that judgement if there are big dings on the credit.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Performance Tuning Through Panic

    Until clients and vendor are willing to tune their code, many problems will only be masked by hardware.

    For a time. Then they'll reappear.

    Getting clients and vendors to tune code is...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Top Talent Leaves

    I don't know if I'd prefer to see people in technology working only a few jobs during their careers, spending decades at each, or if we are better workers with...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Did This Work? - Forum Changes at SQLServerCentral

    I like the change. I hope that more and more people will start to use it and provide some sort of feedback along those lines.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: T-SQL script to automatically restore the transaction logs?

    My understanding of the requirements now is as follows:

    You want to find the latest log backup in a series of backups that has not been restored to a different server

    You...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Backup problem with specific drive

    Since you are able to back this database up to a different volume it sounds like the drive that is failing might have some problems. This could be anything...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: OS Disk Capacity Information

    @jeff and others,

    You might be interested in this solution provided here.

    http://sqlblog.com/blogs/merrill_aldrich/archive/2011/01/04/posh-y-sql-disk-space-monitoring.aspx

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: How do i get usernames for everydatabase including the admins

    nagkarjun1 (2/7/2014)


    Thank you guys for the reply's. Really Appriciate them

    Lowell script worked like charm. modified little

    SELECT r.name,dbs.DatabaseName

    FROM master.sys.server_principals r

    ...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Are the posted questions getting worse?

    Lynn Pettis (2/7/2014)


    I have been home since Sunday afternoon and today is the first day it has been warmer than it has been at night back in Afghanistan.

    Welcome Back

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: How to write a Query to get related result

    That end date was one of the questions around the requirements that we already asked about.

    How do you know that the end date should be 12/31 or 6/17 when there...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Are the posted questions getting worse?

    Uh yeah. I'm in if Steve brings them to Summit to go with Kilt Day this year.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Maintenance Plan

    One other thing about using the maintenance plans. There is a very important feature you can't do with regards to backups. The only means to perform a checksum...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Maintenance Plan

    New Born DBA (2/7/2014)


    Why is it not good practice to use Wizard when creating a maintenance plan? Most DBA's recommends creating it with the script so you have more control...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Oddball Interview Questions

    Evil Kraig F (2/7/2014)


    I've always disliked those types of trick questions, and I've sat often enough on both sides of the table.

    "How would you fill a cup of coffee with...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: How do i get usernames for everydatabase including the admins

    A more basic approach might be something like this

    sp_MSforeachdb 'use ?; SELECT DB_NAME() AS DBName,name AS UName, type_desc AS Usertype

    FROM sys.database_principals

    WHERE type like ''[GUS]''

    AND sid IS NOT NULL;

    '

    edit fix...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

Viewing 15 posts - 3,796 through 3,810 (of 19,560 total)