Viewing 15 posts - 76 through 90 (of 2,458 total)
February 8, 2019 at 2:49 pm
February 5, 2019 at 2:51 pm
Brent Ozar has a few videoes about the subject https://www.brentozar.com/training/statistics-sql-servers-guessing-game/10-execution-plans-made-10m/
In my opinion the Book written...
February 5, 2019 at 11:36 am
February 5, 2019 at 10:01 am
I have values like this in a column which basically is the exact same thing...
February 4, 2019 at 12:44 pm
I dont know what table tally is.
You will after reading this: The "Numbers" or "Tally" Table: What it is and how it replaces a loop
January 17, 2019 at 3:10 pm
I'm doing a lot of guessing here; moving forward - DDL and sample data will help you get the best answer. Let's start with this:
USE tempdb
January 17, 2019 at 2:52 pm
Does the reportcurrently use the stored proc or is this a new report? I ask because, if youhave a report that starts with a stored proc but is changed to...
January 17, 2019 at 2:07 pm
This is an fun and interesting problem. If my solution is what you are looking for (or close enough) then I would suggest this index:CREATE CLUSTERED INDEX...
November 20, 2018 at 12:57 pm
The limitations I have is the DB I am working on...
October 23, 2018 at 10:18 pm
Just for fun I thought I'd throw in a solution that leverages NGrams8k. This will likely be a little slower than what Jason posted but it parallelizes nicely...
October 22, 2018 at 3:19 pm
You can do this on SQL Server 2005+ like so:
-- Your Data
DECLARE @table TABLE(ColA INT, ColB CHAR(1), RowNumber INT);
INSERT @table(ColA,ColB,RowNumber)
SELECT ColA,ColB,RowNumber
FROM (VALUES
October 22, 2018 at 2:14 pm
October 4, 2018 at 7:43 am
gbritton1 - Wednesday, October 3, 2018 7:28 AMWhat kind of objects may be specified, other than constants or functions?
They worded this BOL...
October 3, 2018 at 3:40 pm
Viewing 15 posts - 76 through 90 (of 2,458 total)