Viewing 15 posts - 1,936 through 1,950 (of 14,953 total)
You might be running into either blocking/locking issues, or into parallelism issues.
The easiest way to narrow down what to target is to track wait states on the server. You...
February 27, 2012 at 9:15 am
Something like this?
SELECT *,
CHARINDEX('#', C),
CHARINDEX('#', C, CHARINDEX('#', C) + 1),
...
February 27, 2012 at 9:11 am
Any triggers on the table?
Or possibly a rollback command later in the script?
February 27, 2012 at 9:07 am
Revenant (2/25/2012)
Grant Fritchey (2/25/2012)
LutzM (2/25/2012)
Jeff Moden (2/25/2012)
Returning to the original subject of this thread, I can now say I've seen just about everything on this fine forum.http://www.sqlservercentral.com/Forums/Topic1257783-391-1.aspx
<shudder>
It becomes rather scary...
February 27, 2012 at 7:01 am
LutzM (2/25/2012)
Jeff Moden (2/25/2012)
Returning to the original subject of this thread, I can now say I've seen just about everything on this fine forum.http://www.sqlservercentral.com/Forums/Topic1257783-391-1.aspx
<shudder>
It becomes rather scary when seen in...
February 27, 2012 at 6:58 am
Lynn Pettis (2/24/2012)
February 27, 2012 at 6:52 am
I'm with most here: Scratching my head and going "huh?" on Kevin's situation. Gail's makes total sense. Anything that increases available parallelism can easily increase deadlock and related...
February 27, 2012 at 6:45 am
To avoid assuming, I'll ask: Have you set the Delay Validation property on the package and the query object to True?
Also, can you provide it with a "temporary" server name...
February 23, 2012 at 12:26 pm
Brandie Tarvin (2/23/2012)
Steve Jones - SSC Editor (2/22/2012)
Brandie Tarvin (2/22/2012)
February 23, 2012 at 6:37 am
Only thing I can really suggest at this point is an old-style partitioned table, using a View instead of the table for code access to it, using the old rules...
February 22, 2012 at 12:08 pm
Had the idea of setting a database to Read Committed Snapshot mode, and trying building an index on a table with some locks on some rows. No joy, still...
February 22, 2012 at 12:07 pm
Default constraints and triggers alike will both fail to record the correct data if you're using a web front-end that uses things like shared connections, et al.
They will ONLY work...
February 22, 2012 at 8:55 am
A very interesting observation on the human mind/spirit is that we can almost all accept that there's room for improvement, but can't accept that this means there are flaws.
It's easy...
February 22, 2012 at 8:27 am
GilaMonster (2/22/2012)
Jack Corbett (2/22/2012)
GilaMonster (2/22/2012)
Would you have been irritated if your regional mentor or an organiser of another SQL Sat...
February 22, 2012 at 8:18 am
CELKO (2/21/2012)
Guys, trust me; after a decade of reading and voting on SQL standards, consulting and teaching, I am sure about the language not having left-to-right processing in it.
I...
February 22, 2012 at 7:14 am
Viewing 15 posts - 1,936 through 1,950 (of 14,953 total)