Forum Replies Created

Viewing 15 posts - 6,841 through 6,855 (of 7,597 total)

  • RE: URGENT T- SQL QUESTION. NEED HELP.

    ChrisM@Work (1/30/2013)


    Mr. Kapsicum (1/30/2013)


    ...

    i want my query to use BOTH ISNULL and COALESCE...

    Only homework would impose such a restriction.

    Yep; I'm sure of that too. 100% homework (or bad interview...

  • RE: Proper way to concatenate values in a set from 1 column

    No, no syntax errors per se, but that method's not guaranteed to work safely either.

  • RE: identity table use case

    insert dbo.N

    output inserted.$identity into #tmp ( i )

    default values

    go 3

    select *

    from #tmp

  • RE: Behaviour in partitioned database.

    You may or may not need partitioning.

    But you absolutely need to determine the proper clustered index for the table.

    It's the column(s) you (almost) always specify in a WHERE clause, particularly...

  • RE: Can concurrent INSERTs mess up a UNION?

    I think you can eliminate the problem, and a full table scan, like below.

    Whiile this makes your initial q moot for this specific example, it could naturally still be good...

  • RE: Turning Scan into Seek...

    ChrisM@home (1/29/2013)


    GilaMonster (1/29/2013)


    ChrisM@Work (1/29/2013)


    How many rows in the table? How many rows are you returning? If you are returning more than say 25%* of the rows in the table, SQL...

  • RE: Turning Scan into Seek...

    PiMané (1/29/2013)


    It has many more queries over other columns but I'll check the DMV for the most used indexes and see the one that's best for cluster since the actual...

  • RE: Turning Scan into Seek...

    The real key to performance is the proper clustered index.

    If you (almost) always query [dbo].[XmlDataModel] by [ExerciseYear], then cluster by [ExerciseYear] followed by any other column(s) you (almost) always query...

  • RE: Conversion

    Not 100%, as I don't have any table definition to look at.

    But if fromdate and todate are both in the text format above, then something like:

    SELECT

    ...other_columns...

    ...

  • RE: Conversion

    select

    convert(varchar(20), cast(stuff(substring(string, 5, 15), CHARINDEX(':', substring(string, 5, 15)) - 3, 0, RIGHT(string, 5)) as datetime), 120)

    from (

    select 'Mon...

  • RE: WHERE vs. GROUP BY again

    Igor Makedon (1/28/2013)


    Fine!

    Are the folowing two SELECT statements equvalent (i.e. -- see my original question, -- "return exactly the same row set" no matter "what data is")?

    [font="Courier New"]SELECT xx FROM...

  • RE: WHERE vs. GROUP BY again

    WHERE and HAVING are fundamentally different; they should never be thought of as equivalent or interchangeable. That is, for a given query/subquery, only one of them is right to...

  • RE: Stored procedure explanation

    Bhuvnesh (1/28/2013)


    niha.736 (1/27/2013)


    How can I go with this SP's while creating or modifying.

    if exists (select 1 from sysobjects where name = 'getNotificateProduct')

    DROP PROCEDURE [dbo].[getNotificateProduct]

    GO

    Create PROCEDURE [dbo].[getNotificateProduct]

    (

    )

    begin

    ....

    ....

    end

    IS...

  • RE: Can't shrink physical logfile size.

    SQL will tell you if/why it won't shrink the log:

    SELECT log_reuse_wait_desc, * --col name may be a little off, from memory, but it's at least close

    FROM sys.databases

    WHERE name = 'yourDbName'

  • RE: create synonym to schema

    Nope, you have to synonym every object:

    [LiveServer].[Databade].[TheSchema].[ObjectName1] --> [DevServer].[Databade].[TheSchema].[ObjectName1]

    [LiveServer].[Databade].[TheSchema].[ObjectName2] --> [DevServer].[Databade].[TheSchema].[ObjectName2]

    etc.

Viewing 15 posts - 6,841 through 6,855 (of 7,597 total)