Viewing 15 posts - 1 through 15 (of 75 total)
I remember an earlier post https://www.sqlservercentral.com/articles/honorifics-in-the-21st-century by Randolph West (they/them) which was about personal pronouns. So should it not be "I saw some thoughts from Randolph West recently that caught...
February 24, 2021 at 9:57 pm
Jeff Moden's function ShowLongString is just what I was looking for. I use it as a better alternative for sp_helptext to quickly view the code of a procedure or function.
Adding...
October 16, 2020 at 7:07 pm
I'd write it like this:
IF @X = 1 BEGIN
RETURN 'xyz';
END
ELSE BEGIN
RETURN 'abc';
END;
Indeed preferable, since it should prevent errors like:
December 14, 2019 at 7:10 am
Good work. I'd like to suggest a few additions with regard to your examples:
December 13, 2019 at 4:02 pm
I tried the CreateMerge procedure since it might be useful.
The procedure however has a few issues:
[1] - the column order of the source is (sometimes?) alphabetically, and...
June 13, 2017 at 1:44 pm
Thank you, Gail and Scott, for the answers.
Much appreciated.
December 24, 2015 at 1:48 am
Maybe this https://www.simple-talk.com/sql/database-administration/using-migration-scripts-in-database-deployments/ may be of use. This formed the basis for our scripts.
We use one script to update data models of two versions of the same application. (Though we...
June 14, 2015 at 1:20 am
Voted.... in favour of TheTotalTally(tm).
November 27, 2014 at 5:39 am
A few things come to mind when reading the article.
1. Kate Bush's album '50 Words for Snow' - excellent stuff.
2. An uncle talking about his database containing a few hundred...
February 28, 2012 at 1:34 am
Good article, and better than its rating indicates. (So I gave it 5 * to balance it.)
A few days ago I captured this in a trace, when a customer complained...
December 8, 2011 at 1:07 am
Weird. I gave the wrong answer ( error, error, 0 ) and scratched my head trying to figure out what was wrong.
Then after my first coffee I suddenly noticed the...
September 20, 2011 at 12:07 am
My last remark about Ad-hoc code was apparently plain wrong.
The Windows Server is a SBS (Small Business Server) which apparently has some kind of Operations Manager running, continually checking various...
August 23, 2011 at 3:32 am
Besides that (almost) no ad-hoc queries.
August 22, 2011 at 11:52 pm
There is another program from another company on another database which runs just after midnight to create to some files. It uses dynamic SQL - and as far as I...
August 22, 2011 at 11:50 pm
Viewing 15 posts - 1 through 15 (of 75 total)