Viewing 15 posts - 3,736 through 3,750 (of 8,416 total)
Toreador (4/21/2010)
...although I was (I think) the first person to comment on the answer to the second part...
Nope! 😀
April 21, 2010 at 4:13 am
sturner (4/20/2010)
It could be as simple as:if not exists(select 1 from maint_req where request_type = 'AROLE')
insert maint_req..........
Be very careful when using constructions like this, whether you...
April 21, 2010 at 4:10 am
Dohsan (4/21/2010)
This may work better
CONSTRAINT CHK_TextCol CHECK (TextCol NOT LIKE '%[^Aa-Zz]%')
To work with a binary collation, you'd need something like:
CONSTRAINT CHK_TextCol CHECK (col1 LIKE '%[a-z]%' OR col1 LIKE '%[A-Z]%')
April 21, 2010 at 4:06 am
kiran.hegde (4/21/2010)
April 21, 2010 at 3:54 am
Tom Brown (4/21/2010)
This is excellent Paul, Thank-you.
No problem. You took the time to check out the article I referenced, so it is only fair that I should return...
April 21, 2010 at 2:45 am
Glenn Dorling (4/20/2010)
So for the first part you're assuming explicit behaviour but for the second you're assuming implicit behaviour.
Glenn, I think that's a stretch, and an artificial distinction to make....
April 21, 2010 at 2:39 am
jonwolds (4/21/2010)
April 21, 2010 at 2:34 am
shen-dest (4/21/2010)
CXPACKET wait type indicates that there is parallelism issue.
No, it indicates that a parallel query is running - see the description in the references below.
setting max degree of parallelism...
April 21, 2010 at 2:32 am
jonwolds (4/21/2010)
I'm just wondering how every thread can be waiting on CXPACKET without being a intra query dead lock? One of the theads must be wating on something else?
CXPACKET waits...
April 21, 2010 at 1:35 am
rafa.aborges (4/20/2010)
My question is if the overhead on the tempdb database is on its transaction log only not in the whole database.
Row versioning does not directly consume additional tempdb log...
April 21, 2010 at 12:56 am
I think you probably meant to write something like this:
SELECT [First Name],
[Last Name],
...
April 20, 2010 at 10:57 pm
Jeremy,
One quick question: are either or both of the FirstName and LastName columns NULLable?
If so, you would have to add some extra logic to correctly handle all possible combinations. ...
April 20, 2010 at 9:38 pm
webrunner (4/19/2010)
April 20, 2010 at 9:35 pm
Oleg Netchaev (4/20/2010)
After reading Part I last week I knew that Part II is going to be good, but I did not expect it to be this good!
Thank you very...
April 20, 2010 at 9:20 pm
Viewing 15 posts - 3,736 through 3,750 (of 8,416 total)