Viewing 15 posts - 4,576 through 4,590 (of 7,614 total)
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'...
December 10, 2015 at 7:50 pm
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...
December 10, 2015 at 7:43 pm
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...
December 10, 2015 at 7:38 pm
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...
December 9, 2015 at 2:01 pm
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. ...
December 9, 2015 at 1:18 pm
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...
December 9, 2015 at 1:11 pm
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...
December 8, 2015 at 2:35 pm
Sean Lange (12/8/2015)
ScottPletcher (12/7/2015)
SELECT
COALESCE(t1.PRODUCTID, t2.PRODUCTID, t3.PRODUCTID) AS PRODUCTID,
...
December 8, 2015 at 8:59 am
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:...
December 7, 2015 at 4:59 pm
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,...
December 7, 2015 at 4:50 pm
SQLPain (12/7/2015)
December 7, 2015 at 1:18 pm
Sure, fine, I give up.
Just be aware that using MONTH or any other function on a column could give you horrible performance.
December 7, 2015 at 11:37 am
Month is a datetime type: you need to provide a full date:
@month = '20151001'
December 7, 2015 at 11:25 am
The CROSS JOIN is just used to assign an alias name to the constructed date.
December 7, 2015 at 10:51 am
SQLPain (12/7/2015)
ALTER PROC Applications
(
@Month AS DATETIME,
@Year AS DATETIME
)
AS
BEGIN
LEFT JOIN (SELECT COUNT(CA.app_id) AS Approved_Count, SO.source_id
...
December 7, 2015 at 10:34 am
Viewing 15 posts - 4,576 through 4,590 (of 7,614 total)