Viewing 15 posts - 16 through 30 (of 649 total)
given your problem, I would have done this, Steve.
IF Object_Id('dbo.sometable') IS NOT NULL
DROP TABLE dbo.sometable;
--we script version 1
CREATE TABLE dbo.sometable
(
somekey...
July 2, 2019 at 10:10 am
Some interesting thoughts there, Steve. I once wrote an article in early 2012 on using migration scripts with databases but it never occurred to me at the time that...
July 1, 2019 at 6:12 pm
I wonder if the confusion is caused by the false idea that it is somehow wrong to add migration code to object-level build scripts. I put all sorts of stuff...
July 1, 2019 at 12:47 pm
I am flattered by the comparison with Justin Beiber, Patrick.
It is difficult to remove any ambiguity from an editorial because one has to keep it short. 'Hotheads' are people who...
May 8, 2019 at 10:09 am
Patrick,
Thanks for showing an interest. I'm sure that everyone would be fascinated to read a guest editorial from you in response arguing, from the technical angle, the reverse; that the...
May 4, 2019 at 5:14 pm
A splendid article as always, Steve....
Would it be worth saying that you can also get Azure Data Studio from Chocolatey?
choco install azure-data-studio -y
This means that you can...
March 4, 2019 at 8:41 am
I'm going to hazard a guess that Phil is confusing operating systems with programming languages.
I certainly could be confusing operating systems with languages, but the whole business of...
February 11, 2019 at 11:05 am
Ah. Don't get me started about Format() and String-split(). It was just the poor functionality that got to me with String-Split. I hadn't realized it was so slow. I'll run...
December 17, 2018 at 2:29 am
@robert See json-schema.org. The LEARN section is a good place to start. Also, and rather simpler at Newtonsoft . See their introduction...
December 6, 2018 at 3:32 am
Thanks a lot for some very interesting replies. The whole business of data transfer makes me pretty damned scared. The quicker and tighter we can nail down these issues the...
December 3, 2018 at 9:20 am
Yes, it is an interesting topic with some useful applications
I did a bit on this a while back in Bitwise Operations in TSQL
November 27, 2018 at 5:45 am
RedGate has that book out on 101 anti-patterns and there are a few that made me more than wince. I don't recall what they are but I do recall...
September 25, 2018 at 10:11 am
That's also how new and terrible "Best Practices" are born. And, yes, I agree.... "It Depends" is correct but can be abused like anything else. Eventually, people need to...
September 24, 2018 at 9:38 am
And if anyone thought I was exaggerating TSBs inability to do an upgrade, they are at it again!
TSB suffers another weekend of downtime
TSB customers have...
September 3, 2018 at 7:15 am
I think that CSV is important because almost the whole industry knows how it is done and offers it as the default way of transferring tabular data economically. There is...
August 28, 2018 at 3:07 am
Viewing 15 posts - 16 through 30 (of 649 total)