Forum Replies Created

Viewing 15 posts - 271 through 285 (of 687 total)

  • RE: Talking baseball

    Markus (3/19/2012)


    Andy P. seems to have baseball in his blood doesn't he... he can be tempted with a contract for more time pitching.

    I could possibly be tempted with a 2.5...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Talking baseball

    So the MLB channel had a weekend marathon of spring training awesomeness! I was able to watch a few games which was great, one of which was the New York/Washington...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: logic explanation

    ISNULL() is a function that returns a second value if the first is null. In your situation, if the last_updated_on field is null the created_on field will be used.

    YEAR( ISNULL(<if...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Converting varchar to datetime

    The string is too long to be converted to a datetime data type.

    try SELECT convert(datetime,'1/6/2012 12:36:35.631 PM')

    Or use datetime2 as coldcoffee suggested in his example.

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Why I am getting this cursor error? I don't think there should be an error.

    halifaxdal (3/14/2012)


    Lynn Pettis (3/14/2012)


    Has to be both of us. I count 19 columns in the defintion of the cursor and 19 variables.

    One question, why are you using a cursor?

    I...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Table Architecture Question

    Good call, no 🙁

    Here I thought I was being nifty in suggesting it. Upgrade!

    I saw you posted in 2005 and even made changes to my script to work in 2005...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Table Architecture Question

    I made up some DDL for this. If only 5% of answers have "other" as an answer, then what do you think about adding a sparse comment field to your...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Would that be a problem when I get a job?

    Yeah, Brent Ozar[/url] has a decent article on SAN basics and the different types of SAN storage. Check his 2nd SQL University link for SQL Storage related best practices on...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Would that be a problem when I get a job?

    Just search google for "RAID levels", "RAID Configurations", or "RAID Basics". There's tons of information out there on it.

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Would that be a problem when I get a job?

    It depends 🙂

    It depends on the type of company hiring you. If they have their own storage administrators then your depth of SAN knowledge doesn't need to be that great....

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Right and Left side Y-Axis

    Do you mean an X axis that goes into the negative?

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Talking baseball

    So the other day I was surfin' the intarwebs and I had a baseball game on in the background, I don't even remember who was playing. I realized how much...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: How to read from the SQL Agent Log.

    Here is a site that defines all the parameters for that extended procedure.

    exec xp_readerrorlog 1,2,null,null

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: CPU & Memory usage

    Glenn Berry[/url] has a great script for performance numbers. Check it out!

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Need Year & the Month of a Date Field Formated as 'YYYYMM'

    select convert(varchar(6),current_timestamp,112)

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

Viewing 15 posts - 271 through 285 (of 687 total)