Viewing 15 posts - 601 through 615 (of 2,458 total)
TheSQLGuru (7/12/2016)
July 12, 2016 at 12:08 pm
patrickmcginnis59 10839 (7/12/2016)
Igor Micev (7/12/2016)
patrickmcginnis59 10839 (7/12/2016)
An ORDER BY clause can be used explicitly in the end as well. In that case the COUNT is not deterministic. See Deterministic and...
July 12, 2016 at 12:01 pm
Great work Igor, 5 stars!. You did a great job grouping (pun not intended :-P) together the most important aspects of COUNT. Fantastic article and a great resource to point...
July 12, 2016 at 11:53 am
Jeff beat me to it. Here's some DDL that shows how to implement what Jeff suggested.
USE tempdb -- a safe place to test this out...
GO
-- (0) Your table...
July 12, 2016 at 10:49 am
To get the current max degree of parallelism for a specific instance of SQL Server:
SELECT value_in_use
FROM sys.configurations
WHERE name = 'max degree of parallelism'
July 12, 2016 at 10:19 am
Manic Star (7/12/2016)
djj (7/12/2016)
crookj (7/12/2016)
djj (7/12/2016)
Revenant (7/11/2016)
Ed Wagner (7/11/2016)
whereisSQL? (7/11/2016)
HappyGeek (7/11/2016)
Ed Wagner (7/11/2016)
djj (7/11/2016)
Y.B. (7/11/2016)
Luis Cazares (7/11/2016)
djj (7/11/2016)
Ray K (7/11/2016)
Ed Wagner (7/11/2016)
LionTiger
Bears (oh, my)
Care
Package
Amazon
Prime
Target
Practice
Marksmanship
Aim
Focus
Motivation
Speaker
Anxiety
attack
July 12, 2016 at 7:09 am
Revenant (7/11/2016)
HappyGeek (7/11/2016)
eccentricDBA (7/11/2016)
Ed Wagner (7/11/2016)
whereisSQL? (7/11/2016)
Manic Star (7/11/2016)
djj (7/11/2016)
BWFC (7/11/2016)
Ed Wagner (7/11/2016)
Grumpy DBA (7/11/2016)
eccentricDBA (7/11/2016)
Ed Wagner (7/11/2016)
Manic Star (7/11/2016)
Luis Cazares (7/11/2016)
Ed Wagner (7/11/2016)
Boomchick-chicky-boom
Explosion
Shrapnel
collateral damage
Arnold Schwarzenegger
Terminator
Semi-colon
sigmoid colon
Sigmund Freud
Psychoanalysis
Why
Socratic Method
Ask
Bid
den
July 11, 2016 at 10:55 am
Ed Wagner (7/8/2016)
July 8, 2016 at 2:07 pm
Ok Solomon, I tried to figure this out and failed. Forgive my CLR noobness (I create about 1 CLR/year) and I'm sure this is simple but I'm having a hard...
July 7, 2016 at 8:26 am
Marcia J (7/5/2016)
July 7, 2016 at 7:23 am
sqld-_-ba (7/6/2016)
Hello Fellow DBAs/Developers/Consultants/Managers,I couldn't find a reliable + recent source for DBA salaries in USA.
Glassdoor.com is very good and reliable. For example - a google search for "glassdoor dba...
July 6, 2016 at 10:12 am
J Livingston SQL (7/5/2016)
Hi Alan..have been following your recent scripts and am suitably impressed.
Thanks a lot J. That means a lot!
July 5, 2016 at 6:47 pm
Here's a couple solutions based on what your output should look like for the values "MDL-9054-1" and "TX GMS-7000"
DECLARE @strings TABLE(string varchar(100));
INSERT @strings VALUES('MDL-9054-1'),('TX GMS-7000');
SELECT
ColA = SUBSTRING(string,1,CHARINDEX('-',string)-1),
...
July 5, 2016 at 3:26 pm
Another approach would be to split the text into word-level bi-grams using NGrams8K[/url]. See the article for the function and a description of what a word-level bi-gram is.
Using...
July 5, 2016 at 3:10 pm
thomashohner (7/5/2016)
... re-code the wheel.
Haha! +1
July 5, 2016 at 9:36 am
Viewing 15 posts - 601 through 615 (of 2,458 total)