Viewing 15 posts - 4,471 through 4,485 (of 8,731 total)
I missed a NULLIF function. If you can solve it, then you should be good to go.
August 7, 2015 at 11:40 am
You're welcome, just remember to fully understand the code.
August 7, 2015 at 10:17 am
I might have overcomplicated the query, I probably need some rest. 😀
DECLARE @MaxLength int = 50,
@String varchar(max) = '***DUST MASK MUST BE WORN***
ENSURE THE PRODUCT CODE...
August 7, 2015 at 10:02 am
S_Kumar_S (8/7/2015)
August 7, 2015 at 8:46 am
I have profiler and I only installed SQL Server 2012 Express with tools
August 7, 2015 at 8:04 am
ArcticEd32 (8/6/2015)
August 7, 2015 at 6:55 am
Why are you trying to change this when you could store the whole text without problems?
It can be done, but it requires some validation and careful code and testing to...
August 7, 2015 at 6:45 am
nadersam (8/6/2015)
Hi Luis,Thanks again for your replies.
Please find attached file containing the needed scripts.
Best Regards
Nader Galal
No file attached.
August 6, 2015 at 6:29 pm
Thank you for your time, have a great holiday.
August 6, 2015 at 1:51 pm
This is untested, but it might work. What you asked is included as a CROSS APPLY. I also changed a part of your query to prevent multiple reads to BVFindings.
WITH...
August 6, 2015 at 1:21 pm
Ed Wagner (8/6/2015)
Eirikur Eiriksson (8/6/2015)
whereisSQL? (8/6/2015)
eccentricDBA (8/6/2015)
Revenant (8/6/2015)
Ed Wagner (8/6/2015)
SQLRNNR (8/6/2015)
undoRollback
happens
TARDIS
Dr Who
sp_who2
Whoville
Horton
August 6, 2015 at 12:42 pm
GO is not a keyword. GO is a batch separator. You can actually define a different word instead of using GO as this is a setting for SSMS (aka, the...
August 6, 2015 at 12:35 pm
This reminded me of an article that explains the method used here. However, the discussion of the article showed a faster option. This is the article: http://www.sqlservercentral.com/articles/T-SQL/68378/
And this is an...
August 6, 2015 at 10:00 am
It's preferred to use IF EXISTS instead of COUNT(*) to prevent unnecessary reads. EXISTS will stop on the first occurrence, while COUNT(*) will read all the needed rows.
IF EXISTS(SELECT MO.ProposedEvent
FROM...
August 6, 2015 at 9:51 am
Viewing 15 posts - 4,471 through 4,485 (of 8,731 total)