Forum Replies Created

Viewing 15 posts - 5,071 through 5,085 (of 7,597 total)

  • RE: Date issue in dynamic SQL

    Never use a function on a column if it can be avoided.

    Never use between for date/datetimes, use >= and < instead.

    SELECT @sql = 'SELECT *

    FROM #Temp

    WHERE DocDate >=...

  • RE: [SQL Server 2008] Problem with Between syntax

    Never use BETWEEN on dates or datetimes; instead, use >= and < the next date/time value.

    Also, for literal dates, always use format 'YYYYMMDD', which is 100% unambiguous. ...

  • RE: Show different last 6 Month in format DD-MM-YYYY

    SELECT REPLACE(CONVERT(varchar(11), DATEADD(MONTH, month_adjustment, current_month), 106), ' ', '-') AS column_name

    FROM (

    SELECT DATEADD(MONTH, DATEDIFF(MONTH, 0, GETDATE()), 0) AS current_month

    ) AS get_current_month

    CROSS JOIN (

    ...

  • RE: Fast Insert

    That's a good point about the minimal logging.

    But from at least SQL 2008 on, you can get minimal logging on the insert into the existing empty clustered index as well,...

  • RE: Fast Insert

    That's not surprising once you think through the process. Loading the table and then clustering it requires all the rows to be inserted twice.

  • RE: Fast Insert

    It's faster to create the clustered index first, because if necessary you can always explicitly sort the data being into cluster key order for the insert. Typically SQL will...

  • RE: The conversion of a varchar data type to a datetime data type resulted in an out-of-range value.

    Or much better, when entering literal dates and making date/datetime comparisons:

    1) always use format YYYYMMDD, which is 100% under any/all SQL settings

    2) use >= and < [the next day] rather...

  • RE: Select * not returning all columns in UDF

    Before that you may want to try:

    EXEC sp_refreshview

    on that view.

  • RE: Need help with tuning a join query

    DOH, just saw this:

    User_Login_test is a VIEW

    So obviously clustering would not apply to it, but to the underlying tables.

    It's still fundamentally true that identity is usually NOT the best clustering...

  • RE: MCSA 70-461 Question

    herladygeekedness (5/13/2015)


    Jeff Moden (5/9/2015)


    ScottPletcher (5/8/2015)


    Who comes up with such ridiculous, useless qs? And why on earth would a dba want to waste value time and brain space memorizing such trivialities??

    Heh.......

  • RE: Need help with tuning a join query

    1) The LEFT OUTER JOIN is functioning like an INNER JOIN because of the WHERE condition on a column from that table. For better performance, move the WHERE condition...

  • RE: How to do a CAST on this?

    If you mean cast it to a time / datetime, you can't safely do that, because the run_duration in sysjobhistory can meet or exceed 24 hours.

  • RE: T-SQL Query Help

    The names should not be in that table, only the IDs.

    Also, you need some type of amount code so that amounts for that visit can be distinguished from one another.

  • RE: The Rows Holding the Group-wise Maximum of a Certain Column

    Indexing is an interesting q.

    In theory I guess best would be an index on:

    ( dealer, article ) include ( price ) or even

    ( dealer, article, price )

    but it...

  • RE: The Rows Holding the Group-wise Maximum of a Certain Column

    This sql will often be more efficient, although it's not guaranteed to be:

    SELECT *

    FROM (

    SELECT article, dealer, price,

    DENSE_RANK()...

Viewing 15 posts - 5,071 through 5,085 (of 7,597 total)