April 19, 2006 at 1:41 am
Hi my name is Ritesh.
In my table I am using varchar 8000 and have set this is design view. I am typing in some text in this field but cannot type more than 1023 or there abouts. Why is that ?
I thought varchar 8000 lets you type in upto 8000 characters.
Help!!
Regards
Ritesh
April 19, 2006 at 1:55 am
What tool are you using to enter the information?
AN INSERT or UPDATE statement will allow the full 8,000 however I think there is a limit on the datagrid used by Enterprise Manager in SQL 7/2000.
April 19, 2006 at 3:08 am
Not a very good design is it. Thank you for your help
ritesh
April 19, 2006 at 7:56 am
Yes - the limit in EM is 1024..but no one really uses EM for data modifications..
**ASCII stupid question, get a stupid ANSI !!!**
April 19, 2006 at 12:41 pm
Not least because the blasted thing locks records blocking other processes as a result
April 20, 2006 at 5:26 am
If I could count the # of ways EM becomes a "blasted thing" I'd soon run out of fingers and toes...
**ASCII stupid question, get a stupid ANSI !!!**
April 20, 2006 at 7:33 am
Depending upon how much of this you have to do you may well want to find a better interface, that being said you might try using your Sql Query Analyzer for the task instead of Enterprise Manager.
use a procedure such as:
update TableX
set
FieldX='lllllllllllllllllloooooooooooooottttttttttttttttttsssssss oooooooooofffffffffff ttttttttttttteeeeeeexxxxxttttttt'
where
TableNdx=NDX
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply