Forum Replies Created

Viewing 15 posts - 4,291 through 4,305 (of 7,615 total)

  • RE: SQL Date column issues in query

    You SET @startdate twice instead of setting @enddate 🙂

    ..

    set @startdate = '01-01-2016'

    declare @enddate datetime

    set @startdate = '10-10-2016' --should be set @enddate = ...

    ...

    SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".

  • RE: Inline Table Functions with IF or Case Statement

    If the table structures to be returned are the same for all conditions, you can use UNION ALL with the appropriate WHERE conditions so that only one query ever returns...

    SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".

  • RE: Arithmetic overflow calculating percentages

    What is the data type of "[SatisfiedPercentage]"? Because it's also part of the same CASE statement.

    SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".

  • RE: aggregate for previous year specific date

    You might want to consider adding a flitered index on deceased date including the PatientNumber and DivisionCode. Then you can do an easy self-join, which I think should be...

    SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".

  • RE: Recreating tables from a list of tables

    Andre 425568 (5/23/2016)


    We found that fixing this brings fragmentation down by anything from 0-60 % after doing table rebuilds, after rebuilds we staill have fragmentation on tables and indexes. We...

    SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".

  • RE: Summing with different GL Accounts into one row

    It looks like some columns are missing from the SELECT above, so I can't try to do the full query, but here's a general approach for using a lookup table...

    SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".

  • RE: Not returning Table Name

    IF OBJECT_ID('tempdb.dbo.#DBDATATYPES') IS NOT NULL

    DROP TABLE #DBDATATYPES

    CREATE TABLE #DBDATATYPES

    (

    DbName nvarchar(128)

    ,TableName nvarchar (128)

    ,ColumnName nvarchar (128)

    ,Datatype nvarchar (128)

    )

    INSERT INTO #DBDATATYPES

    EXEC sys.sp_MSforeachdb '

    IF ''?'' IN (''master'', ''msdb'')

    ...

    SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".

  • RE: YEAR TO DATE DATA

    SELECT DATEADD(MONTH, DATEDIFF(MONTH, 0, START_DATETIME), 0) AS START_MONTH,

    SUM(SALES) AS TOTAL_SALES

    FROM MY_TABLE

    WHERE START_DATETIME >= '20150101' AND START_DATETIME < '20150511'

    GROUP BY DATEADD(MONTH, DATEDIFF(MONTH, 0, START_DATETIME), 0)

    ORDER BY...

    SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".

  • RE: Using computed Columns to Create another Computed Column

    Matthew Saggers-700210 (5/12/2016)


    Lowell, yes this is the way to go. I found when the compute is quite complex like

    A int

    B int

    c int

    D as A+B

    E as ((A+B) / c) /...

    SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".

  • RE: Unique Indexes Are Code; Non-Unique Indexes Are Data

    orjan.franzen (5/6/2016)


    Having to drop an unique index to increase performance can be done easily with a generated script wether it's a primary key with clustered index or a unique clustered...

    SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".

  • RE: Unique Indexes Are Code; Non-Unique Indexes Are Data

    orjan.franzen (5/6/2016)

    The usage of unique indexes instead of declarative primary key constraints is just an old way of implementing entity integrity and should be avoided/forbidden if it's not for backwards...

    SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".

  • RE: Unique Indexes Are Code; Non-Unique Indexes Are Data

    RichB (5/6/2016)


    What utter flamebait.

    Congratulations.

    As to people who are saying it's the DBA's job to index - Developers can't possibly be expected to grasp the subtleties... hogwash.

    No, it's not....

    SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".

  • RE: Need some help transposing a query

    Select mcr.*

    FROM dbo.G_MASTER_CODING_RESULTS AS mcr WITH (NOLOCK)

    left join (

    SELECT

    MCRNUS.MASTER_CODING_RESULTS_ID

    FROM G_MASTER_CODING_RESULTS AS MCRNUS With (NOLOCK)

    WHERE...

    SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".

  • RE: efficient Querying - NOT EXISTS

    pietlinden (5/4/2016)


    You could... but I'd read this first:

    http://sqlinthewild.co.za/index.php/2009/08/17/exists-vs-in/

    I would have sworn that EXISTS stops as soon as a True/False changes, while an IN reads the whole table. So I would...

    SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".

  • RE: master, model, msdb

    cookiemonstagt (5/3/2016)


    So the data is saved on shared file and config locally .?

    I coded the backups to go to c:, which is local drive for that node only,...

    SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".

Viewing 15 posts - 4,291 through 4,305 (of 7,615 total)