Viewing 15 posts - 1,036 through 1,050 (of 1,957 total)
Yes, but it would be far better to have your page call a stored procedure which performs both updates...
February 6, 2013 at 9:17 am
nick.mcdermaid (2/6/2013)
February 6, 2013 at 6:43 am
karthik M (2/6/2013)
few more thoughts ?
It depends.
February 6, 2013 at 6:06 am
Perhaps if you supplied some tables definitions and sample data that exhibits the problem, it would be easier to help.
Also, it would be helpful to document how you configured your...
January 25, 2013 at 10:37 am
eidjazparwaz (1/23/2013)
Hey Mister Maggoo,How is the developing of the new ssms grid result? cant wait to test it.. let me know when it's ready ;).
Ty
Eidjaz
Hi Eidjaz,
I have not done...
January 23, 2013 at 8:37 am
dwain.c (1/21/2013)
Silly me. I thought he was trying to split a delimited string. :w00t:
Jury is still out on that...:hehe:
January 21, 2013 at 6:11 pm
DECLARE @t table(Col1 char(1),Col2 char(1),Col3 char(1));
INSERT @t(Col1,Col2,Col3)
VALUES('a','b','c');
SELECT Col
FROM @t as T
CROSS APPLY (VALUES(Col1),(Col2),(Col3)) AS CA(Col);
January 21, 2013 at 6:01 pm
Welsh Corgi (1/21/2013)
Msg 8116, Level 16, State 1, Line 1
Argument data type numeric is invalid for argument 1 of...
January 21, 2013 at 8:57 am
It seems posting from a tablet makes me sloppy...it should have read like this:
Welsh Corgi (1/19/2013)
SELECT
CASE WHEN CAST(LEFT(Customer.STARTDATE, 2 AS...
January 20, 2013 at 6:27 pm
Welsh Corgi (1/19/2013)
SELECT
CASE WHEN CAST(LEFT(Customer.STARTDATE, 2 AS VARCHAR(2)))
...
January 19, 2013 at 2:07 pm
You should be able to just wrap the existing method in LEFT(....,LEN(name)) to get the correct answer...
but only if the original data was no more than half as long as...
January 18, 2013 at 4:34 pm
you might want to take a look at the proc dm_fts_parser
It might just provide the word analysis you are looking for...
Link : http://msdn.microsoft.com/en-us/library/cc280463(v=sql.100).aspx
January 18, 2013 at 11:18 am
mrTexasFreedom (1/17/2013)
Magoo,For the 'AHSGUEST' value, here's what I see:
select id, name, DATALENGTH(name) as 'thedatalengthName'
FROM my_user_table
WHERE id='123'
123A30
mtf
I suspect that somewhere along the line, a unicode string has been badly converted, first...
January 18, 2013 at 11:06 am
Just wondering what is the datalength() of one of those names, such as AHSGuest ?
January 17, 2013 at 6:19 am
two single quotes are used inside the string, so 'ab''c' equals ab'c
you want '''ABC'''
January 17, 2013 at 6:05 am
Viewing 15 posts - 1,036 through 1,050 (of 1,957 total)