Viewing 15 posts - 16,546 through 16,560 (of 59,067 total)
MVP_enthusiast (10/22/2016)
Eirikur Eiriksson (10/22/2016)
MVP_enthusiast (10/22/2016)
--Jeff Moden
Change is inevitable... Change for the better is not.
October 22, 2016 at 9:37 pm
jeff.born (10/21/2016)
I'm not sure how to write the ISNULL version.. This syntactically incorrect version I came up with is:
SELECT a.Address_pk, a.[Address],
STUFF(a.[Address], ss.search_idx, LEN(ss.search_val), ss.PostalServiceStandardSuffixAbbreviation) AS AddressAbbreviated
FROM [Address] a
OUTER APPLY (
SELECT...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 22, 2016 at 8:20 pm
You might want to take a look at the design of that table. Things like NVARCHAR(1) or using any type of character based datatype to hold only digits is...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 22, 2016 at 6:27 pm
BWAA-HAAA!! The correct answer isn't actually available on this question. 😉 There is no way that I'd grant a non-DBA the privs to do a direct backup even...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 22, 2016 at 4:59 pm
Personally, I think that if you have a heavy (read that as "frequent") usage database and it takes more than 5-10 minutes for most everything to settle into cache, then...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 22, 2016 at 4:50 pm
I think that people spend way too much on cop-like programs like this. SELECT * isn't necessarily a problem (in fact, I've seen it provide a performance improvement on...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 22, 2016 at 4:30 pm
Eirikur Eiriksson (10/20/2016)
Gazareth (10/19/2016)
Eirikur Eiriksson (10/18/2016)
Just had a Blast from the past😎
First line: "Version 4.2 also lets you nest triggers"
I didn't get any further due to blacking out; came to...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 22, 2016 at 1:04 pm
I'm really torn here. I want to give the article 5 stars (especially for a "first" article for the author) for how well it was written and I also...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 22, 2016 at 10:17 am
mah_j (10/22/2016)
HelloHow can I stop the long running query that is run from application?
I want to kill the queries that are running longer than 40 seconds.
I don't know if you're...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 22, 2016 at 8:21 am
BLandry474 (10/20/2016)
We have a situation where we regularly get tables from another department and we have to...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 21, 2016 at 10:47 pm
yvesql (10/21/2016)
date/time ...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 21, 2016 at 9:43 pm
To explain the ancient but very effective CROSS TAB method that Alan used, please see the following article, which comes complete with a performance test that demonstrates one of the...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 21, 2016 at 9:33 pm
@jeff.Born,
The list you have looks a bit familiar. Are you, by any chance, using the tables from the USPS? I ask because I went through this very same...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 21, 2016 at 9:28 pm
Just to be sure, ol' friend... please don't ever take my sometimes (usually?) zealous contrarian attitude towards SSIS personally. Without boring you with the ugly details, I had a...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 21, 2016 at 6:03 pm
Phil Parkin (10/21/2016)
Jeff Moden (10/21/2016)
Phil Parkin (10/20/2016)
Jeff Moden (10/20/2016)
Phil Parkin (10/20/2016)
Jeff Moden (10/20/2016)
Phil Parkin (10/20/2016)
--Jeff Moden
Change is inevitable... Change for the better is not.
October 21, 2016 at 8:14 am
Viewing 15 posts - 16,546 through 16,560 (of 59,067 total)