Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Update Table Using DTS

Status
Not open for further replies.

zhonghandle

Programmer
Jul 17, 2002
12
US
Hi,
How to update a table using DTS? Say if I want to change all records of column c1 of table t to be 1, what should I do?
Thanks~!
 
use an Execute SQL task and write an update statement like:

Update t
set c1= 1
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top