Viewing 15 posts - 1 through 15 (of 48 total)
I assume you're getting a syntax error (you didn't say what the problem was
) on the update statement.
Try
Update b
Set desc =...
Otto Schreibke
The future is a foreign country, they do things differently there.
(Stolen from Arthur C Clarke)
Two things I don't understand.
1. "However, I am using SQL Server 2000 and can't change my table structure to use identity type column."
SQL/Server 2000 supports the identity clause. The easiest...
Otto Schreibke
The future is a foreign country, they do things differently there.
(Stolen from Arthur C Clarke)
Be aware you will still see numbers like 87.725239999999999 if you do a select value_str from xxx, even after your update.
See thread http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=367756 for an extensive discussion...
Otto Schreibke
The future is a foreign country, they do things differently there.
(Stolen from Arthur C Clarke)
If you're nesting transactions, be aware that only the last commit actually does anything.
Here's how it works in SQL/Server:
Begin transaction - If @@trancount = 0, sets up transaction processing
Always...
Otto Schreibke
The future is a foreign country, they do things differently there.
(Stolen from Arthur C Clarke)
Viewing 15 posts - 1 through 15 (of 48 total)