Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2004-04-30 : 14:00:07
|
| raman writes "Please advise me how to use Text Data Type for a col in SQL Server. As i read somewhere-- You cant use Update to update Text Data type field-- Select does not return whole data as entered via insertSo how i can i enter really big big data in my table.Pls advise" |
|
|
nr
SQLTeam MVY
12543 Posts |
Posted - 2004-04-30 : 15:53:37
|
| >> Select does not return whole data as entered via insertYes it does. The client may truncate it though.>> You cant use Update to update Text Data type fieldNot true depending on the textcreate table #b (t text)insert #b select 'asdf'update #b set t = 'qwer'select * from #bBut see updatetext in bol==========================================Cursors are useful if you don't know sql.DTS can be used in a similar way.Beer is not cold and it isn't fizzy. |
 |
|
|
|
|
|