Viewing 15 posts - 721 through 735 (of 7,608 total)
Could just be?:
SELECT a.artigo,
a.descricao,
Artigo_2.unidadebase,
b.[vendas ultimo semestre],
...
July 21, 2022 at 5:07 pm
SELECT d1.*
FROM #DETAIL d1
WHERE d1.IDR < (SELECT MIN(d2.IDR) FROM #DETAIL d2 WHERE d2.ID = d1.ID AND d2.BALANCE < 0)
July 20, 2022 at 4:59 pm
What is the definition of table1?
July 20, 2022 at 3:46 pm
Hi Experts,
Below query is scanning index on column 'created' where I was expecting it to scan on CID which is the 'where' clause and PK?
Can you help me understand...
July 20, 2022 at 3:38 pm
Ok, fair enough
SELECT
dtstamp, equipment_id, temperature
FROM (
SELECT *,
ROW_NUMBER() OVER(PARTITION BY...
July 19, 2022 at 8:52 pm
You stated nothing about equipment_id in your original post. How am I supposed to include logic for your equipment_ids when you tell us nothing about them?!
July 19, 2022 at 8:23 pm
Maybe?
SELECT
dtstamp, equipment_id, temperature
FROM (
SELECT *,
ROW_NUMBER() OVER(PARTITION BY DATEDIFF(HOUR, 0,...
July 19, 2022 at 4:52 pm
Gen script should be able to do that, just specify the correct scripting options in SSMS before you gen the script.
July 18, 2022 at 6:53 pm
My question would be, why are you using two tables to do one thing? It looks to me like it should be a single table because there appears to...
July 15, 2022 at 9:07 pm
Btw, you don't seem to realize that you are not including the last day of the month in the Calendar table.
CREATE OR ALTER VIEW Test
AS
SELECT * FROM...
July 15, 2022 at 6:40 pm
That join will work fine too.
Try an ORDER BY C1.RowNum so that you can see the matches between rows, if any, in order.
SELECT C1.Id
...
ON...
July 15, 2022 at 6:32 pm
Best practice is to use a tally table in preference to a loop, so I added that to the code. No test data provided so I couldn't test the code.
July 14, 2022 at 4:44 am
Afaik this actually produces the desired output. Should work with SQL 2014. It uses the ordinal splitter DelimitedSplit8K_Lead. The query: splits the input string on '_' underscore, finds the...
July 14, 2022 at 4:28 am
You could try this script: https://www.sqlservercentral.com/scripts/get-file-sizes-of-database-files-and-free-space-on-disk
If you've got the time to wait for it to run 🙂
It really makes no sense to send every db file thru the...
July 13, 2022 at 7:57 pm
Here's a stand-alone version of the proc I created for work. Naturally adjust is as needed to match your requirements. The proc goes into the master db (and is marked...
July 13, 2022 at 7:25 pm
Viewing 15 posts - 721 through 735 (of 7,608 total)