Viewing 15 posts - 10,831 through 10,845 (of 18,923 total)
On a more basic note. Why do you want to alter the data exactly?
November 30, 2006 at 9:03 am
Replace can only search one string at the time... you'll have to use multiple replaces :
replace(replace(replace(YourCol, 'é', 'e'), 'è', 'e'), 'ê', 'e')
November 30, 2006 at 9:03 am
That syntax works only in VB. You need to do something like this :
UPDATE dbo.Table set ColName = LEFT(ColName, 36) + '0000' + RIGHT(ColName, 14) where...
November 30, 2006 at 8:39 am
tempdb.sbo.sysobjects and tempdb.dbo.syscolumns will be locked for the whole time of the insert and no other temp objects will be able to be created. If a high transaction environement, that...
November 29, 2006 at 1:17 pm
You could always insert the modifications in a name/value type table. That is usually slower but in your case I doubt it will be a problem.
Also if it is not a...
November 29, 2006 at 1:07 pm
Yup... that's why I hate taking the risk... just create the temp table or temp variable and us the insert select statements we provided... no possible headaches this way
November 29, 2006 at 1:05 pm
That would be very complicated server side... it is much simpler to do that once you get the data... also for only one row, sending 7 nulls won't slow the...
November 29, 2006 at 12:41 pm
Special is not always a good thing Sue... iirc what my childhood used to be like
.
November 29, 2006 at 12:39 pm
I guess he's too busy to reply, which implies he's not done
.
November 29, 2006 at 12:39 pm
Nobody has. It's a five days weekly newsletter.
Maybe you are getting confused with other newsletter
.
November 29, 2006 at 12:15 pm
Viewing 15 posts - 10,831 through 10,845 (of 18,923 total)