Forum Replies Created

Viewing 15 posts - 3,376 through 3,390 (of 6,041 total)

  • RE: Configuring sql alert for low memory

    Read this article. It will tell you for each active session how to get the KB memory requested by running query, actual KB granted, and KB considered ideal by optimizer...

  • RE: New to SQL Server 2014

    Hi Art,

    Just out of curiosity, is there no one else in your organization who knows a thing about SQL Server, or did the previous DBA pack up and leave? In...

  • RE: Configuring sql alert for low memory

    tauseef.jan (10/2/2015)


    SQL Surfer '66 (10/2/2015)


    Did you set the type to WMI event alert? I don't know much about WMI namespaces. I use the type SQL Server Performance Condition Alert instead,...

  • RE: The Work of the Ancients

    I was reading a post from someone recently where they noted that they didn't worry to much about the architecture of the system since it wouldn't likely last very long....

  • RE: Parsing unstructured CSV file

    It sounds like you're dealing with a file that has multiple record types. I can't think of any better explanation for a CSV file with a variable number of columns....

  • RE: Are you a Data Scientist?

    Steve Jones - SSC Editor (10/1/2015)


    I do usually tell people in Scouts or kids sports that I'm a computer guy. If they know something and want to ask more, I...

  • RE: ANY EASY WAY TO REDUCE THE CODE??

    Embedding lookup tables tends to result in complicated, repeated, hard to maintain, and inconsistent SQL code. Consider joining a meta-data reference table like so:

    create table CreditScoreRate

    (

    constraint PK_CreditScoreRate...

  • RE: need info on Preparing Checklist for Knowledge Transfer for SQL Server from the old/previous DBA.

    If you've only got 2 weeks until the old DBA leaves, then I'd highly recommend blocking off two or three days and asking the 20 really important questions first. The...

  • RE: Have a Think

    The Scrum development methodology, with it's small iterations, test driven development, daily stand-up meetings, and post-iteration retrospectives; why it works for so many projects is that forces team members to...

  • RE: Are you a Data Scientist?

    I simply tell family and friends that I work in Information Technology and then tell them what the company does. I don't provide more detail about my role, unless they...

  • RE: Are you a Data Scientist?

    Steve Jones - SSC Editor (9/30/2015)


    ccd3000 (9/29/2015)


    Well, I.T. hijacked and cheapened the 'Engineer' moniker a long time ago so why not 'Scientist'?

    Indeed we have.

    That's why I've typically called...

  • RE: need info on Preparing Checklist for Knowledge Transfer for SQL Server from the old/previous DBA.

    An almost identical question was asked a few years back.

    http://www.sqlservercentral.com/Forums/FindPost1279217.aspx

    - At least a couple of weeks before the old DBA walks out the door, ask him to add you to...

  • RE: Could not find server !

    To eliminate anything in the query as the cause, next see if a simple pass-through query against server FS1 will work.

    For example:

    EXEC ('select 1') AT FS1

  • RE: Could use some advice

    The Kimball methodology advocates first interviewing all essential stake holders, and then identifying (as much as practical) all business processes and common dimensions. He emphasizes modeling business processes, not departments....

  • RE: How to avoid using scalar User Defined Functions?

    Sometimes folks will use a UDF to abstract or reuse the implementation details of some transformation, when adding a computed column on a view or table works better for performance....

Viewing 15 posts - 3,376 through 3,390 (of 6,041 total)