Viewing 15 posts - 181 through 195 (of 2,458 total)
Another way, using Luis' sample data
SELECT name, rtrim(ltrim(isnull(parsename(' '+x.name+' ', 2), x.name))) as name2
FROM (VALUES('Luis.Cazares'),('Luis Cazares'),('Luis Cazares.'),('.Luis Cazares')) x(name);
October 30, 2017 at 2:02 pm
I predict Dodgers in...
October 25, 2017 at 6:14 pm
Thank you in...
October 24, 2017 at 11:02 am
Here's another one for your tests. I think it's a winner 😉
IF OBJECT_ID('dbo.workdayCalendar') IS NOT NULL
DROP TABLE dbo.workdayCalendar;
-- Wide enough...
October 19, 2017 at 8:36 pm
October 19, 2017 at 12:43 pm
Luis Cazares - Tuesday, October 17, 2017 1:50 PMDid you find a real-world problem with this functionality? Or were you experimenting?
Thanks for...
October 17, 2017 at 8:17 pm
;With CTE_Source As (
Select Fl, Col
, Val = Case
When...
October 16, 2017 at 3:01 pm
As long as the Yanks make it, a good series is coming....
October 13, 2017 at 9:58 am
Thin Crust. Very thin and cut into slices not squares. This kind of talk has not popular in Chicago but my dad's a New Yorker and he brainwashed me early...
October 11, 2017 at 5:58 pm
Can you suggest some T-SQL code to automate so that a script say select *...
October 4, 2017 at 6:11 pm
September 28, 2017 at 9:43 pm
The Data Tuning Adviser is going to recommend columnstore indexes for me? October 2nd can't come soon enough! </sarcasm>
It's cool to finally see some new T-SQL commands. TRIM and...
September 28, 2017 at 5:07 pm
Have SQL server 2017 officially released or not?
From Microsoft site, I can see there is...
September 28, 2017 at 4:46 pm
Viewing 15 posts - 181 through 195 (of 2,458 total)