J
John Fred
Hello,
I have a file .SQL Containing a Script to Create Tables and Stored
Procedure...
Example :
if exists (select * from dbo.sysobjects where id =
object_id(N'[dbo].[SP_ADVANCED_SEARCH]') and OBJECTPROPERTY(id,
N'IsProcedure') = 1)
drop procedure [dbo].[SP_ADVANCED_SEARCH]
GO
........
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
CREATE TABLE [dbo].[TBLTEST]
Etc Etc....
It is possible Execute Then Scirpt With AdoNet ...
I have a file .SQL Containing a Script to Create Tables and Stored
Procedure...
Example :
if exists (select * from dbo.sysobjects where id =
object_id(N'[dbo].[SP_ADVANCED_SEARCH]') and OBJECTPROPERTY(id,
N'IsProcedure') = 1)
drop procedure [dbo].[SP_ADVANCED_SEARCH]
GO
........
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
CREATE TABLE [dbo].[TBLTEST]
Etc Etc....
It is possible Execute Then Scirpt With AdoNet ...