Viewing 15 posts - 16 through 30 (of 48 total)
Actually neither version works 🙁 I've ran both and here is what they return and here is what I would expect (excuse the date format I copied via excel)
July 16, 2021 at 4:06 pm
thank you Phil much appreciated
July 15, 2021 at 2:10 pm
thank you all for the suggestions going to work through them now
many thanks Simon
February 25, 2021 at 10:17 am
I did try this but the results were garbage 🙁
WITH
percentiles AS
(
SELECT
NTILE(100) OVER (ORDER BY duration) AS percentile,
*
FROM
trace_table
)
SELECT a.textdata2 , a.duration as '95th' ,min(b.duration) as 'min',max(b.duration) as max
FROM...
May 8, 2019 at 2:26 pm
I know over time there sometimes are issues. Are you...
July 28, 2017 at 3:14 am
Hi Steve
Yes of course , hth
CREATE DATABASE My_DB1_snapshot ON ( NAME = N'My_DB1', FILENAME = N'c:\shared\My_DB1_snapshot.snap' ) AS SNAPSHOT OF My_DB1;
RESTORE DATABASE My_DB1 from...
July 25, 2017 at 2:19 am
yes I had tried both the above with no success (-:
December 9, 2016 at 6:26 am
thank you Hugo I will give that a go 🙂
April 11, 2016 at 4:33 am
Is there a an extra dmv I can add to sys.dm_server_services so I can use a query to highlight when an account is not a common domain account ? and...
February 16, 2016 at 4:34 am
Hi Jeff
could you elaborate please ? what sort of thing am I looking for ?
thanks simon
January 6, 2016 at 4:26 am
thank you all for the wealth of information ... first day back in the office today so I'm just playing with the solutions ... one thing I have noticed so...
December 31, 2015 at 7:27 am
Thanks Jeff for the handy hint on the sort of data required and how to post it .. heres a very small subset of data, one chain with a single...
December 21, 2015 at 9:32 am
many thanks for all the help , appreciate that 🙂
August 12, 2015 at 3:08 am
spaghettidba (5/12/2015)
WITH examples AS
(
SELECT *
FROM (
VALUES
('ABG1226807'),
('@BC1224706'),
('AB!C1224706'),
('ABCZ122470'),
('AABC 122470')
) t(ex)
)
SELECT...
May 12, 2015 at 9:00 am
Viewing 15 posts - 16 through 30 (of 48 total)