Viewing 15 posts - 10,036 through 10,050 (of 26,489 total)
venoym (8/16/2012)
GSquared (8/14/2012)
You're not disagreeing with me. You're disagreeing with the original article we're discussing. All I did was quote/reference that. Please note the sentence I emphasized...
August 16, 2012 at 11:51 am
You can shrink the size of the batches being deleted as well.
August 16, 2012 at 11:49 am
SQL_ME_RICH (8/16/2012)
August 16, 2012 at 11:48 am
SQL_ME_RICH (8/16/2012)
August 16, 2012 at 11:45 am
Lowell (8/16/2012)
asranantha (8/16/2012)
why isbbelle gets erroeand williams inserts 2 rows +julianna insert 12 rows are not lodead in in toy table how u say thatone
that's EXACTLY why you need to...
August 16, 2012 at 11:42 am
Here is one for the do not hire list.
Or it could be the needs much training list.
August 16, 2012 at 11:29 am
asranantha (8/16/2012)
why isbbelle gets erroeand williams inserts 2 rows +julianna insert 12 rows are not lodead in in toy table how u say thatone
Because Isabelle can't commit the transactions for...
August 16, 2012 at 11:25 am
Also, you could probably get away with a nonclustered index.
August 16, 2012 at 11:24 am
Lynn Pettis (8/16/2012)
SQL_ME_RICH (8/16/2012)
August 16, 2012 at 11:22 am
SQL_ME_RICH (8/16/2012)
August 16, 2012 at 11:20 am
Steve Jones - SSC Editor (8/16/2012)
Mike Austin-398977 (8/15/2012)
August 16, 2012 at 10:19 am
ChrisM@Work (8/16/2012)
Not sure of the name though. Symba is a bit silly, it’s a misspelling of...
August 16, 2012 at 10:05 am
Try this:
DECLARE @Codes TABLE (Code VARCHAR(100))
INSERT INTO @Codes VALUES
('ABCD000000001'),
('ABCD000000002'),
('ABCD000000003'),
('ABCDT000000001'),
('ABCD00000000T1'),
('ABCD00000T0001')
SELECT
Code
FROM
@Codes
WHERE
RIGHT(Code,(LEN(Code)-4)) NOT LIKE '%[^0-9]%'
ORDER BY
Code DESC;
And for more information, read this article: http://www.sqlservercentral.com/articles/IsNumeric/71512/.
Edit: This also works:
DECLARE @Codes TABLE (Code VARCHAR(100))
INSERT...
August 16, 2012 at 9:36 am
sturner (8/16/2012)
Lynn Pettis (8/16/2012)
August 16, 2012 at 9:26 am
Viewing 15 posts - 10,036 through 10,050 (of 26,489 total)