Forum Replies Created

Viewing 15 posts - 4,576 through 4,590 (of 7,614 total)

  • RE: how extract values from expressions

    If it's always a "w" followed by a digit or digits, perhaps just this?!:

    declare @testdata table(expression varchar(500))

    insert into @testdata values('[w1+w2+w3/5]'),('[(w1+w2+w3)/5]'),('[(w4-w5*w6)/5]')

    insert into @testdata values('w1')

    insert into @testdata values('2w3')

    insert into @testdata values('4+w5')

    select 'w'...

  • RE: How to update rows faster

    Cluster the table on the month.

    I'd include at least the year with the month. Best is to use a column of type date, but if necessary you can use...

  • RE: working with Case inside a IF EXISTS

    No, the syntax is somewhat off. A CASE expression must evaluate to a single value.

    For what you're doing, try something like this instead:

    IF @Client = 'Winco Foods' AND EXISTS(

    SELECT...

  • RE: Dynamic filtering of concatenated fields

    Also, for best performance, specify the least likely to match condition first. If one (or more) of the AND conditions are going to be false, you want SQL to...

  • RE: SELECT 1 random row query help, please

    Create a separate index of just the IDs. Then select a random ID using ORDER BY NEWID(), then use that ID to get the rest of the columns. ...

  • RE: Dynamic filtering of concatenated fields

    Do you want the concatenation to be able to cause a match? For example, if the PartnerName ends in "f", and the Address begins with "arm", should that cause...

  • RE: UNION Query with Filtered Results

    If the tables are indexed on id, you just have to force SQL to use the obvious MERGE join it should have been using anyway(!) 😀 :

    DROP TABLE #TABLE1

    DROP TABLE...

  • RE: UNION Query with Filtered Results

    Sean Lange (12/8/2015)


    ScottPletcher (12/7/2015)


    In this case, there's no real need for CTEs or UNIONs either, just standard FULL joins:

    SELECT

    COALESCE(t1.PRODUCTID, t2.PRODUCTID, t3.PRODUCTID) AS PRODUCTID,

    ...

  • RE: Would like a LOGON Trigger to record when it rolls back a logon attempt

    An INSERT to a table won't try to return a result set ... unless you're missing a:

    SET NOCOUNT ON

    at the start of the trigger. Verify that statement is present.

    Edit:...

  • RE: UNION Query with Filtered Results

    In this case, there's no real need for CTEs or UNIONs either, just standard FULL joins:

    SELECT

    COALESCE(t1.PRODUCTID, t2.PRODUCTID, t3.PRODUCTID) AS PRODUCTID,

    COALESCE(t3.STATUS,...

  • RE: Date Parameter in Stored Procs

    SQLPain (12/7/2015)


    Thanks Scott, I appreciate your help, but not passing the year, wouldn't it do a count of all the years for that month, for example in future if I...

  • RE: Date Parameter in Stored Procs

    Sure, fine, I give up.

    Just be aware that using MONTH or any other function on a column could give you horrible performance.

  • RE: Date Parameter in Stored Procs

    Month is a datetime type: you need to provide a full date:

    @month = '20151001'

  • RE: Date Parameter in Stored Procs

    The CROSS JOIN is just used to assign an alias name to the constructed date.

  • RE: Date Parameter in Stored Procs

    SQLPain (12/7/2015)


    Scott, would the following work, its kind of giving me the correct results:

    ALTER PROC Applications

    (

    @Month AS DATETIME,

    @Year AS DATETIME

    )

    AS

    BEGIN

    LEFT JOIN (SELECT COUNT(CA.app_id) AS Approved_Count, SO.source_id

    ...

Viewing 15 posts - 4,576 through 4,590 (of 7,614 total)