hello,
im creating a sp that creates a view from a query then bcp to csv file.
my problem is that when i start the sp, it complains the sp already exists....yes it does, however, i don't if im going about this the wrong way...but i tried the following to no avail
DROP IF EXISTS v_participantTrades
now, does that syntax not work for views?
IF EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'v_participantTrades'))
DROP VIEW v_participantTrades
|||
aah that explains the whole, create view needs to be the first statement!
thank you
|||exuse my incompetence however,
Invalid Object name 'sys.views'.
blaaa was my ineptitude - sysobjects for my version
cheers
No comments:
Post a Comment