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!

Recent content by SubuK

  1. SubuK

    HELP !!!! Need to update table with ref. to another table.

    You have not used from clause to indicate your ref table.<br><br>Here is an example. I assumed that Ebase is the ref table containing EbFlxId.<br><br><br><br>UPDATE Ejob<br>SET<br>EjSupervisor = EbLastName + &quot;,&quot; + &quot; &quot; + EbFirstName<br>FROM Ejob, Ebase<br>WHERE...
  2. SubuK

    I still have this problem! How can I duplicate Rows. SomeBody?

    You have to turn on the IDENTITY_INSERT on that Table and the command is<br><br>&nbsp;SET IDENTITY_INSERT &lt;table&gt; ON<br><br>and then insert the rows. Normally IDENTITY automatically inserts a running sequence number. When IDENTITY_INSERT is off then it will not allow you to insert any...

Part and Inventory Search

Back
Top