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 wOOdy-Soft 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 prabhakar

  1. prabhakar

    Importing data into SQL Server

    You can do the import/export using dts package. murty
  2. prabhakar

    My First Trigger, how to?

    You can do this by using extended stored procedures xp_sendmail, xp_startmail. This is the sample code. create trigger sendmail on my table for insert, update, delete as exec master..xp_sendmail 'xyz@yahoo.com', 'changes happend in database' this is a sample one only. see the transact sql...

Part and Inventory Search

Back
Top