Viewing 15 posts - 1,261 through 1,275 (of 7,608 total)
September 22, 2021 at 5:12 am
Table IndexesRows in table Hints With or Without TF 610 ...
September 22, 2021 at 4:46 am
Sure, it's above; I posted it years ago, when this q was first asked.
Actually I should adjust it again, you only need to calc the very first Friday, from then...
September 21, 2021 at 10:55 pm
Fwiw in 2021. In the FROM clause use dbo.fnTally and CROSS APPLY (both twice) to hierarchically generate the first 7 days of each month. Then in the WHERE...
September 21, 2021 at 10:47 pm
I believe the calc should be:
CAST(((f.TOTFCST - f.TOTHIST) * 100.00) / f.TOTHIST AS decimal(5, 2))
I have no idea at all why you are subtracting 1 from the quotient in your...
September 21, 2021 at 10:43 pm
Fwiw in 2021. In the FROM clause use dbo.fnTally and CROSS APPLY (both twice) to hierarchically generate the first 7 days of each month. Then in the WHERE clause...
September 21, 2021 at 6:48 pm
If you add the clustering before you add the data, make sure that you use WITH(TABLOCK) on the INSERT INTO statement to help take advantage of "Minimal Logging", which...
September 21, 2021 at 6:47 pm
You need to cluster tables #SmallerRange and #LargerRange on the the JOIN columns: ( VID, IorO, OtherLocationID ). If those 3 column values are unique in one/both of the tables,...
September 21, 2021 at 6:21 pm
SELECT OBJECT_NAME(object_id) AS object_name, OBJECTPROPERTYEX(object_id, 'BaseType') AS object_type
FROM sys.sql_modules
WHERE definition LIKE N'%<string_you''re_looking_for>%'
ORDER BY 2, 1
September 20, 2021 at 12:41 am
SELECT
COALESCE(P.DatabaseName, D.DatabaseName, T.DatabaseName, S.DatabaseName) AS DatabaseName,
CASE WHEN P.DatabaseName IS NULL THEN '' ELSE 'Yes' END AS Prod,
...
September 17, 2021 at 4:23 pm
Best is to move the SUM() into a derived table, like so:
SELECT F.LOC AS 'Chain', F.DMDUNIT AS 'Item', D.DESCR AS 'Item Attributes. Description', D.U_PRODUCT_CATEGORY AS 'Item Attributes....
September 17, 2021 at 1:11 am
You're welcome!
Btw, you got 0 in the original calc because 2/100 is 0.02. But, since the values were integer, SQL makes the result integer and thus 0 only (the .02...
September 16, 2021 at 10:20 pm
...
CAST(p.QTY * 100.00 / s.OH AS decimal(5, 2)) AS 'Instock %'
...
September 16, 2021 at 10:03 pm
WITH cde_a AS
(SELECT 'Berries' AS fruit_type,
'strawberries' AS fruit,
1 AS red
UNION ALL
SELECT...
September 15, 2021 at 6:46 pm
#1 is (way) too much overhead.
#2 is better. You want static code that is generated dynamically.
September 15, 2021 at 2:41 pm
Viewing 15 posts - 1,261 through 1,275 (of 7,608 total)