Forum Replies Created

Viewing 15 posts - 8,626 through 8,640 (of 9,399 total)

  • RE: Today's Random Word!

    bitbucket-25253 (12/6/2013)


    crookj (12/6/2013)


    Cool (-6 degrees outside)

    Snow

    Ice

  • RE: Are the posted questions getting worse?

    Grant Fritchey (12/6/2013)


    Oh well heck, everyone else has said it and now I feel left out.

    Congrats Gail.

    What was it you did again?

    ...

    Kidding, kidding. Put that stick down... 😛

    Yeah...I hear Gail...

  • RE: how to calculate min and max datetime ?

    general20 (12/6/2013)


    thank you very much.

    but it doest give me correct solution.

    I want to set between which date are going to calculate .

    for example 12-07-2013 between 12-09-2013

    On the other hand, whats...

  • RE: Alter Table Condition

    So you have columns named 20131206, 20131107 and 20131108? You're keeping some type of history for 30 days, but why would you store dates as columns instead of storing...

  • RE: how to calculate min and max datetime ?

    general20 (12/6/2013)


    Hello All,

    I want to calculate min and max datetime for every person one by one.

    There are 50 person in this data and also there are datetime information everyday.

    I want...

  • RE: Today's Random Word!

    BWFC (12/6/2013)


    Ed Wagner (12/4/2013)


    crookj (12/4/2013)


    Ed Wagner (12/4/2013)


    JAZZ Master (12/3/2013)


    crookj (12/3/2013)


    Revenant (12/3/2013)


    Ed Wagner (12/3/2013)


    whereisSQL? (12/3/2013)


    opc.three (12/3/2013)


    Framework

    Wrapper

    Reuse

    Repurpose

    Hand-me-down

    Seconds

    Dinner 😀

    Pippin

    Ring (from the Lord of the Rings)

    Cycle

    Life Cycle

  • RE: Hekaton

    While I'm anxious to try out in-memory OLTP, it leaves me with two questions.

    1. How are the transaction logs stored? If they aren't written to disk, we'll lose durability,...

  • RE: SQL code

    Luis Cazares (12/5/2013)


    DATEADD(mm, DATEDIFF(mm, 0, GETDATE()) - 1, 0)

    Is getting the first day of previous month.

    DATEADD(mm, DATEDIFF(mm, 0, GETDATE()), 0)

    Is getting the first day of current month.

    - '00:00:01'

    Is substracting...

  • RE: Database Password Protected

    GilaMonster (9/7/2013)


    Don't use sa. Use specific accounts for specific users with minimal permissions. Strong passwords or preferably windows authentication.

    +1. In fact, just disable the sa login completely. If you...

  • RE: SQL code

    eobiki10 (12/5/2013)


    Hi All,

    Can someone help me interpret what this code is doing.

    open_date BETWEEN DATEADD(mm, DATEDIFF(mm, 0, GETDATE()) - 1, 0) AND DATEADD(mm, DATEDIFF(mm, 0, GETDATE()), 0) - '00:00:01'

    and is...

  • RE: Condition in a Where clause?

    Luis Cazares (12/5/2013)


    Actually you can use a variable inside IN if it is called from SSRS. The variable is replaced in the query before submitting it to SQL Server.

    My knowledge...

  • RE: SQLServerCentral apologizes and you can win a book

    I have a situation where I need to distribute a certain set of rows over a period of time. The number of rows, number of months and base date...

  • RE: how to maintain test environment

    rightontarget (12/4/2013)


    Hi all,

    I was asked to create a test environment for one of our apps that is supported by 3 databases.

    I can restore latest backup of production version of each,...

  • RE: Split string into Columns based on Special Character

    This uses Jeff Moden's DelimitedSplit8K function posted at http://www.sqlservercentral.com/articles/Tally+Table/72993/. If you aren't familiar with it yet, take the time to acquainted with it. It's well worth the read.

    select column_a =...

  • RE: Row_Number over partition Help

    Hello and welcome to the forums. To make it easier for everyone to help, could you please post the following?

    1. DDL to create the tables and DML to populate...

Viewing 15 posts - 8,626 through 8,640 (of 9,399 total)