Quantcast
Channel: SQLServerCentral » SQL Server 2014 » Development - SQL Server 2014 » Latest topics
Viewing all articles
Browse latest Browse all 3145

SSIS doesn't drop table

$
0
0
I have a T-SQL Statement Task to create table every time the package run. It doesn't return error but it doesn't drop the table either. The data is appended every time. The code is working fine in SQL server query window. Can you see what is wrong in the code below? TIAIF OBJECT_ID (N'M020_Vendor', N'U') IS NOT NULL DROP TABLE M020_VendorGOSET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOCREATE TABLE [M020_Vendor]( list of fields)GO

Viewing all articles
Browse latest Browse all 3145

Trending Articles