Viewing 15 posts - 12,091 through 12,105 (of 59,095 total)
I'm curious... who is actually going to peruse a 4,000 row HTML document?
--Jeff Moden
Change is inevitable... Change for the better is not.
June 16, 2018 at 5:28 pm
Here's the test data setup I used...
CREATE TABLE #TestTable
(
id INT
,location VARCHAR(50)
)
;
INSERT INTO #TestTable
...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 16, 2018 at 5:14 pm
p.s. I guess you had a couple of special characters in your @Texto string... they didn't copy correctly when I pasted my code. You may have to change some of...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 16, 2018 at 3:12 pm
I appreciate anyone that will step up to the plate with an article or a script. Since you brandish the title of "MVP" in your handle and I've verified that...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 16, 2018 at 3:10 pm
p.s. To answer the question that was asked... no... I wouldn't split up the files. It's just another "touch" on the data that could screw something up and complicates things...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 16, 2018 at 12:20 pm
--Jeff Moden
Change is inevitable... Change for the better is not.
June 16, 2018 at 12:15 pm
The biggest problem with creating your own test data...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 15, 2018 at 9:18 pm
--Jeff Moden
Change is inevitable... Change for the better is not.
June 15, 2018 at 9:09 am
--Jeff Moden
Change is inevitable... Change for the better is not.
June 15, 2018 at 9:07 am
--Jeff Moden
Change is inevitable... Change for the better is not.
June 15, 2018 at 7:55 am
Thanks for the feedback, Jessin.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 15, 2018 at 7:53 am
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2018 at 11:57 pm
--Jeff Moden
RBAR is pronounced "ree-bar" and is a "Modenism" for Row-By-Agonizing-Row.
First step towards the paradigm shift of writing Set Based code:
________Stop thinking about what you want to do to a ROW... think, instead, of what you want to do to a COLUMN.
Change is inevitable... Change for the better is not.
June 14, 2018 at 11:46 pm
Thanks for sharing that, Leon. A lot of people forget about such things. MSDB IS a database and it does need to be maintained.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2018 at 11:36 pm
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2018 at 9:38 pm
Viewing 15 posts - 12,091 through 12,105 (of 59,095 total)