Viewing 15 posts - 706 through 720 (of 7,608 total)
SELECT User, ProcessId, COUNT(*) AS ProcessDupCount
FROM dbo.table_name
GROUP BY User, ProcessId
WHERE ProcessId > 1
HAVING COUNT(*) > 1
August 2, 2022 at 2:42 pm
This should give you the data type of the column:
SELECT TOP (1) wf.SMP_FLAG
INTO #temp
FROM WF_SMP wf
EXEC tempdb.sys.sp_help #temp
August 1, 2022 at 10:35 pm
Here's the original post:
"I have a little exercise and would like to know your opinion on the most effective/best way to approach. Please see the result I am looking for...
July 31, 2022 at 1:02 am
You're welcome.
Yeah, you'll need lots of extra disk space.
Presumably the log file is already a big size for a db that includes a table that size. But you might want...
July 29, 2022 at 6:22 pm
For example purposes, I'll assume your clustered index is on a $IDENTITY column, say "id".
(10) Create a new table, with the new data types, and the clustered index (only!) from...
July 29, 2022 at 5:27 pm
You need to convert the "NOT IN"(s) to "NOT EXISTS"(s), like this:
NOT EXISTS(SELECT 1 FROM TB_REINPUT TR WITH (NOLOCK) WHERE TR.ORDER_DATE>=@LAST_ORDER_DATE AND TR.STATION_ID=@P_STATION_ID AND
TR.ORDER_DATE+COMMIT_NO = TB_WORK_ORDER_MFD01.ORDER_DATE+TB_WORK_ORDER_MFD01.COMMIT_NO)
July 29, 2022 at 2:48 pm
You don't really need sys.indexes in the row-count query:
OUTER APPLY (
SELECT SUM(p.rows) AS TotalRows
FROM sys.partitions p
...
July 28, 2022 at 6:08 pm
My approach was similar (I couldn't post to this site for a while):
SELECT
text_column,
LTRIM(RTRIM(SUBSTRING(text_column, CASE WHEN position_after_required_name = 0...
July 28, 2022 at 6:05 pm
Need the sample data in a directly usable format, not in a picture, which we can't write T-SQL against.
July 28, 2022 at 5:13 pm
The idea being that you can change the starting day to adjust for any day of the week. 0=Mon, 1=Tues, ..., 5= Sat, 6=Sun.
For example, if you wanted the next...
July 27, 2022 at 11:31 pm
I use a consistent method for any day, so I don't use techniques like the one given.
Instead, I recommend:
DATEADD(DAY, -DATEDIFF(DAY, 5, S1SDAT) % 7 + 7, S1SDAT)
for example:
SELECT
S1SDAT,
DATEADD(DAY, -DATEDIFF(DAY, 5,...
July 27, 2022 at 11:29 pm
There is no query that will tell you what index(es) were created in the last few days. SQL Server itself does not store that info anywhere.
July 27, 2022 at 12:54 am
I'm very confused about what final results you want to see. Here's a query that returns all columns; adjust it to return only the columns you want.
SELECT...
July 25, 2022 at 7:10 pm
Paul White and/or Itzik Ben-Gan have done write ups on the problem with non-unique sorts. The solution is indeed to make sure you specify ORDER BY values that will insure...
July 25, 2022 at 6:16 pm
select m.CompanyId,m.PackageId,m.partsfamilyid,max(m.countparts) as countparts,
STRING_AGG('(' + CONVERT(VARCHAR(8000), countPartsValues) + ')' + CONVERT(VARCHAR(8000), MSLIDValue),'|') WITHIN GROUP(ORDER BY MSLIDValue ASC) AS MSLDIFF
from #final m
inner...
July 21, 2022 at 5:38 pm
Viewing 15 posts - 706 through 720 (of 7,608 total)