Viewing 15 posts - 2,641 through 2,655 (of 14,953 total)
Evil Kraig F (12/13/2011)
GSquared (12/13/2011)
December 14, 2011 at 7:04 am
DataLength and Len can give very different results. Trailing spaces, Unicode strings, possibly a few other things, will cause those to return different numbers.
December 14, 2011 at 7:00 am
SQL Kiwi (12/13/2011)
DECLARE @String VARCHAR(100) = 'Physician->Scotland->Scotland North->NOS431 Core Medical Training ';
SELECT LEFT(@String, LEN(@String) - CHARINDEX('>-', REVERSE(@String))-1)
SELECT...
December 14, 2011 at 6:58 am
GPO (12/14/2011)
December 14, 2011 at 6:56 am
Kevin Mao-243787 (12/13/2011)
Four roles are listed in first Chapter of Professional Microsfot SQL Server 2008 Administration: Production DBA,Development DBA, Business Intelligence DBA & Hybrid DBA. For smaller organzations,...
December 14, 2011 at 6:47 am
jcrawf02 (12/13/2011)
I think that's actually showing up as a diagnosis in ICD-10, "Threadizen"CDC request...
And the only cure is beingectomy - in other words, you have to be amputated from all...
December 13, 2011 at 11:46 am
jcrawf02 (12/13/2011)
From:...
December 13, 2011 at 11:23 am
The exits needing commits depends on what you're trying to do.
If a condition calls for rolling back on a failure, then raising an error, cutting over to the Catch block,...
December 13, 2011 at 11:19 am
Then what you probably want is Try Catch and Raiserror, like your proposed solution.
December 13, 2011 at 9:59 am
Join the table to itself on whatever column makes them match, User_ID in this case, and on the intersecting program IDs. That'll give you a count you can use.
December 13, 2011 at 9:48 am
How are the Return statements being used? Are they returning error codes, or are they just aborting the procedure so no further code is run in it?
I generally avoid...
December 13, 2011 at 9:45 am
As mentioned, it's not "standard terminology". I've usually heard it in reference to synchronizing schemas between servers, usually either Dev -> Test or Test -> QA or QA ->...
December 13, 2011 at 9:16 am
Kraig, RAID-1 uses mirroring. It can survive a single drive failure. Can't survive both drives failing, but neither can RAID-5. Multi-drive failure survival requires RAID-6, or RAID-51...
December 13, 2011 at 9:14 am
First, your script doesn't produce anything useful even if it doesn't truncate, because of missing single-quotes around the param value, and because of not having an actual executable script assigned...
December 13, 2011 at 9:08 am
Ray Cacciatore (12/13/2011)
December 13, 2011 at 8:08 am
Viewing 15 posts - 2,641 through 2,655 (of 14,953 total)