Hi Everyone:
I created a stored procedure that updates records in the master table (we'll call it master_table) with data from another table (we'll call it update_table). A feature I want to add to my stored procedure is to export the data from the update_table into a file (csv, xls, etc) and once the file has been created, delete the update_table from the database. How do I go about this? Here's the specs of the environment: SQL Server 2000 running on Windows Server 2003.
I created a stored procedure that updates records in the master table (we'll call it master_table) with data from another table (we'll call it update_table). A feature I want to add to my stored procedure is to export the data from the update_table into a file (csv, xls, etc) and once the file has been created, delete the update_table from the database. How do I go about this? Here's the specs of the environment: SQL Server 2000 running on Windows Server 2003.