I have talble name DNC201 which having only one field phonenumber (nvarchar(255)) and this table is in MMS database in SQL SERVER EXPRESS. User Name Is dbo.
I need to of trigger which export is in csv formatt on local system.
Is any one can help me?
the structure of the table is
USE [MMS]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[DNC201](
[phonenumber] [nvarchar](255) NULL
) ON [PRIMARY]