Viewing 15 posts - 16 through 30 (of 45 total)
This is really beginning to frustrate me.
IF OBJECT_ID(N'dbo.mtzcus_2014_CoreMenuAuditDetails', N'U') IS NOT NULL
AND EXISTS ( SELECT TOP 1
...
November 4, 2013 at 8:47 am
I was hoping to avoid that, but ya gotta do what ya gotta do.
Thanks Gail,
~ Jeff
November 1, 2013 at 10:07 am
The script is used to deploy code and data objects to our customers, and contains several objects entirely contained within a TRY/CATCH block. The script is designed to be run...
November 1, 2013 at 9:40 am
I found a MS reference that states:
"DROP TABLE and CREATE TABLE should not be executed on the same table in the same batch. Otherwise an unexpected error may occur."
and also:
"A...
November 1, 2013 at 9:10 am
Thanks for replying; I now have a situation where there are four possibilities:
1) ISNULL
2) COALESCE
3) COALESCE with CAST/CONVERT
4) Modify the column from SMALLINT to INT
I've run each of the three...
July 5, 2013 at 11:59 am
Another great reply; I currently ask my team to use COALESCE exclusively because it's ANSI standard and more flexible due to multiple parameters...but your reply leads me back to "any...
July 5, 2013 at 7:11 am
Thanks all for replying; although I was aware of the "precedence" feature of COALESCE, I didn't realize that literal values would be typed differently, in this case 99 as an...
July 5, 2013 at 5:11 am
Thanks for replying...and my wife agrees with you.
~ Jeff
June 20, 2013 at 1:14 pm
Thanks for the query, I appreciate you letting me utilize the results of your efforts.
~ Jeff
June 10, 2013 at 5:30 am
Thanks for the replies...I'll try out each and see what suits the situation best (or what I can actually manage to get working!)
~ Jeff
June 7, 2013 at 9:45 am
Thanks for replying, I also didn't think about temp tables. Always great (and useful) replies on this site...my top "must read".
~ Jeff
May 22, 2013 at 7:34 am
Thanks for replying...unfortunately, this is vendor-supplied software, so we can only affect performance by changing db options/parameters, indexing, etc.
~ Jeff
May 22, 2013 at 6:53 am
Thanks for replying; more info to add to my growing (yet still horribly inadequate) knowledge base.
Upon further digging, I've also come across a large number like this:
CREATE PROCEDURE nl_storage_items_update_items
@wstrListName nvarchar(256)
AS...
May 22, 2013 at 6:52 am
Thanks, I'm always interested to learn more about the product and its inner workings.
~ Jeff
May 15, 2013 at 6:14 am
Thanks for replying and the info. I'll increase the log file as you've suggested.
~ Jeff
May 10, 2013 at 6:53 am
Viewing 15 posts - 16 through 30 (of 45 total)