Viewing 15 posts - 9,376 through 9,390 (of 59,091 total)
Like the article. I'd like to point to the fact that "PRINT @sql;" is limited to 4000 characters, therefore I use "SELECT CAST('<root><![CDATA[' + @sql + ']]></root>' AS XML)".
So...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 6, 2019 at 7:41 pm
Thanks Steve.
--Jeff Moden
Change is inevitable... Change for the better is not.
May 6, 2019 at 11:30 am
How about we get things like attachments on the articles fixed first? That and continue to "fix the internet". I've come across many links in Google to posts on SSC...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 4, 2019 at 12:58 am
Or create a third job that calls a new proc that calls the stored procedures that you're using in the other two jobs.
--Jeff Moden
Change is inevitable... Change for the better is not.
May 4, 2019 at 12:49 am
I agree that this is a horrid idea.
Heh... yeah.. me too. I hate SSIS. 😀 😀 😀
It is, however, pretty easy to solve.
Totally agreed... write a good stored...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 4, 2019 at 12:11 am
Look at the progress we've got in SQL over the years! what used to be 13 years ago a short inline formula using system functions and integer arithmetic is...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 4, 2019 at 12:01 am
It would be interesting to see what the backlogged items are and the expected fix release date.
--Jeff Moden
Change is inevitable... Change for the better is not.
May 3, 2019 at 11:52 pm
I guess the real key here is that if you're dividing by zero, there's something wrong with your data, your code, or both. I've never ignored divide by zero errors...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 3, 2019 at 11:34 pm
Now that you have an answer, do you know how it works and why it could fail?
--Jeff Moden
Change is inevitable... Change for the better is not.
May 2, 2019 at 4:33 pm
Just ran across this. Yeah... you file path has spaces in it, as well, and so it needed to be quoted. I got into the habit of automatically encapsulate such...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 2, 2019 at 4:32 pm
Have you ever encountered some code that makes you feel that you need wine instead of coffee to fix it? Or is it just me?
I'm working on a code...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 2, 2019 at 2:03 pm
I had similar issues and the single user thing seemed to handle that. You DO have to be careful to not lose the single user connection or those service logins...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 2, 2019 at 1:57 pm
Heh... there must be a disturbance in the force. I've been asked to do something similar about 2 weeks ago. Because I have to kill a bunch of data and...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 2, 2019 at 1:43 pm
select FORMAT(Convert(datetime,GETDATE (),103),'MM/dd/yyyy HH:mm')
While that's incredibly simple, as it was designed to be, FORMAT has been tested and documented as being 44 times slower than even poor renditions. Until...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 2, 2019 at 12:51 pm
Warthog
--Jeff Moden
Change is inevitable... Change for the better is not.
May 2, 2019 at 3:32 am
Viewing 15 posts - 9,376 through 9,390 (of 59,091 total)